From 8998f5d25c4729a991504dacbfcb3ff094cc8159 Mon Sep 17 00:00:00 2001 From: Kamil Date: Wed, 8 Oct 2025 21:34:04 +0200 Subject: [PATCH 1/3] feat: add `vegaos` platform --- README.md | 3 +++ components/CompatibilityTags.tsx | 1 + components/Filters/helpers.ts | 4 ++++ components/Footer.tsx | 7 +++++++ components/Icons/index.tsx | 25 ++++++++++++++++++++++++- pages/api/libraries/index.ts | 1 + pages/popular.tsx | 7 +++++++ react-native-libraries.schema.json | 11 ++++++++--- types/index.ts | 2 ++ util/search.ts | 4 ++++ 10 files changed, 61 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2be4e32c7..35d90d5b9 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ "macos": false, "tvos": false, "visionos": false, + "vegaos": false, "expoGo": false, "fireos": false, "unmaintained": false, @@ -119,6 +120,8 @@ **(boolean)** - can be used with [`react-native-tvos`](https://github.com/react-native-tvos/react-native-tvos). - #### `visionos` **(boolean)** - can be used with [`react-native-visionos`](https://github.com/callstack/react-native-visionos). +- #### `vegaos` + **(boolean)** - can be used with [`Vega OS`](https://developer.amazon.com/docs/react-native-vega/0.72/react_overview.html) platform. #### ✅ Compatibility diff --git a/components/CompatibilityTags.tsx b/components/CompatibilityTags.tsx index 3a956bb6e..1c67d561c 100644 --- a/components/CompatibilityTags.tsx +++ b/components/CompatibilityTags.tsx @@ -23,6 +23,7 @@ export function CompatibilityTags({ library }: Props) { library.macos ? 'macOS' : null, library.tvos ? 'tvOS' : null, library.visionos ? 'visionOS' : null, + library.vegaos ? 'Vega OS' : null, library.web ? 'Web' : null, library.windows ? 'Windows' : null, ] diff --git a/components/Filters/helpers.ts b/components/Filters/helpers.ts index e5256a7cc..fe925dea9 100644 --- a/components/Filters/helpers.ts +++ b/components/Filters/helpers.ts @@ -26,6 +26,10 @@ export const FILTER_PLATFORMS: FilterParamsType[] = [ param: 'visionos', title: 'visionOS', }, + { + param: 'vegaos', + title: 'Vega OS', + }, { param: 'web', title: 'Web', diff --git a/components/Footer.tsx b/components/Footer.tsx index a642945f9..aae513303 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -12,6 +12,7 @@ import { PlatformIOS, PlatformMacOS, PlatformTvOS, + PlatformVegaOS, PlatformVisionOS, PlatformWeb, PlatformWindows, @@ -94,6 +95,12 @@ const Footer = () => { Icon={PlatformVisionOS} url="https://github.com/callstack/react-native-visionos#readme" /> + + + + + VEGA + + + ); +} + export function PlatformVisionOS({ width = 18, height = 18, fill = colors.black }: IconProps) { return ( diff --git a/pages/api/libraries/index.ts b/pages/api/libraries/index.ts index 17b897cce..b4b79d1b9 100644 --- a/pages/api/libraries/index.ts +++ b/pages/api/libraries/index.ts @@ -74,6 +74,7 @@ export default function handler(req: NextApiRequest, res: NextApiResponse) { fireos: parsedQuery.fireos, tvos: parsedQuery.tvos, visionos: parsedQuery.visionos, + vegaos: parsedQuery.vegaos, }, hasExample: parsedQuery.hasExample, hasImage: parsedQuery.hasImage, diff --git a/pages/popular.tsx b/pages/popular.tsx index e6a271dbd..2f22afed1 100644 --- a/pages/popular.tsx +++ b/pages/popular.tsx @@ -9,6 +9,7 @@ import { PlatformIOS, PlatformMacOS, PlatformTvOS, + PlatformVegaOS, PlatformVisionOS, PlatformWeb, PlatformWindows, @@ -81,6 +82,12 @@ const Popular = ({ data }: Props) => { data={data} filter={lib => lib.visionos === true} /> + lib.vegaos === true} + /> Date: Wed, 22 Oct 2025 19:11:54 +0200 Subject: [PATCH 2/3] refactor: move vega os to compatibility flag --- README.md | 72 +- assets/data.json | 47879 ++++++++++++++------------- components/CompatibilityTags.tsx | 4 +- components/Filters/helpers.ts | 8 +- components/Footer.tsx | 7 - components/Icons/index.tsx | 25 +- pages/popular.tsx | 7 - react-native-libraries.schema.json | 78 +- 8 files changed, 25684 insertions(+), 22396 deletions(-) diff --git a/README.md b/README.md index 35d90d5b9..9b4afcbb3 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,8 @@ > [!TIP] > Are you looking for an integration with VS Code? Check out our official extension: -> * https://github.com/react-native-community/vscode-react-native-directory +> +> - https://github.com/react-native-community/vscode-react-native-directory ## How do I know I'm at the right place? @@ -44,10 +45,7 @@ { "githubUrl": "", "npmPkg": "", - "examples": [ - "", - "" - ], + "examples": ["", ""], "images": [""], "ios": false, "android": false, @@ -71,7 +69,6 @@ > then the name, description, homepage, and topics (keywords) will be extracted from `package.json` in the package subdirectory. > However, GitHub stats will be based on the monorepo, because there isn't really another option. - ### Library fields description #### ⚙️ General @@ -79,8 +76,9 @@ - #### ❗ `githubUrl` **(required)** **(string)** - URL to the package GitHub repository (currently other Git hosts are not supported). -> [!WARNING] -> Package also needs to be published to the NPM registry, because it is a source of crucial data for the directory. + + > [!WARNING] + > Package also needs to be published to the NPM registry, because it is a source of crucial data for the directory. - #### `npmPkg` @@ -120,8 +118,6 @@ **(boolean)** - can be used with [`react-native-tvos`](https://github.com/react-native-tvos/react-native-tvos). - #### `visionos` **(boolean)** - can be used with [`react-native-visionos`](https://github.com/callstack/react-native-visionos). -- #### `vegaos` - **(boolean)** - can be used with [`Vega OS`](https://developer.amazon.com/docs/react-native-vega/0.72/react_overview.html) platform. #### ✅ Compatibility @@ -129,6 +125,8 @@ **(boolean)** - works with [Expo Go](https://docs.expo.dev/get-started/expo-go/) — an open-source sandbox app, without using [dev clients](https://docs.expo.dev/develop/development-builds/introduction/) or [prebuild](https://docs.expo.dev/workflow/continuous-native-generation/). - #### `fireos` **(boolean)** - works on Amazon Fire OS. +- #### `vegaos` + **(boolean)** - works with [Vega OS](https://developer.amazon.com/docs/react-native-vega/0.72/react_overview.html). > [!TIP] > **Any** library can be used with Expo, if you use dev clients or prebuild. @@ -150,6 +148,7 @@ ### 📝 Additional context for tags - #### `newArchitectureNote` + **(string)** - provide a note for the New Architecture support status, if a boolean `"true"` or `"false"` is not sufficient to describe the state of New Architecture support. - #### `alternatives` @@ -173,7 +172,7 @@ You should be able to visit `localhost:3000` in your browser. - Visit https://github.com/settings/developers to get your keys (don't worry about the callback URL, put whatever you want). - Load the `GITHUB_TOKEN` environment variable into your shell. -- Set `ONLY_WRITE_LOCAL_DATA_FILE` to `true` in *scripts/build-and-score-data.ts* to skip fetching and updating store blob from Vercel and instead use and update the local `assets/data.json` file. +- Set `ONLY_WRITE_LOCAL_DATA_FILE` to `true` in _scripts/build-and-score-data.ts_ to skip fetching and updating store blob from Vercel and instead use and update the local `assets/data.json` file. This command creates site data in `./assets/data.json` @@ -199,31 +198,32 @@ https://reactnative.directory/api/libraries More details on API queries
- ``` - https://reactnative.directory/api/libraries?search=webgl - ``` - - - Returns a list of all libraries in `JSON` format that have the keyword `webgl`. - - ``` - https://reactnative.directory/api/libraries?search=webgl&expoGo=true - ``` - - - Returns a list of all libraries in `JSON` format that have the keyword `webgl` and work with Expo Go app. - - ``` - https://reactnative.directory/api/libraries?search=webgl&expoGo=true&android=true - ``` - - - Returns a list of all libraries in `JSON` format that have the keyword `webgl`, work with Expo Go app and Android. - - ``` - https://reactnative.directory/api/libraries?search=webgl&expoGo=true&android=true&isPopular=true - ``` - - - Returns a list of all libraries in `JSON` format that have the keyword `webgl`, work with Expo Go app, Android and are popular based on the scoring criterion. - - All the possible query parameters represents [`Query` type](https://github.com/react-native-community/directory/blob/main/types/index.ts#L14-L36). +``` +https://reactnative.directory/api/libraries?search=webgl +``` + +- Returns a list of all libraries in `JSON` format that have the keyword `webgl`. + +``` +https://reactnative.directory/api/libraries?search=webgl&expoGo=true +``` + +- Returns a list of all libraries in `JSON` format that have the keyword `webgl` and work with Expo Go app. + +``` +https://reactnative.directory/api/libraries?search=webgl&expoGo=true&android=true +``` + +- Returns a list of all libraries in `JSON` format that have the keyword `webgl`, work with Expo Go app and Android. + +``` +https://reactnative.directory/api/libraries?search=webgl&expoGo=true&android=true&isPopular=true +``` + +- Returns a list of all libraries in `JSON` format that have the keyword `webgl`, work with Expo Go app, Android and are popular based on the scoring criterion. + +All the possible query parameters represents [`Query` type](https://github.com/react-native-community/directory/blob/main/types/index.ts#L14-L36). + ## I don't like how you calculate scores. diff --git a/assets/data.json b/assets/data.json index f89cac03b..7033eae05 100644 --- a/assets/data.json +++ b/assets/data.json @@ -1,74 +1,5 @@ { "libraries": [ - { - "githubUrl": "https://github.com/mrousavy/nitro/tree/main/packages/nitrogen", - "npmPkg": "nitro-codegen", - "examples": [ - "https://github.com/mrousavy/nitro/tree/main/example" - ], - "images": [ - "https://github.com/mrousavy/nitro/blob/main/docs/static/img/social-card.png?raw=true" - ], - "ios": true, - "android": true, - "tvos": true, - "macos": true, - "visionos": true, - "dev": true, - "newArchitecture": true, - "github": { - "urls": { - "repo": "https://github.com/mrousavy/nitro", - "homepage": "https://github.com/mrousavy/nitro#readme" - }, - "stats": { - "hasIssues": true, - "hasWiki": false, - "hasSponsorships": true, - "hasDiscussions": false, - "hasTopics": false, - "updatedAt": "2025-09-10T13:32:42Z", - "createdAt": "2024-06-12T10:21:40Z", - "pushedAt": "2025-09-10T13:32:42Z", - "forks": 47, - "issues": 12, - "subscribers": 18, - "stars": 1354, - "dependencies": 5 - }, - "name": "nitrogen", - "fullName": "mrousavy/nitro", - "isPrivate": false, - "registry": "https://registry.npmjs.org/", - "description": "The code-generator for react-native-nitro-modules.", - "topics": [], - "license": { - "name": "MIT License", - "url": "http://choosealicense.com/licenses/mit/", - "id": "MDc6TGljZW5zZTEz", - "key": "mit", - "spdxId": "MIT" - }, - "hasTypes": true, - "newArchitecture": false, - "isArchived": false, - "hasNativeCode": false - }, - "npm": { - "downloads": 31822, - "weekDownloads": 5173, - "size": 422 - }, - "score": 73, - "matchingScoreModifiers": [ - "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": 0.138, - "topicSearchString": "" - }, { "githubUrl": "https://github.com/onubo/react-native-logs", "ios": true, @@ -90,10 +21,10 @@ "updatedAt": "2025-09-07T07:04:00Z", "createdAt": "2019-06-30T18:19:46Z", "pushedAt": "2025-09-07T07:04:00Z", - "forks": 36, + "forks": 37, "issues": 3, "subscribers": 4, - "stars": 546, + "stars": 551, "dependencies": 0 }, "name": "react-native-logs", @@ -104,7 +35,6 @@ "log", "logs", "logger", - "react-native", "expo", "error", "console", @@ -129,24 +59,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-logs", "npm": { - "downloads": 234217, - "weekDownloads": 36478, + "downloads": 254784, + "weekDownloads": 57758, "size": 169609, "latestRelease": "5.5.0", "latestReleaseDate": "2025-09-07T07:05:37.951Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.132, - "topicSearchString": "log logs logger react-native expo error console colors debug file custom levels namespace debugging ios android logging" + "popularity": 0.193, + "topicSearchString": "log logs logger expo error console colors debug file custom levels namespace debugging ios android logging" }, { "githubUrl": "https://github.com/GregoryNative/react-native-gl-image-filters", @@ -175,7 +105,7 @@ "forks": 33, "issues": 7, "subscribers": 4, - "stars": 252, + "stars": 253, "dependencies": 0 }, "name": "react-native-gl-image-filters", @@ -183,16 +113,12 @@ "isPrivate": false, "description": "React-Native image filters using gl-react", "topics": [ - "react-native", - "gl-react", - "gl-react-native", + "gl", "image-filters", - "gl-react-expo", - "gl-react-dom", + "gl-expo", + "gl-dom", "expo", - "gl", - "opengl", - "react" + "opengl" ], "license": { "key": "mit", @@ -204,13 +130,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-gl-image-filters", "npm": { - "downloads": 262, - "weekDownloads": 44, + "downloads": 764, + "weekDownloads": 115, "size": 96162, "latestRelease": "0.5.0", "latestReleaseDate": "2021-08-15T17:42:26.052Z" @@ -221,8 +148,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.356, - "topicSearchString": "react-native gl-react gl-react-native image-filters gl-react-expo gl-react-dom expo gl opengl react" + "popularity": -1.372, + "topicSearchString": "gl image-filters gl-expo gl-dom expo opengl" }, { "githubUrl": "https://github.com/Iconscout/react-native-unicons", @@ -247,7 +174,7 @@ "pushedAt": "2024-12-03T07:11:31Z", "forks": 17, "issues": 10, - "subscribers": 4, + "subscribers": 3, "stars": 28, "dependencies": 0 }, @@ -256,7 +183,6 @@ "isPrivate": false, "description": "Unicons - 1000+ vector icons as easy to use vector React Native Components", "topics": [ - "react-native", "unicons", "icons", "iconscout", @@ -273,11 +199,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1618, - "weekDownloads": 260, + "downloads": 2023, + "weekDownloads": 618, "size": 1353429, "latestRelease": "2.2.2", "latestReleaseDate": "2025-05-20T06:35:59.074Z" @@ -288,8 +215,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.137, - "topicSearchString": "react-native unicons icons iconscout vector vector-icons" + "popularity": 0.26, + "topicSearchString": "unicons icons iconscout vector vector-icons" }, { "githubUrl": "https://github.com/imgly/pesdk-react-native", @@ -315,7 +242,7 @@ "pushedAt": "2025-09-08T11:10:23Z", "forks": 26, "issues": 0, - "subscribers": 10, + "subscribers": 9, "stars": 125, "dependencies": 1 }, @@ -324,7 +251,6 @@ "isPrivate": false, "description": "React Native module for PhotoEditor SDK", "topics": [ - "react-native", "image", "image-editor", "imageeditor", @@ -350,22 +276,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 5455, - "weekDownloads": 924, + "downloads": 5402, + "weekDownloads": 1541, "size": 229897, "latestRelease": "3.4.0", "latestReleaseDate": "2025-09-08T11:49:40.645Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.144, - "topicSearchString": "react-native image image-editor imageeditor photo photo-editor photoeditor photoeditorsdk photoeditor-sdk sdk ios android photo-editing image-editing image-manipulation" + "popularity": 0.242, + "topicSearchString": "image image-editor imageeditor photo photo-editor photoeditor photoeditorsdk photoeditor-sdk sdk ios android photo-editing image-editing image-manipulation" }, { "githubUrl": "https://github.com/imgly/vesdk-react-native", @@ -391,7 +317,7 @@ "pushedAt": "2025-09-08T11:10:24Z", "forks": 32, "issues": 0, - "subscribers": 10, + "subscribers": 9, "stars": 156, "dependencies": 1 }, @@ -400,7 +326,6 @@ "isPrivate": false, "description": "React Native module for VideoEditor SDK", "topics": [ - "react-native", "video", "video-editor", "videoeditor", @@ -424,23 +349,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2548, - "weekDownloads": 485, + "downloads": 2689, + "weekDownloads": 652, "size": 243217, "latestRelease": "3.4.0", "latestReleaseDate": "2025-09-08T11:49:42.691Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.162, - "topicSearchString": "react-native video video-editor videoeditor videoeditorsdk videoeditor-sdk sdk ios android video-editing video-manipulation crop filter" + "popularity": 0.206, + "topicSearchString": "video video-editor videoeditor videoeditorsdk videoeditor-sdk sdk ios android video-editing video-manipulation crop filter" }, { "githubUrl": "https://github.com/ivpusic/react-native-image-crop-picker", @@ -458,13 +383,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-08T15:20:54Z", + "updatedAt": "2025-10-21T10:08:41Z", "createdAt": "2016-05-17T14:25:03Z", - "pushedAt": "2025-08-08T15:20:54Z", - "forks": 1468, - "issues": 529, + "pushedAt": "2025-10-21T10:08:41Z", + "forks": 1471, + "issues": 536, "subscribers": 73, - "stars": 6282, + "stars": 6302, "dependencies": 0 }, "name": "react-native-image-crop-picker", @@ -472,9 +397,6 @@ "isPrivate": false, "description": "iOS/Android image picker with support for camera, video, configurable compression, multiple images and cropping", "topics": [ - "react", - "native", - "react-native", "image", "picker", "crop", @@ -496,25 +418,28 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-image-crop-picker", "npm": { - "downloads": 585096, - "weekDownloads": 97237, - "size": 2764375, - "latestRelease": "0.51.0", - "latestReleaseDate": "2025-08-08T15:21:19.746Z" + "downloads": 575058, + "weekDownloads": 130339, + "size": 2199076, + "latestRelease": "0.51.1", + "latestReleaseDate": "2025-10-21T10:09:05.738Z" }, - "score": 84, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues" + "Lots of open issues", + "Recently updated" ], - "popularity": 0.141, - "topicSearchString": "react native react-native image picker crop cropping multiple camera video ios android recording" + "popularity": 0.193, + "topicSearchString": "image picker crop cropping multiple camera video ios android recording" }, { "githubUrl": "https://github.com/richardvclam/react-native-resegmented-control", @@ -546,7 +471,6 @@ "isPrivate": false, "description": "iOS 13+ styled segmented control for React Native", "topics": [ - "react-native", "segmented", "control", "resegmented", @@ -555,6 +479,7 @@ "segmented-control" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -563,13 +488,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-resegmented-control", "npm": { - "downloads": 176, - "weekDownloads": 12, + "downloads": 163, + "weekDownloads": 61, "size": 35854, "latestRelease": "2.4.0", "latestReleaseDate": "2020-07-14T19:44:02.409Z" @@ -579,8 +505,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.441, - "topicSearchString": "react-native segmented control resegmented uisegmentedcontrol segmentedcontrolios segmented-control" + "popularity": -1.179, + "topicSearchString": "segmented control resegmented uisegmentedcontrol segmentedcontrolios segmented-control" }, { "githubUrl": "https://github.com/Yasser-G/react-native-scales", @@ -614,7 +540,6 @@ "topics": [ "khtwah", "step", - "react-native", "dimensions" ], "license": { @@ -627,12 +552,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-scales", "npm": { - "downloads": 11, - "weekDownloads": 2, + "downloads": 83, + "weekDownloads": 55, "size": 7115, "latestRelease": "1.0.2", "latestReleaseDate": "2025-02-26T07:58:05.056Z" @@ -642,8 +568,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.8, - "topicSearchString": "khtwah step react-native dimensions" + "popularity": -0.421, + "topicSearchString": "khtwah step dimensions" }, { "githubUrl": "https://github.com/Yasser-G/react-native-redux", @@ -678,11 +604,8 @@ "khtwah", "reactnative", "redux", - "react-redux", "redux-persist", - "react", - "react-native", - "react-hooks", + "hooks", "reactjs", "redux-thunk", "redux-store", @@ -698,12 +621,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-redux", "npm": { - "downloads": 351, - "weekDownloads": 50, + "downloads": 308, + "weekDownloads": 22, "size": 18557, "latestRelease": "1.0.12", "latestReleaseDate": "2023-02-16T10:33:58.211Z" @@ -713,8 +637,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.878, - "topicSearchString": "khtwah reactnative redux react-redux redux-persist react react-native react-hooks reactjs redux-thunk redux-store redux-actions" + "popularity": -0.939, + "topicSearchString": "khtwah reactnative redux redux-persist hooks reactjs redux-thunk redux-store redux-actions" }, { "githubUrl": "https://github.com/wcisco17/react-native-animation-video", @@ -731,7 +655,7 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2019-11-15T09:23:58Z", "createdAt": "2019-10-30T19:59:40Z", "pushedAt": "2019-11-15T09:23:58Z", @@ -745,10 +669,9 @@ "fullName": "wcisco17/react-native-animation-video", "isPrivate": false, "description": "Simple React Native Component that plays video if opened - Using The AppStore transition", - "topics": [ - "react-native" - ], + "topics": [], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -757,11 +680,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 18, + "downloads": 94, "weekDownloads": 0, "size": 51594, "latestRelease": "1.1.3", @@ -773,7 +697,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native" + "topicSearchString": "" }, { "githubUrl": "https://github.com/MAKARD/react-native-toastboard", @@ -805,9 +729,6 @@ "isPrivate": false, "description": "Toast feedback messages for React Native", "topics": [ - "native", - "react", - "react-native", "toast", "toastboard", "toaster", @@ -823,12 +744,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-toastboard", "npm": { - "downloads": 168, - "weekDownloads": 44, + "downloads": 210, + "weekDownloads": 6, "size": 38621, "latestRelease": "2.0.4", "latestReleaseDate": "2025-01-02T15:49:14.715Z" @@ -838,8 +760,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.524, - "topicSearchString": "native react react-native toast toastboard toaster notifications" + "popularity": -0.726, + "topicSearchString": "toast toastboard toaster notifications" }, { "githubUrl": "https://github.com/GetStream/stream-chat-react-native/tree/develop/package/native-package", @@ -874,10 +796,10 @@ "updatedAt": "2025-07-11T11:54:42Z", "createdAt": "2019-03-28T08:50:26Z", "pushedAt": "2025-07-11T11:54:42Z", - "forks": 348, - "issues": 21, - "subscribers": 45, - "stars": 1087, + "forks": 350, + "issues": 22, + "subscribers": 44, + "stars": 1097, "dependencies": 3 }, "name": "stream-chat-react-native", @@ -888,22 +810,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 89157, - "weekDownloads": 12664, + "downloads": 80474, + "weekDownloads": 21365, "size": 166882, - "latestRelease": "8.5.0", - "latestReleaseDate": "2025-08-28T13:02:17.659Z" + "latestRelease": "8.6.2", + "latestReleaseDate": "2025-10-16T11:52:21.513Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.121, + "popularity": 0.226, "topicSearchString": "" }, { @@ -939,13 +861,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-07-11T11:54:42Z", + "updatedAt": "2025-10-15T04:55:20Z", "createdAt": "2019-03-28T08:50:26Z", - "pushedAt": "2025-07-11T11:54:42Z", - "forks": 348, - "issues": 21, - "subscribers": 45, - "stars": 1087, + "pushedAt": "2025-10-15T04:55:20Z", + "forks": 350, + "issues": 22, + "subscribers": 44, + "stars": 1097, "dependencies": 2 }, "name": "stream-chat-expo", @@ -956,22 +878,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 74364, - "weekDownloads": 13098, - "size": 44882, - "latestRelease": "8.5.0", - "latestReleaseDate": "2025-08-28T13:02:19.988Z" + "downloads": 106626, + "weekDownloads": 27140, + "size": 45804, + "latestRelease": "8.6.2", + "latestReleaseDate": "2025-10-16T11:52:23.324Z" }, - "score": 68, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.15, + "popularity": 0.216, "topicSearchString": "" }, { @@ -995,7 +918,7 @@ "pushedAt": "2019-04-10T11:28:21Z", "forks": 1, "issues": 0, - "subscribers": 4, + "subscribers": 3, "stars": 30, "dependencies": 0 }, @@ -1004,7 +927,6 @@ "isPrivate": false, "description": "A collection of useful units and a simple grid implementation for responsive layouts in React Native.", "topics": [ - "react-native", "units", "pixels", "grid", @@ -1024,13 +946,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-units", "npm": { - "downloads": 30, - "weekDownloads": 1, + "downloads": 46, + "weekDownloads": 26, "size": 3931, "latestRelease": "1.0.0", "latestReleaseDate": "2019-03-26T17:18:13.986Z" @@ -1040,8 +963,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.471, - "topicSearchString": "react-native units pixels grid scale javascript ios css responsive" + "popularity": -0.98, + "topicSearchString": "units pixels grid scale javascript ios css responsive" }, { "githubUrl": "https://github.com/SudoPlz/react-native-shake-event", @@ -1074,10 +997,6 @@ "topics": [ "android", "ios", - "native", - "react", - "react-component", - "react-native", "component", "shake", "shake-event", @@ -1094,13 +1013,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-shake-event", "npm": { - "downloads": 22, - "weekDownloads": 3, + "downloads": 67, + "weekDownloads": 5, "latestRelease": "4.0.1", "latestReleaseDate": "2017-08-10T07:19:18.918Z" }, @@ -1109,8 +1029,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.63, - "topicSearchString": "android ios native react react-component react-native component shake shake-event shake-event-android shake-event-ios" + "popularity": -1.683, + "topicSearchString": "android ios component shake shake-event shake-event-android shake-event-ios" }, { "githubUrl": "https://github.com/crazycodeboy/react-native-splash-screen", @@ -1131,10 +1051,10 @@ "updatedAt": "2021-12-05T14:33:15Z", "createdAt": "2016-09-14T10:43:55Z", "pushedAt": "2021-12-05T14:33:15Z", - "forks": 1050, + "forks": 1055, "issues": 364, - "subscribers": 61, - "stars": 5660, + "subscribers": 59, + "stars": 5664, "dependencies": 0 }, "name": "react-native-splash-screen", @@ -1142,7 +1062,6 @@ "isPrivate": false, "description": "A splash screen for react-native, hide when application loaded ,it works on iOS and Android.", "topics": [ - "react-native", "component", "splash-screen", "splashscreen", @@ -1163,13 +1082,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-splash-screen", "npm": { - "downloads": 504701, - "weekDownloads": 86118, + "downloads": 480365, + "weekDownloads": 109315, "size": 40002, "latestRelease": "3.3.0", "latestReleaseDate": "2021-12-07T05:32:39.596Z" @@ -1183,8 +1103,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, - "topicSearchString": "react-native component splash-screen splashscreen splash launch-screen launchscreen android ios launchimage" + "popularity": -0.557, + "topicSearchString": "component splash-screen splashscreen splash launch-screen launchscreen android ios launchimage" }, { "githubUrl": "https://github.com/kristerkari/pinar", @@ -1207,8 +1127,8 @@ "pushedAt": "2025-01-15T20:21:05Z", "forks": 13, "issues": 8, - "subscribers": 4, - "stars": 597, + "subscribers": 3, + "stars": 603, "dependencies": 1 }, "name": "pinar", @@ -1216,9 +1136,7 @@ "isPrivate": false, "description": "🌲☀️ Customizable, lightweight React Native carousel component with accessibility support.", "topics": [ - "react", - "react-component", - "react-native", + "component", "reactnative", "ios", "android", @@ -1240,12 +1158,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "pinar", "npm": { - "downloads": 11209, - "weekDownloads": 1933, + "downloads": 14143, + "weekDownloads": 3695, "size": 76897, "latestRelease": "0.12.2", "latestReleaseDate": "2023-04-24T20:59:43.911Z" @@ -1256,8 +1175,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.147, - "topicSearchString": "react react-component react-native reactnative ios android carousel carousel-component slider swiper scrollview typescript a11y" + "popularity": 0.222, + "topicSearchString": "component reactnative ios android carousel carousel-component slider swiper scrollview typescript a11y" }, { "githubUrl": "https://github.com/khalisafkari/react-native-google-photos", @@ -1289,7 +1208,6 @@ "isPrivate": false, "description": "Grabs Streaming & Downloader Link Google Photos", "topics": [ - "react-native", "video", "mp4upload", "google-photos", @@ -1309,13 +1227,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-google-photos", "npm": { - "downloads": 42, - "weekDownloads": 5, + "downloads": 75, + "weekDownloads": 0, "size": 10211, "latestRelease": "3.0.5", "latestReleaseDate": "2019-11-15T17:03:58.769Z" @@ -1325,8 +1244,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.639, - "topicSearchString": "react-native video mp4upload google-photos downloader ios android blogger cloudvideo" + "popularity": -1, + "topicSearchString": "video mp4upload google-photos downloader ios android blogger cloudvideo" }, { "githubUrl": "https://github.com/A11yWatch/react-native-reader", @@ -1347,8 +1266,8 @@ "updatedAt": "2023-06-24T16:11:32Z", "createdAt": "2018-12-21T14:01:57Z", "pushedAt": "2023-06-24T16:11:32Z", - "forks": 12, - "issues": 0, + "forks": 13, + "issues": 1, "subscribers": 4, "stars": 67, "dependencies": 2 @@ -1360,7 +1279,6 @@ "topics": [ "readability", "reader", - "react-native", "ios-reader", "android-reader", "safari-reader" @@ -1375,12 +1293,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-reader", "npm": { - "downloads": 96, + "downloads": 1030, "weekDownloads": 26, "size": 19192, "latestRelease": "0.9.4", @@ -1391,8 +1310,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.264, - "topicSearchString": "readability reader react-native ios-reader android-reader safari-reader" + "popularity": -0.729, + "topicSearchString": "readability reader ios-reader android-reader safari-reader" }, { "githubUrl": "https://github.com/kenkotch/react-native-columns", @@ -1429,7 +1348,6 @@ "column", "columns", "ios", - "react-native", "component", "resize" ], @@ -1443,12 +1361,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-columns", "npm": { - "downloads": 31, - "weekDownloads": 5, + "downloads": 20, + "weekDownloads": 2, "size": 92673, "latestRelease": "1.0.6", "latestReleaseDate": "2018-11-30T03:18:07.921Z" @@ -1458,8 +1377,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.607, - "topicSearchString": "android column columns ios react-native component resize" + "popularity": -1.65, + "topicSearchString": "android column columns ios component resize" }, { "githubUrl": "https://github.com/kristerkari/react-native-svg-transformer", @@ -1483,9 +1402,9 @@ "createdAt": "2018-08-02T19:29:21Z", "pushedAt": "2025-09-02T18:45:25Z", "forks": 118, - "issues": 85, - "subscribers": 7, - "stars": 1698, + "issues": 87, + "subscribers": 6, + "stars": 1706, "dependencies": 4 }, "name": "react-native-svg-transformer", @@ -1493,7 +1412,6 @@ "isPrivate": false, "description": "Import SVG files in your React Native project the same way that you would in a Web application.", "topics": [ - "react-native", "svg", "loader", "transformer" @@ -1508,26 +1426,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-svg-transformer", "npm": { - "downloads": 2675470, - "weekDownloads": 475964, + "downloads": 2702754, + "weekDownloads": 619740, "size": 15412, "latestRelease": "1.5.1", "latestReleaseDate": "2025-05-02T17:07:28.039Z" }, - "score": 62, + "score": 57, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.151, - "topicSearchString": "react-native svg loader transformer" + "popularity": 0.195, + "topicSearchString": "svg loader transformer" }, { "githubUrl": "https://github.com/aeirola/react-native-svg-asset-plugin", @@ -1551,7 +1469,7 @@ "pushedAt": "2021-09-26T12:18:28Z", "forks": 5, "issues": 2, - "subscribers": 3, + "subscribers": 2, "stars": 68, "dependencies": 2 }, @@ -1560,7 +1478,6 @@ "isPrivate": false, "description": "Asset plugin for importing SVG images in React Native", "topics": [ - "react-native", "svg" ], "license": { @@ -1573,24 +1490,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-svg-asset-plugin", "npm": { - "downloads": 138966, - "weekDownloads": 11286, + "downloads": 211379, + "weekDownloads": 57237, "size": 19377, "latestRelease": "0.5.0", "latestReleaseDate": "2020-07-26T07:45:30.838Z" }, - "score": 32, + "score": 41, "matchingScoreModifiers": [ + "Known", "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.681, - "topicSearchString": "react-native svg" + "popularity": -0.52, + "topicSearchString": "svg" }, { "githubUrl": "https://github.com/kenmaca/react-native-apple-ads-attribution", @@ -1621,13 +1540,9 @@ "isPrivate": false, "description": "A React Native module to get Apple Search Ads Attribution API on iOS", "topics": [ - "react-native", - "react-component", - "react-components", - "react", - "native", - "ios", "component", + "components", + "ios", "apple", "search", "ads", @@ -1646,12 +1561,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-apple-ads-attribution", "npm": { - "downloads": 8, - "weekDownloads": 0, + "downloads": 17, + "weekDownloads": 1, "size": 13910, "latestRelease": "1.0.2", "latestReleaseDate": "2018-10-18T21:16:04.927Z" @@ -1661,8 +1577,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native react-component react-components react native ios component apple search ads attribution api iad attributiondetails" + "popularity": -1.7, + "topicSearchString": "component components ios apple search ads attribution api iad attributiondetails" }, { "githubUrl": "https://github.com/MAKARD/react-native-formawesome", @@ -1695,14 +1611,11 @@ "description": "React-Native UI lib for validation forms", "topics": [ "ui", - "native", - "react", - "react-native", "validation", "class-validator", "validate.js", "form", - "react-formawesome-core" + "formawesome-core" ], "license": { "key": "mit", @@ -1714,13 +1627,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-formawesome", "npm": { - "downloads": 28, - "weekDownloads": 0, + "downloads": 585, + "weekDownloads": 2, "size": 54240, "latestRelease": "1.0.1", "latestReleaseDate": "2019-06-13T14:02:07.321Z" @@ -1730,8 +1644,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "ui native react react-native validation class-validator validate.js form react-formawesome-core" + "popularity": -1.747, + "topicSearchString": "ui validation class-validator validate.js form formawesome-core" }, { "githubUrl": "https://github.com/talut/rn-secure-storage", @@ -1751,10 +1665,10 @@ "updatedAt": "2024-01-29T13:16:01Z", "createdAt": "2018-09-14T14:48:56Z", "pushedAt": "2024-01-29T13:16:01Z", - "forks": 60, + "forks": 61, "issues": 0, - "subscribers": 7, - "stars": 210, + "subscribers": 6, + "stars": 212, "dependencies": 0 }, "name": "rn-secure-storage", @@ -1762,7 +1676,6 @@ "isPrivate": false, "description": "Secure Storage for React Native (Android & iOS)", "topics": [ - "react-native", "ios", "android", "keychain-service", @@ -1772,7 +1685,6 @@ "keychain", "secure-preferences", "token", - "react-token", "multiple-values", "multiple-keys" ], @@ -1786,12 +1698,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-secure-storage", "npm": { - "downloads": 14006, - "weekDownloads": 3134, + "downloads": 11230, + "weekDownloads": 2483, "size": 69030, "latestRelease": "3.0.1", "latestReleaseDate": "2024-01-29T13:14:41.158Z" @@ -1802,8 +1715,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.19, - "topicSearchString": "react-native ios android keychain-service keystore-service device-security keystore keychain secure-preferences token react-token multiple-values multiple-keys" + "popularity": 0.188, + "topicSearchString": "ios android keychain-service keystore-service device-security keystore keychain secure-preferences token multiple-values multiple-keys" }, { "githubUrl": "https://github.com/kkemple/react-native-sideswipe", @@ -1826,7 +1739,7 @@ "pushedAt": "2021-01-28T20:12:43Z", "forks": 69, "issues": 24, - "subscribers": 15, + "subscribers": 14, "stars": 904, "dependencies": 0 }, @@ -1845,13 +1758,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sideswipe", "npm": { - "downloads": 2453, - "weekDownloads": 437, + "downloads": 2323, + "weekDownloads": 541, "size": 200099, "latestRelease": "1.5.0", "latestReleaseDate": "2019-05-28T19:13:26.464Z" @@ -1863,7 +1777,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, + "popularity": -0.552, "topicSearchString": "" }, { @@ -1880,7 +1794,7 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2020-04-02T14:08:49Z", "createdAt": "2018-07-19T13:34:36Z", "pushedAt": "2020-04-02T14:08:49Z", @@ -1894,9 +1808,7 @@ "fullName": "Navybits/react-native-navybits-date-time-picker", "isPrivate": false, "description": "", - "topics": [ - "react-native" - ], + "topics": [], "license": { "key": "mit", "name": "MIT License", @@ -1907,13 +1819,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-navybits-date-time-picker", "npm": { - "downloads": 46, - "weekDownloads": 13, + "downloads": 177, + "weekDownloads": 4, "size": 30605899, "latestRelease": "1.2.3", "latestReleaseDate": "2020-04-02T14:14:23.906Z" @@ -1923,8 +1836,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.24, - "topicSearchString": "react-native" + "popularity": -1.48, + "topicSearchString": "" }, { "githubUrl": "https://github.com/wonday/react-native-image-cache-wrapper", @@ -1947,7 +1860,7 @@ "pushedAt": "2022-01-23T13:02:58Z", "forks": 16, "issues": 5, - "subscribers": 3, + "subscribers": 2, "stars": 36, "dependencies": 1 }, @@ -1961,8 +1874,7 @@ "image-cache", "image", "imagebackground", - "react-component", - "react-native", + "component", "android", "ios" ], @@ -1976,13 +1888,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-image-cache-wrapper", "npm": { - "downloads": 469, - "weekDownloads": 68, + "downloads": 390, + "weekDownloads": 134, "size": 17966, "latestRelease": "1.0.7", "latestReleaseDate": "2020-03-31T15:20:41.398Z" @@ -1992,8 +1905,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.376, - "topicSearchString": "cache cached-image image-cache image imagebackground react-component react-native android ios" + "popularity": -1.205, + "topicSearchString": "cache cached-image image-cache image imagebackground component android ios" }, { "githubUrl": "https://github.com/everdrone/react-native-super-ellipse-mask", @@ -2014,7 +1927,7 @@ "pushedAt": "2018-04-22T09:42:49Z", "forks": 3, "issues": 4, - "subscribers": 4, + "subscribers": 3, "stars": 66, "dependencies": 0 }, @@ -2023,7 +1936,6 @@ "isPrivate": false, "description": "Apple flavored smooth corners for React Native", "topics": [ - "react-native", "squircle", "smooth", "rounded", @@ -2047,13 +1959,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-super-ellipse-mask", "npm": { - "downloads": 72, - "weekDownloads": 5, + "downloads": 235, + "weekDownloads": 38, "size": 43811, "latestRelease": "1.0.7", "latestReleaseDate": "2018-04-22T09:43:06.204Z" @@ -2063,8 +1976,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.438, - "topicSearchString": "react-native squircle smooth rounded superellipse curvature continuity mask view apple smooth-corners corners rounded-corners" + "popularity": -1.362, + "topicSearchString": "squircle smooth rounded superellipse curvature continuity mask view apple smooth-corners corners rounded-corners" }, { "githubUrl": "https://github.com/prscX/react-native-file-selector", @@ -2095,7 +2008,6 @@ "isPrivate": false, "description": "React Native: Native File Selector", "topics": [ - "react-native", "andriod", "ios" ], @@ -2109,13 +2021,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-file-selector", "npm": { - "downloads": 162, - "weekDownloads": 16, + "downloads": 205, + "weekDownloads": 32, "size": 413172, "latestRelease": "1.0.2", "latestReleaseDate": "2021-07-01T12:14:55.396Z" @@ -2126,8 +2039,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.416, - "topicSearchString": "react-native andriod ios" + "popularity": -1.367, + "topicSearchString": "andriod ios" }, { "githubUrl": "https://github.com/prscX/react-native-material-shadows", @@ -2159,7 +2072,6 @@ "isPrivate": false, "description": "React Native: Native Material Shadows", "topics": [ - "react-native", "android", "ios" ], @@ -2173,12 +2085,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-material-shadows", "npm": { - "downloads": 4, - "weekDownloads": 0, + "downloads": 8, + "weekDownloads": 1, "size": 15135, "latestRelease": "0.0.2", "latestReleaseDate": "2018-02-11T08:30:23.168Z" @@ -2188,8 +2101,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native android ios" + "popularity": -1.3, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/prscX/react-native-about-libraries", @@ -2222,7 +2135,6 @@ "isPrivate": false, "description": "React Native: It offers information about install packages", "topics": [ - "react-native", "android", "ios" ], @@ -2236,12 +2148,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-about-libraries", "npm": { - "downloads": 639, - "weekDownloads": 75, + "downloads": 825, + "weekDownloads": 276, "size": 216599, "latestRelease": "0.0.6", "latestReleaseDate": "2018-06-29T10:48:39.013Z" @@ -2251,8 +2164,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, - "topicSearchString": "react-native android ios" + "popularity": -1.215, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/prscX/react-native-siri-wave-view", @@ -2273,7 +2186,7 @@ "updatedAt": "2020-07-18T11:00:44Z", "createdAt": "2018-01-25T12:51:58Z", "pushedAt": "2020-07-18T11:00:44Z", - "forks": 34, + "forks": 35, "issues": 6, "subscribers": 3, "stars": 149, @@ -2284,7 +2197,6 @@ "isPrivate": false, "description": "React Native: Native Siri Wave View", "topics": [ - "react-native", "android", "ios" ], @@ -2298,23 +2210,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-siri-wave-view", "npm": { - "downloads": 96, - "weekDownloads": 3, + "downloads": 5911, + "weekDownloads": 1650, "size": 4527536, "latestRelease": "0.0.9", "latestReleaseDate": "2018-06-29T06:21:04.636Z" }, - "score": 32, + "score": 41, "matchingScoreModifiers": [ + "Known", "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.473, - "topicSearchString": "react-native android ios" + "popularity": -0.513, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/prscX/react-native-lock-screen", @@ -2345,7 +2259,6 @@ "isPrivate": false, "description": "React Native: Lock Screen", "topics": [ - "react-native", "android", "ios" ], @@ -2359,13 +2272,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-lock-screen", "npm": { - "downloads": 76, - "weekDownloads": 7, + "downloads": 175, + "weekDownloads": 30, "size": 3765017, "latestRelease": "1.0.2", "latestReleaseDate": "2021-06-22T08:07:50.181Z" @@ -2375,8 +2289,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.418, - "topicSearchString": "react-native android ios" + "popularity": -1.354, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/prscX/react-native-styled-dialogs", @@ -2407,7 +2321,6 @@ "isPrivate": false, "description": "React Native: Native Styled Dialogs", "topics": [ - "react-native", "android", "ios" ], @@ -2421,13 +2334,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-styled-dialogs", "npm": { - "downloads": 66, - "weekDownloads": 6, + "downloads": 136, + "weekDownloads": 32, "size": 3845476, "latestRelease": "1.0.2", "latestReleaseDate": "2021-07-05T13:30:27.002Z" @@ -2437,8 +2351,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.42, - "topicSearchString": "react-native android ios" + "popularity": -1.3, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/prscX/react-native-morphing-text", @@ -2470,7 +2384,6 @@ "isPrivate": false, "description": "React Native: Native Morphing Text", "topics": [ - "react-native", "android", "ios" ], @@ -2484,12 +2397,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-morphing-text", "npm": { - "downloads": 16, - "weekDownloads": 2, + "downloads": 145, + "weekDownloads": 5, "size": 560625, "latestRelease": "0.0.4", "latestReleaseDate": "2018-05-15T11:11:42.940Z" @@ -2499,8 +2413,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.367, - "topicSearchString": "react-native android ios" + "popularity": -1.471, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/prscX/react-native-chip-view", @@ -2532,7 +2446,6 @@ "isPrivate": false, "description": "React Native: Material Chip View", "topics": [ - "react-native", "android", "ios" ], @@ -2546,13 +2459,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-chip-view", "npm": { - "downloads": 1093, - "weekDownloads": 77, + "downloads": 2675, + "weekDownloads": 301, "size": 1756711, "latestRelease": "0.0.12", "latestReleaseDate": "2019-05-18T15:03:50.189Z" @@ -2562,14 +2476,15 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.69, - "topicSearchString": "react-native android ios" + "popularity": -0.654, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/Instabug/instabug-reactnative", "ios": true, "android": true, "web": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Instabug/Instabug-React-Native", @@ -2585,8 +2500,8 @@ "createdAt": "2016-10-03T14:50:16Z", "pushedAt": "2025-09-11T13:00:43Z", "forks": 96, - "issues": 4, - "subscribers": 33, + "issues": 1, + "subscribers": 32, "stars": 328, "dependencies": 0 }, @@ -2595,7 +2510,6 @@ "isPrivate": false, "description": "In-app feedback and bug reporting tool for React Native", "topics": [ - "react-native", "instabug", "debugging", "errors", @@ -2617,24 +2531,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "instabug-reactnative", "npm": { - "downloads": 65367, - "weekDownloads": 11371, + "downloads": 67962, + "weekDownloads": 15012, "size": 2951899, "latestRelease": "16.0.3", "latestReleaseDate": "2025-09-11T13:21:04.948Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.148, - "topicSearchString": "react-native instabug debugging errors exceptions logging reporting feedback bug-reporting bug-reporter sdk" + "popularity": 0.188, + "topicSearchString": "instabug debugging errors exceptions logging reporting feedback bug-reporting bug-reporter sdk" }, { "githubUrl": "https://github.com/Purii/react-native-tableview-simple", @@ -2663,10 +2577,10 @@ "updatedAt": "2024-06-10T16:19:16Z", "createdAt": "2015-10-25T21:05:29Z", "pushedAt": "2024-06-10T16:19:16Z", - "forks": 58, - "issues": 3, - "subscribers": 11, - "stars": 570, + "forks": 59, + "issues": 4, + "subscribers": 10, + "stars": 572, "dependencies": 0 }, "name": "react-native-tableview-simple", @@ -2674,15 +2588,13 @@ "isPrivate": false, "description": "Flexible and lightweight React Native component for UITableView made with pure CSS", "topics": [ - "react-native", - "react-component", + "component", "tableview", "uitableview", "crossplatform", "ios", "android", "javascript", - "react", "css" ], "license": { @@ -2695,12 +2607,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-tableview-simple", "npm": { - "downloads": 4472, - "weekDownloads": 647, + "downloads": 10754, + "weekDownloads": 1569, "size": 234587, "latestRelease": "4.4.1", "latestReleaseDate": "2024-06-10T16:25:13.373Z" @@ -2711,8 +2624,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.123, - "topicSearchString": "react-native react-component tableview uitableview crossplatform ios android javascript react css" + "popularity": 0.124, + "topicSearchString": "component tableview uitableview crossplatform ios android javascript css" }, { "githubUrl": "https://github.com/fabriciovergara/react-native-localizable", @@ -2744,13 +2657,11 @@ "isPrivate": false, "description": "Let the platform take care of internationalization! ...and reduce your bundle.js", "topics": [ - "react-native", - "react-component", + "component", "localizable", "ios", "android", "localization", - "native", "javascript" ], "license": { @@ -2763,12 +2674,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-localizable", "npm": { - "downloads": 19, - "weekDownloads": 1, + "downloads": 23, + "weekDownloads": 5, "size": 113603, "latestRelease": "1.0.1", "latestReleaseDate": "2018-02-16T00:33:30.706Z" @@ -2778,8 +2690,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.7, - "topicSearchString": "react-native react-component localizable ios android localization native javascript" + "popularity": -1.55, + "topicSearchString": "component localizable ios android localization javascript" }, { "githubUrl": "https://github.com/facebook/react-native-fbsdk", @@ -2800,9 +2712,9 @@ "updatedAt": "2021-03-26T18:09:38Z", "createdAt": "2015-08-03T17:10:14Z", "pushedAt": "2021-03-26T18:09:38Z", - "forks": 862, + "forks": 859, "issues": 224, - "subscribers": 77, + "subscribers": 76, "stars": 2981, "dependencies": 0 }, @@ -2811,9 +2723,7 @@ "isPrivate": false, "description": "A React Native wrapper around the Facebook SDKs for Android and iOS. Provides access to Facebook login, sharing, graph requests, app events etc.", "topics": [ - "react", - "react-native", - "react-component", + "component", "ios", "android", "facebook", @@ -2829,12 +2739,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fbsdk", "npm": { - "downloads": 15698, - "weekDownloads": 2651, + "downloads": 11202, + "weekDownloads": 2430, "size": 634846, "latestRelease": "3.0.0", "latestReleaseDate": "2020-11-23T21:21:09.075Z" @@ -2849,8 +2760,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, - "topicSearchString": "react react-native react-component ios android facebook core" + "popularity": -0.566, + "topicSearchString": "component ios android facebook core" }, { "githubUrl": "https://github.com/vonovak/react-native-simple-toast", @@ -2872,7 +2783,7 @@ "pushedAt": "2025-01-03T13:07:34Z", "forks": 32, "issues": 5, - "subscribers": 2, + "subscribers": 1, "stars": 328, "dependencies": 0 }, @@ -2882,7 +2793,6 @@ "registry": "https://registry.npmjs.org/", "description": "Cross-platform Toast experience for React Native", "topics": [ - "react-native", "ios", "android" ], @@ -2896,24 +2806,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-simple-toast", "npm": { - "downloads": 101049, - "weekDownloads": 16155, + "downloads": 99223, + "weekDownloads": 22088, "size": 53770, "latestRelease": "3.3.2", "latestReleaseDate": "2025-01-03T13:07:29.587Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.136, - "topicSearchString": "react-native ios android" + "popularity": 0.189, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/vonovak/react-navigation-header-buttons", @@ -2940,8 +2850,8 @@ "pushedAt": "2024-11-24T18:14:53Z", "forks": 66, "issues": 6, - "subscribers": 9, - "stars": 933, + "subscribers": 8, + "stars": 936, "dependencies": 1 }, "name": "react-navigation-header-buttons", @@ -2950,10 +2860,9 @@ "registry": "https://registry.npmjs.org/", "description": "Easily render header buttons for react-navigation", "topics": [ - "react-native", "ios", "android", - "react-navigation", + "navigation", "hacktoberfest" ], "license": { @@ -2966,12 +2875,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-navigation-header-buttons", "npm": { - "downloads": 18737, - "weekDownloads": 3406, + "downloads": 23611, + "weekDownloads": 4314, "size": 303649, "latestRelease": "13.0.0", "latestReleaseDate": "2024-11-24T18:14:52.213Z" @@ -2984,7 +2894,7 @@ "Not supporting New Architecture" ], "popularity": 0.155, - "topicSearchString": "react-native ios android react-navigation hacktoberfest" + "topicSearchString": "ios android navigation hacktoberfest" }, { "githubUrl": "https://github.com/codesinghanoop/react-native-d3multiline-chart", @@ -3041,13 +2951,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-d3multiline-chart", "npm": { - "downloads": 231, - "weekDownloads": 33, + "downloads": 435, + "weekDownloads": 32, "size": 2113779, "latestRelease": "1.0.19", "latestReleaseDate": "2019-09-12T16:15:01.163Z" @@ -3057,7 +2968,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.378, + "popularity": -1.437, "topicSearchString": "animated multiline drawing line scatterpoint charts d3.js d3v4 android ios svg multiline-graph line-graph scatterpoint-graph d3js" }, { @@ -3081,7 +2992,7 @@ "pushedAt": "2021-09-01T10:48:47Z", "forks": 11, "issues": 0, - "subscribers": 4, + "subscribers": 3, "stars": 49, "dependencies": 0 }, @@ -3090,14 +3001,11 @@ "isPrivate": false, "description": "UI Bar in javascript for react native", "topics": [ - "react", - "native", "ios", "toolbar", "bottom", "bar", "tabs", - "react-native", "menubar", "menu", "tabbar", @@ -3113,13 +3021,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bottom-toolbar", "npm": { - "downloads": 384, - "weekDownloads": 45, + "downloads": 617, + "weekDownloads": 110, "size": 10721, "latestRelease": "4.3.0", "latestReleaseDate": "2019-12-02T08:11:56.698Z" @@ -3129,8 +3038,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, - "topicSearchString": "react native ios toolbar bottom bar tabs react-native menubar menu tabbar android" + "popularity": -1.348, + "topicSearchString": "ios toolbar bottom bar tabs menubar menu tabbar android" }, { "githubUrl": "https://github.com/vonovak/react-navigation-props-mapper", @@ -3153,7 +3062,7 @@ "pushedAt": "2023-03-05T11:56:05Z", "forks": 16, "issues": 1, - "subscribers": 4, + "subscribers": 3, "stars": 392, "dependencies": 1 }, @@ -3163,7 +3072,6 @@ "registry": "https://registry.npmjs.org/", "description": "Forwards react-navigation params to your screen component's props directly", "topics": [ - "react-native", "ios", "android" ], @@ -3177,13 +3085,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-navigation-props-mapper", "npm": { - "downloads": 11350, - "weekDownloads": 1974, + "downloads": 9973, + "weekDownloads": 2455, "size": 37367, "latestRelease": "3.1.0", "latestReleaseDate": "2022-02-17T18:06:27.540Z" @@ -3194,13 +3103,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, - "topicSearchString": "react-native ios android" + "popularity": -0.541, + "topicSearchString": "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", @@ -3217,7 +3127,7 @@ "pushedAt": "2024-10-25T11:59:53Z", "forks": 100, "issues": 39, - "subscribers": 5, + "subscribers": 4, "stars": 356, "dependencies": 0 }, @@ -3226,7 +3136,6 @@ "isPrivate": false, "description": "Create, view or edit events in react native using the standard iOS / Android dialogs", "topics": [ - "react-native", "calendar", "event", "events", @@ -3244,12 +3153,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-add-calendar-event", "npm": { - "downloads": 83581, - "weekDownloads": 14118, + "downloads": 77218, + "weekDownloads": 18440, "size": 120131, "latestRelease": "5.0.0", "latestReleaseDate": "2024-01-01T16:42:27.071Z" @@ -3260,8 +3171,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.144, - "topicSearchString": "react-native calendar event events android ios hacktoberfest" + "popularity": 0.203, + "topicSearchString": "calendar event events android ios hacktoberfest" }, { "githubUrl": "https://github.com/prscX/react-native-bottom-action-sheet", @@ -3281,7 +3192,7 @@ "updatedAt": "2022-04-09T23:57:49Z", "createdAt": "2018-01-27T08:34:23Z", "pushedAt": "2022-04-09T23:57:49Z", - "forks": 45, + "forks": 46, "issues": 9, "subscribers": 8, "stars": 629, @@ -3292,7 +3203,6 @@ "isPrivate": false, "description": "React Native: Native Bottom Action Sheet", "topics": [ - "react-native", "android", "ios" ], @@ -3306,13 +3216,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bottom-action-sheet", "npm": { - "downloads": 257, - "weekDownloads": 18, + "downloads": 273, + "weekDownloads": 33, "size": 78722, "latestRelease": "2.0.2", "latestReleaseDate": "2021-06-29T11:25:23.245Z" @@ -3323,8 +3234,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.44, - "topicSearchString": "react-native android ios" + "popularity": -1.397, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/callstack/react-native-paper", @@ -3353,10 +3264,10 @@ "updatedAt": "2025-07-17T16:09:37Z", "createdAt": "2016-10-19T05:56:53Z", "pushedAt": "2025-07-17T16:09:37Z", - "forks": 2136, - "issues": 253, + "forks": 2142, + "issues": 265, "subscribers": 121, - "stars": 13952, + "stars": 14048, "dependencies": 3 }, "name": "react-native-paper", @@ -3367,7 +3278,6 @@ "topics": [ "android", "ios", - "react-native", "component-library", "ui-kit", "material-design", @@ -3384,12 +3294,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-paper", "npm": { - "downloads": 1333455, - "weekDownloads": 232017, + "downloads": 1328284, + "weekDownloads": 284064, "size": 3763187, "latestRelease": "5.14.5", "latestReleaseDate": "2025-05-20T11:10:03.881Z" @@ -3402,8 +3313,8 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.148, - "topicSearchString": "android ios react-native component-library ui-kit material-design bootstrap hacktoberfest" + "popularity": 0.182, + "topicSearchString": "android ios component-library ui-kit material-design bootstrap hacktoberfest" }, { "githubUrl": "https://github.com/prscX/react-native-popover-menu", @@ -3426,7 +3337,7 @@ "forks": 53, "issues": 16, "subscribers": 4, - "stars": 483, + "stars": 482, "dependencies": 0 }, "name": "react-native-popover-menu", @@ -3434,7 +3345,6 @@ "isPrivate": false, "description": "React Native: Native Popover Menu", "topics": [ - "react-native", "android", "ios" ], @@ -3448,13 +3358,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-popover-menu", "npm": { - "downloads": 318, - "weekDownloads": 79, + "downloads": 754, + "weekDownloads": 83, "size": 86063, "latestRelease": "2.0.2", "latestReleaseDate": "2021-06-28T12:56:27.446Z" @@ -3465,8 +3376,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.286, - "topicSearchString": "react-native android ios" + "popularity": -1.406, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/peterpme/react-native-face-pile", @@ -3489,7 +3400,7 @@ "pushedAt": "2022-02-01T13:16:31Z", "forks": 15, "issues": 2, - "subscribers": 3, + "subscribers": 2, "stars": 105, "dependencies": 0 }, @@ -3500,7 +3411,6 @@ "topics": [ "facepile", "face-pile", - "react-native", "avatar-group", "avatar-list", "circle-avatar-list", @@ -3516,13 +3426,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-face-pile", "npm": { - "downloads": 87, - "weekDownloads": 26, + "downloads": 136, + "weekDownloads": 16, "latestRelease": "1.9.0", "latestReleaseDate": "2018-01-18T04:29:19.267Z" }, @@ -3531,8 +3442,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.24, - "topicSearchString": "facepile face-pile react-native avatar-group avatar-list circle-avatar-list faces" + "popularity": -1.4, + "topicSearchString": "facepile face-pile avatar-group avatar-list circle-avatar-list faces" }, { "githubUrl": "https://github.com/peterpme/react-native-asyncstorage", @@ -3556,7 +3467,7 @@ "pushedAt": "2017-08-27T18:24:48Z", "forks": 1, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 31, "dependencies": 0 }, @@ -3565,8 +3476,6 @@ "isPrivate": false, "description": "📬 📫 🗄 Declarative AsyncStorage component for React Native", "topics": [ - "react", - "react-native", "asyncstorage", "declarative" ], @@ -3580,12 +3489,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-asyncstorage", "npm": { "downloads": 7, - "weekDownloads": 0, + "weekDownloads": 2, "latestRelease": "1.0.0", "latestReleaseDate": "2017-08-27T15:33:07.306Z" }, @@ -3594,8 +3504,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react react-native asyncstorage declarative" + "popularity": -1.1, + "topicSearchString": "asyncstorage declarative" }, { "githubUrl": "https://github.com/prscX/react-native-shine-button", @@ -3626,7 +3536,6 @@ "isPrivate": false, "description": "React Native: Native Shine Button - Effects like shining", "topics": [ - "react-native", "android", "ios" ], @@ -3640,13 +3549,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-shine-button", "npm": { - "downloads": 25, - "weekDownloads": 4, + "downloads": 49, + "weekDownloads": 1, "size": 3259769, "latestRelease": "2.0.0", "latestReleaseDate": "2020-02-21T11:20:22.684Z" @@ -3657,8 +3567,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.34, - "topicSearchString": "react-native android ios" + "popularity": -1.482, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/prscX/react-native-iconic", @@ -3690,7 +3600,6 @@ "isPrivate": false, "description": "React Native - Native Animated Icons with different states", "topics": [ - "react-native", "android", "ios" ], @@ -3704,12 +3613,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-iconic", "npm": { - "downloads": 13, - "weekDownloads": 1, + "downloads": 33, + "weekDownloads": 2, "size": 116528, "latestRelease": "0.0.9", "latestReleaseDate": "2018-06-29T06:01:14.840Z" @@ -3720,8 +3630,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.433, - "topicSearchString": "react-native android ios" + "popularity": -1.443, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/prscX/react-native-download-button", @@ -3737,7 +3647,7 @@ "hasWiki": false, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2021-07-02T11:07:06Z", "createdAt": "2018-01-23T05:34:09Z", "pushedAt": "2021-07-02T11:07:06Z", @@ -3751,9 +3661,7 @@ "fullName": "prscX/react-native-download-button", "isPrivate": false, "description": "React Native: Native Download Button: with pretty cool animation", - "topics": [ - "react-native" - ], + "topics": [], "license": { "key": "mit", "name": "MIT License", @@ -3764,13 +3672,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-download-button", "npm": { - "downloads": 27, - "weekDownloads": 0, + "downloads": 36, + "weekDownloads": 3, "size": 63658, "latestRelease": "1.0.0", "latestReleaseDate": "2019-10-02T13:05:28.563Z" @@ -3780,8 +3689,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native" + "popularity": -1.425, + "topicSearchString": "" }, { "githubUrl": "https://github.com/prscX/react-native-spruce", @@ -3812,7 +3721,6 @@ "isPrivate": false, "description": "React Native Bridge for Native Spruce Animation Library", "topics": [ - "react-native", "android", "ios" ], @@ -3826,13 +3734,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-spruce", "npm": { - "downloads": 389, - "weekDownloads": 9, + "downloads": 1116, + "weekDownloads": 109, "size": 14010875, "latestRelease": "0.0.6", "latestReleaseDate": "2018-05-21T09:28:22.758Z" @@ -3843,8 +3752,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.48, - "topicSearchString": "react-native android ios" + "popularity": -0.667, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/bietkul/react-reactive-form/tree/mono-repo/packages/react-reactive-form", @@ -3868,7 +3777,7 @@ "pushedAt": "2022-12-06T20:46:52Z", "forks": 32, "issues": 16, - "subscribers": 12, + "subscribers": 11, "stars": 310, "dependencies": 2 }, @@ -3887,8 +3796,6 @@ "ios", "observer", "subscription", - "react", - "react-native", "form-controls" ], "license": { @@ -3901,13 +3808,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-reactive-form", "npm": { - "downloads": 6248, - "weekDownloads": 1253, + "downloads": 10296, + "weekDownloads": 1823, "size": 536377, "latestRelease": "2.0.1", "latestReleaseDate": "2022-12-06T20:46:28.841Z" @@ -3918,8 +3826,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, - "topicSearchString": "forms form reactive reactive-form form-generator form-builder android ios observer subscription react react-native form-controls" + "popularity": -0.599, + "topicSearchString": "forms form reactive reactive-form form-generator form-builder android ios observer subscription form-controls" }, { "githubUrl": "https://github.com/hectahertz/react-native-typography", @@ -3944,7 +3852,7 @@ "forks": 108, "issues": 9, "subscribers": 29, - "stars": 3510, + "stars": 3520, "dependencies": 0 }, "name": "react-native-typography", @@ -3952,8 +3860,6 @@ "isPrivate": false, "description": "Pixel–perfect, native–looking typographic styles for React Native ✒️", "topics": [ - "react-native", - "react", "typography", "style", "styles", @@ -3973,12 +3879,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-typography", "npm": { - "downloads": 33306, - "weekDownloads": 5739, + "downloads": 41146, + "weekDownloads": 9860, "size": 103797, "latestRelease": "1.4.1", "latestReleaseDate": "2019-06-16T15:47:42.349Z" @@ -3990,8 +3897,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.146, - "topicSearchString": "react-native react typography style styles typeface font typography-themes ios android" + "popularity": 0.204, + "topicSearchString": "typography style styles typeface font typography-themes ios android" }, { "githubUrl": "https://github.com/Noitidart/react-native-buttonex", @@ -4025,12 +3932,12 @@ "description": "Minor additions to the standard react-native/Button component to make it perfectly match the native button component on iOS and Android.", "topics": [ "button", - "react-native", "ios", "android", "expo" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -4039,12 +3946,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-buttonex", "npm": { - "downloads": 24, - "weekDownloads": 1, + "downloads": 291, + "weekDownloads": 0, "size": 440712, "latestRelease": "2.0.8", "latestReleaseDate": "2018-05-22T08:05:32.773Z" @@ -4054,8 +3962,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.71, - "topicSearchString": "button react-native ios android expo" + "popularity": -1, + "topicSearchString": "button ios android expo" }, { "githubUrl": "https://github.com/meinto/react-native-mirror", @@ -4087,8 +3995,6 @@ "isPrivate": false, "description": "Library to mirror equal react-native components", "topics": [ - "react", - "react-native", "mirror", "javascript" ], @@ -4102,13 +4008,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-mirror", "npm": { - "downloads": 38, - "weekDownloads": 1, + "downloads": 145, + "weekDownloads": 6, "latestRelease": "0.0.21", "latestReleaseDate": "2017-10-29T13:40:18.202Z" }, @@ -4117,8 +4024,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.725, - "topicSearchString": "react react-native mirror javascript" + "popularity": -1.715, + "topicSearchString": "mirror javascript" }, { "githubUrl": "https://github.com/meinto/react-native-viewpager-carousel", @@ -4150,8 +4057,6 @@ "isPrivate": false, "description": "a flexible viewpager library with carousel functionality", "topics": [ - "react", - "react-native", "viewpager", "carousel", "rondell", @@ -4172,13 +4077,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-viewpager-carousel", "npm": { - "downloads": 331, - "weekDownloads": 44, + "downloads": 742, + "weekDownloads": 96, "size": 1132409, "latestRelease": "0.3.2", "latestReleaseDate": "2019-01-27T22:19:55.062Z" @@ -4188,8 +4094,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.386, - "topicSearchString": "react react-native viewpager carousel rondell android ios tabbar pager-component swipe swipeview" + "popularity": -1.39, + "topicSearchString": "viewpager carousel rondell android ios tabbar pager-component swipe swipeview" }, { "githubUrl": "https://github.com/meinto/react-native-event-listeners", @@ -4222,8 +4128,6 @@ "isPrivate": false, "description": "global event listener extension for react or react-native", "topics": [ - "react", - "react-native", "event-listeners", "listeners", "events", @@ -4239,13 +4143,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-event-listeners", "npm": { - "downloads": 94615, - "weekDownloads": 15810, + "downloads": 88191, + "weekDownloads": 21384, "size": 17345, "latestRelease": "1.0.7", "latestReleaseDate": "2020-01-14T15:52:40.290Z" @@ -4256,8 +4161,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, - "topicSearchString": "react react-native event-listeners listeners events event-listener" + "popularity": -0.544, + "topicSearchString": "event-listeners listeners events event-listener" }, { "githubUrl": "https://github.com/RepairShopr/react-native-signature-capture", @@ -4277,9 +4182,9 @@ "updatedAt": "2021-03-12T17:06:03Z", "createdAt": "2015-07-09T12:25:55Z", "pushedAt": "2021-03-12T17:06:03Z", - "forks": 435, + "forks": 434, "issues": 137, - "subscribers": 20, + "subscribers": 19, "stars": 965, "dependencies": 1 }, @@ -4288,8 +4193,7 @@ "isPrivate": false, "description": "A simple modular component for react native (iOS) to capture a signature as an image", "topics": [ - "react-component", - "react-native", + "component", "ios", "signature" ], @@ -4303,13 +4207,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-signature-capture", "npm": { - "downloads": 54722, - "weekDownloads": 11239, + "downloads": 47703, + "weekDownloads": 11840, "size": 220600982, "latestRelease": "0.4.12", "latestReleaseDate": "2021-06-08T02:54:24.738Z" @@ -4322,14 +4227,15 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.575, - "topicSearchString": "react-component react-native ios signature" + "popularity": -0.539, + "topicSearchString": "component ios signature" }, { "githubUrl": "https://github.com/wonday/react-native-pdf", "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", @@ -4341,13 +4247,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-22T12:13:08Z", + "updatedAt": "2025-10-16T15:04:59Z", "createdAt": "2017-04-25T15:12:58Z", - "pushedAt": "2025-08-22T12:13:08Z", - "forks": 564, - "issues": 365, + "pushedAt": "2025-10-16T15:04:59Z", + "forks": 585, + "issues": 371, "subscribers": 15, - "stars": 1720, + "stars": 1741, "dependencies": 2 }, "name": "react-native-pdf", @@ -4355,8 +4261,7 @@ "isPrivate": false, "description": "A component for react-native", "topics": [ - "react-component", - "react-native", + "component", "android", "ios", "pdf", @@ -4375,26 +4280,27 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-pdf", "npm": { - "downloads": 1060738, - "weekDownloads": 177184, - "size": 285836, - "latestRelease": "6.7.7", - "latestReleaseDate": "2025-02-11T15:05:18.409Z" + "downloads": 1021846, + "weekDownloads": 239040, + "size": 288552, + "latestRelease": "7.0.3", + "latestReleaseDate": "2025-10-16T15:09:02.183Z" }, - "score": 62, + "score": 65, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.142, - "topicSearchString": "react-component react-native android ios pdf view viewer java objective-c" + "popularity": 0.199, + "topicSearchString": "component android ios pdf view viewer java objective-c" }, { "githubUrl": "https://github.com/toystars/react-native-multiple-select", @@ -4415,10 +4321,10 @@ "updatedAt": "2023-08-02T13:22:41Z", "createdAt": "2017-01-12T00:42:54Z", "pushedAt": "2023-08-02T13:22:41Z", - "forks": 308, + "forks": 307, "issues": 84, "subscribers": 10, - "stars": 580, + "stars": 579, "dependencies": 1 }, "name": "react-native-multiple-select", @@ -4428,8 +4334,7 @@ "topics": [ "reactnative", "multiselect", - "multi-select", - "react-native" + "multi-select" ], "license": { "key": "mit", @@ -4441,13 +4346,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-multiple-select", "npm": { - "downloads": 20616, - "weekDownloads": 3845, + "downloads": 21134, + "weekDownloads": 4499, "size": 44830, "latestRelease": "0.5.12", "latestReleaseDate": "2022-10-18T23:45:15.060Z" @@ -4460,8 +4366,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, - "topicSearchString": "reactnative multiselect multi-select react-native" + "popularity": -0.569, + "topicSearchString": "reactnative multiselect multi-select" }, { "githubUrl": "https://github.com/wonday/react-native-orientation-locker", @@ -4483,10 +4389,10 @@ "updatedAt": "2025-08-22T12:14:29Z", "createdAt": "2017-05-15T06:06:59Z", "pushedAt": "2025-08-22T12:14:29Z", - "forks": 260, + "forks": 261, "issues": 124, - "subscribers": 9, - "stars": 784, + "subscribers": 8, + "stars": 788, "dependencies": 0 }, "name": "react-native-orientation-locker", @@ -4495,7 +4401,6 @@ "description": "A react-native module that can listen on orientation changing of device, get current orientation, lock to preferred orientation. ", "topics": [ "orientation", - "react-native", "android", "ios", "windows", @@ -4513,26 +4418,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-orientation-locker", "npm": { - "downloads": 476085, - "weekDownloads": 79447, + "downloads": 453193, + "weekDownloads": 107071, "size": 498704, "latestRelease": "1.7.0", "latestReleaseDate": "2024-04-20T15:16:06.405Z" }, - "score": 62, + "score": 57, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "orientation react-native android ios windows screen listener locker" + "popularity": 0.201, + "topicSearchString": "orientation android ios windows screen listener locker" }, { "githubUrl": "https://github.com/OneSignal/react-native-onesignal", @@ -4550,13 +4455,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-01T20:37:57Z", + "updatedAt": "2025-09-24T21:55:41Z", "createdAt": "2016-02-19T11:03:31Z", - "pushedAt": "2025-07-01T20:37:57Z", + "pushedAt": "2025-09-24T21:55:41Z", "forks": 366, - "issues": 65, - "subscribers": 51, - "stars": 1578, + "issues": 68, + "subscribers": 49, + "stars": 1580, "dependencies": 1 }, "name": "react-native-onesignal", @@ -4564,8 +4469,7 @@ "isPrivate": false, "description": "React Native Library for OneSignal Push Notifications Service", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "notifications", @@ -4589,24 +4493,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-onesignal", "npm": { - "downloads": 295088, - "weekDownloads": 46905, + "downloads": 297688, + "weekDownloads": 67572, "size": 364522, "latestRelease": "5.2.13", "latestReleaseDate": "2025-07-01T20:54:57.093Z" }, - "score": 68, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.135, - "topicSearchString": "react-component react-native ios android notifications push apns fcm gcm onesignal push-notifications mobile onesignal-instructions onesignal-notifications" + "popularity": 0.193, + "topicSearchString": "component ios android notifications push apns fcm gcm onesignal push-notifications mobile onesignal-instructions onesignal-notifications" }, { "githubUrl": "https://github.com/jodybrewster/react-native-linkedin-login", @@ -4638,10 +4543,7 @@ "isPrivate": false, "description": "React Native Linkedin login", "topics": [ - "react", - "react-component", - "react-native", - "native", + "component", "ios", "android", "linkedin", @@ -4660,12 +4562,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-linkedin-login", "npm": { - "downloads": 1617, - "weekDownloads": 72, + "downloads": 3570, + "weekDownloads": 627, "latestRelease": "1.44.1", "latestReleaseDate": "2017-05-28T16:09:00.081Z" }, @@ -4674,8 +4577,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.712, - "topicSearchString": "react react-component react-native native ios android linkedin login sdk linkedin-sdk signin" + "popularity": -0.601, + "topicSearchString": "component ios android linkedin login sdk linkedin-sdk signin" }, { "githubUrl": "https://github.com/root-two/react-native-drawer", @@ -4697,7 +4600,7 @@ "updatedAt": "2018-10-02T17:00:32Z", "createdAt": "2015-04-12T00:34:59Z", "pushedAt": "2018-10-02T17:00:32Z", - "forks": 349, + "forks": 348, "issues": 154, "subscribers": 50, "stars": 2532, @@ -4708,9 +4611,7 @@ "isPrivate": false, "description": "React Native Drawer", "topics": [ - "react", - "react-native", - "react-component", + "component", "drawer", "side-menu", "menu", @@ -4728,12 +4629,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-drawer", "npm": { - "downloads": 35333, - "weekDownloads": 5642, + "downloads": 36596, + "weekDownloads": 7139, "size": 33046, "latestRelease": "2.5.1", "latestReleaseDate": "2018-10-02T17:00:34.305Z" @@ -4746,8 +4648,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.614, - "topicSearchString": "react react-native react-component drawer side-menu menu ios android material-design" + "popularity": -0.584, + "topicSearchString": "component drawer side-menu menu ios android material-design" }, { "githubUrl": "https://github.com/react-native-image-picker/react-native-image-picker", @@ -4772,10 +4674,10 @@ "updatedAt": "2025-05-04T08:25:42Z", "createdAt": "2015-06-08T20:25:31Z", "pushedAt": "2025-05-04T08:25:42Z", - "forks": 1921, - "issues": 288, - "subscribers": 110, - "stars": 8588, + "forks": 1920, + "issues": 293, + "subscribers": 109, + "stars": 8608, "dependencies": 0 }, "name": "react-native-image-picker", @@ -4783,10 +4685,7 @@ "isPrivate": false, "description": ":sunrise_over_mountains: A React Native module that allows you to use native UI to select media from the device library or directly from the camera.", "topics": [ - "react-native", "image-picker", - "react", - "native", "image", "picker" ], @@ -4800,26 +4699,27 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-image-picker", "npm": { - "downloads": 1378355, - "weekDownloads": 272872, + "downloads": 1198393, + "weekDownloads": 270535, "size": 189165, "latestRelease": "8.2.1", "latestReleaseDate": "2025-05-04T08:25:47.097Z" }, - "score": 81, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.168, - "topicSearchString": "react-native image-picker react native image picker" + "popularity": 0.192, + "topicSearchString": "image-picker image picker" }, { "githubUrl": "https://github.com/Andr3wHur5t/react-native-keyboard-spacer", @@ -4844,10 +4744,10 @@ "updatedAt": "2017-10-08T07:54:04Z", "createdAt": "2015-10-12T23:29:34Z", "pushedAt": "2017-10-08T07:54:04Z", - "forks": 209, + "forks": 210, "issues": 27, "subscribers": 12, - "stars": 1563, + "stars": 1564, "dependencies": 0 }, "name": "react-native-keyboard-spacer", @@ -4855,8 +4755,7 @@ "isPrivate": false, "description": "Plug and play react-native keyboard spacer view.", "topics": [ - "react-component", - "react-native", + "component", "ios", "keyboard", "spacer", @@ -4873,12 +4772,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-keyboard-spacer", "npm": { - "downloads": 30977, - "weekDownloads": 5016, + "downloads": 36375, + "weekDownloads": 8291, "latestRelease": "0.4.1", "latestReleaseDate": "2017-10-08T07:54:19.900Z" }, @@ -4889,8 +4789,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, - "topicSearchString": "react-component react-native ios keyboard spacer helper clean-code" + "popularity": -0.556, + "topicSearchString": "component ios keyboard spacer helper clean-code" }, { "githubUrl": "https://github.com/davodesign84/react-native-mixpanel", @@ -4923,8 +4823,7 @@ "isPrivate": false, "description": "A React Native wrapper for Mixpanel tracking", "topics": [ - "react-native", - "react-component", + "component", "tracking", "mixpanel", "mixpanel-sdk", @@ -4946,12 +4845,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-mixpanel", "npm": { - "downloads": 8853, - "weekDownloads": 1381, + "downloads": 7640, + "weekDownloads": 1705, "size": 125473, "latestRelease": "1.2.5", "latestReleaseDate": "2020-12-01T16:30:32.601Z" @@ -4962,8 +4862,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, - "topicSearchString": "react-native react-component tracking mixpanel mixpanel-sdk android ios-app xcode notifications mixpanel-ios-sdk java mobile-app" + "popularity": -0.56, + "topicSearchString": "component tracking mixpanel mixpanel-sdk android ios-app xcode notifications mixpanel-ios-sdk java mobile-app" }, { "githubUrl": "https://github.com/react-navigation/react-navigation/tree/main/packages/native", @@ -4993,13 +4893,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T20:05:57Z", + "updatedAt": "2025-10-13T15:01:58Z", "createdAt": "2017-01-26T19:51:40Z", - "pushedAt": "2025-09-12T20:05:57Z", - "forks": 4927, - "issues": 841, - "subscribers": 311, - "stars": 24159, + "pushedAt": "2025-10-13T15:01:58Z", + "forks": 4929, + "issues": 850, + "subscribers": 308, + "stars": 24225, "dependencies": 5 }, "name": "@react-navigation/native", @@ -5007,8 +4907,7 @@ "isPrivate": false, "description": "React Native integration for React Navigation", "topics": [ - "react-native", - "react-navigation", + "navigation", "ios", "android" ], @@ -5022,14 +4921,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8005571, - "weekDownloads": 1391613, - "size": 234510, - "latestRelease": "7.1.17", - "latestReleaseDate": "2025-08-02T18:36:39.081Z" + "downloads": 8367029, + "weekDownloads": 1833270, + "size": 234741, + "latestRelease": "7.1.18", + "latestReleaseDate": "2025-10-04T21:47:51.238Z" }, "score": 86, "matchingScoreModifiers": [ @@ -5040,8 +4940,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.148, - "topicSearchString": "react-native react-navigation ios android" + "popularity": 0.186, + "topicSearchString": "navigation ios android" }, { "githubUrl": "https://github.com/airbnb/native-navigation", @@ -5064,7 +4964,7 @@ "pushedAt": "2018-01-05T19:36:22Z", "forks": 172, "issues": 51, - "subscribers": 109, + "subscribers": 108, "stars": 3124, "dependencies": 2 }, @@ -5073,8 +4973,6 @@ "isPrivate": false, "description": "Native navigation library for React Native applications", "topics": [ - "react-native", - "react", "navigation", "navigator" ], @@ -5088,12 +4986,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "native-navigation", "npm": { - "downloads": 48, - "weekDownloads": 17, + "downloads": 136, + "weekDownloads": 0, "latestRelease": "0.2.1", "latestReleaseDate": "2017-04-17T23:03:30.453Z" }, @@ -5104,8 +5003,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.191, - "topicSearchString": "react-native react navigation navigator" + "popularity": -1, + "topicSearchString": "navigation navigator" }, { "githubUrl": "https://github.com/wix/react-native-navigation", @@ -5123,13 +5022,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-01T08:23:37Z", + "updatedAt": "2025-10-19T20:34:59Z", "createdAt": "2016-03-11T11:22:54Z", - "pushedAt": "2025-09-01T08:23:37Z", - "forks": 2536, - "issues": 252, - "subscribers": 477, - "stars": 13128, + "pushedAt": "2025-10-19T20:34:59Z", + "forks": 2540, + "issues": 258, + "subscribers": 475, + "stars": 13140, "dependencies": 8 }, "name": "react-native-navigation", @@ -5138,7 +5037,6 @@ "registry": "https://registry.npmjs.org/", "description": "A complete native navigation solution for React Native", "topics": [ - "react-native", "navigation", "navigator", "hacktoberfest" @@ -5153,27 +5051,27 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-navigation", "npm": { - "downloads": 163001, - "weekDownloads": 16171, - "size": 4672105, - "latestRelease": "8.3.1", - "latestReleaseDate": "2025-09-01T08:23:34.332Z" + "downloads": 229013, + "weekDownloads": 36096, + "size": 4673216, + "latestRelease": "8.4.0", + "latestReleaseDate": "2025-10-19T20:34:57.071Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.084, - "topicSearchString": "react-native navigation navigator hacktoberfest" + "popularity": 0.134, + "topicSearchString": "navigation navigator hacktoberfest" }, { "githubUrl": "https://github.com/gre/gl-react/tree/master/packages/gl-react-expo", @@ -5195,10 +5093,10 @@ "updatedAt": "2022-05-31T06:01:47Z", "createdAt": "2015-08-17T15:49:51Z", "pushedAt": "2022-05-31T06:01:47Z", - "forks": 159, - "issues": 48, - "subscribers": 46, - "stars": 2969, + "forks": 158, + "issues": 47, + "subscribers": 45, + "stars": 2972, "dependencies": 2 }, "name": "gl-react-expo", @@ -5206,13 +5104,11 @@ "isPrivate": false, "description": "React Native via Expo implementation of gl-react, an universal React library to write and compose WebGL shaders", "topics": [ - "gl-react", + "gl", "gl", "opengl", - "react", - "react-native", "expo", - "react-component" + "component" ], "license": { "name": "MIT License", @@ -5224,13 +5120,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "gl-react-expo", "npm": { - "downloads": 1344, - "weekDownloads": 178, + "downloads": 2935, + "weekDownloads": 586, "size": 17343, "latestRelease": "5.2.1", "latestReleaseDate": "2022-05-28T20:16:25.253Z" @@ -5242,8 +5139,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.637, - "topicSearchString": "gl-react gl opengl react react-native expo react-component" + "popularity": -0.58, + "topicSearchString": "gl gl opengl expo component" }, { "githubUrl": "https://github.com/n4kz/react-native-pages", @@ -5275,9 +5172,7 @@ "isPrivate": false, "description": "Easy to use page view component", "topics": [ - "react", - "react-component", - "react-native", + "component", "ios", "android", "pageview", @@ -5295,13 +5190,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-pages", "npm": { - "downloads": 6733, - "weekDownloads": 917, + "downloads": 9798, + "weekDownloads": 2206, "size": 17057, "latestRelease": "0.9.0", "latestReleaseDate": "2019-10-07T18:38:59.702Z" @@ -5312,8 +5208,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.634, - "topicSearchString": "react react-component react-native ios android pageview viewpager pager swiper" + "popularity": -0.559, + "topicSearchString": "component ios android pageview viewpager pager swiper" }, { "githubUrl": "https://github.com/silentcloud/react-native-page-control", @@ -5345,9 +5241,7 @@ "isPrivate": false, "description": "Page Control for React Native, like iOS UIPageControl, APIs are same as UIPageControl", "topics": [ - "react", - "react-native", - "react-component", + "component", "page-control", "pagecontrol", "uipagecontrol" @@ -5362,13 +5256,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-page-control", "npm": { - "downloads": 8005, - "weekDownloads": 1433, + "downloads": 13216, + "weekDownloads": 4710, "size": 8234, "latestRelease": "1.1.2", "latestReleaseDate": "2020-02-17T10:31:32.875Z" @@ -5379,8 +5274,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, - "topicSearchString": "react react-native react-component page-control pagecontrol uipagecontrol" + "popularity": -0.447, + "topicSearchString": "component page-control pagecontrol uipagecontrol" }, { "githubUrl": "https://github.com/lottie-react-native/lottie-react-native/tree/master/packages/core", @@ -5414,10 +5309,10 @@ "updatedAt": "2025-09-02T14:36:37Z", "createdAt": "2017-01-27T18:24:50Z", "pushedAt": "2025-09-02T14:36:37Z", - "forks": 1748, - "issues": 10, - "subscribers": 222, - "stars": 17018, + "forks": 1747, + "issues": 8, + "subscribers": 221, + "stars": 17046, "dependencies": 0 }, "name": "lottie-react-native", @@ -5428,8 +5323,6 @@ "topics": [ "lottie", "animation", - "react", - "react-native", "keyframe" ], "license": { @@ -5442,25 +5335,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 2522281, - "weekDownloads": 414568, + "downloads": 2497459, + "weekDownloads": 575374, "size": 289361, "latestRelease": "7.3.4", "latestReleaseDate": "2025-09-02T14:36:45.999Z" }, - "score": 97, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.14, - "topicSearchString": "lottie animation react react-native keyframe" + "popularity": 0.196, + "topicSearchString": "lottie animation keyframe" }, { "githubUrl": "https://github.com/react-native-maps/react-native-maps", @@ -5472,6 +5365,7 @@ "https://snack.expo.dev/H1zOFxnN-" ], "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/react-native-maps/react-native-maps", @@ -5483,13 +5377,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-02T21:26:15Z", + "updatedAt": "2025-10-14T14:17:09Z", "createdAt": "2015-12-29T19:54:20Z", - "pushedAt": "2025-09-02T21:26:15Z", - "forks": 4684, - "issues": 100, - "subscribers": 216, - "stars": 15674, + "pushedAt": "2025-10-14T14:17:09Z", + "forks": 4695, + "issues": 68, + "subscribers": 212, + "stars": 15753, "dependencies": 1 }, "name": "react-native-maps", @@ -5497,9 +5391,7 @@ "isPrivate": false, "description": "React Native Mapview component for iOS + Android", "topics": [ - "react", - "react-native", - "react-component", + "component", "map", "mapview", "google-maps", @@ -5513,29 +5405,30 @@ "url": "http://choosealicense.com/licenses/mit/", "id": "MDc6TGljZW5zZTEz" }, - "hasTypes": false, + "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-maps", "npm": { - "downloads": 1660511, - "weekDownloads": 273886, - "size": 1641113, - "latestRelease": "1.26.1", - "latestReleaseDate": "2025-09-02T21:26:22.171Z" + "downloads": 1870019, + "weekDownloads": 412087, + "size": 1879742, + "latestRelease": "1.26.17", + "latestReleaseDate": "2025-10-14T14:17:16.130Z" }, - "score": 89, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", "Recently updated" ], - "popularity": 0.14, - "topicSearchString": "react react-native react-component map mapview google-maps mapkit maps" + "popularity": 0.187, + "topicSearchString": "component map mapview google-maps mapkit maps" }, { "githubUrl": "https://github.com/bramus/react-native-maps-directions", @@ -5561,8 +5454,8 @@ "pushedAt": "2022-07-27T21:51:21Z", "forks": 189, "issues": 54, - "subscribers": 18, - "stars": 1273, + "subscribers": 17, + "stars": 1275, "dependencies": 2 }, "name": "react-native-maps-directions", @@ -5570,7 +5463,6 @@ "isPrivate": false, "description": "Directions Component for `react-native-maps`", "topics": [ - "react-native", "component", "maps", "directions", @@ -5590,13 +5482,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-maps-directions", "npm": { - "downloads": 59802, - "weekDownloads": 9964, + "downloads": 59186, + "weekDownloads": 12974, "size": 34838, "latestRelease": "1.9.0", "latestReleaseDate": "2022-07-27T21:51:59.432Z" @@ -5608,8 +5501,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, - "topicSearchString": "react-native component maps directions google-maps ios android google-maps-api mapkit" + "popularity": -0.564, + "topicSearchString": "component maps directions google-maps ios android google-maps-api mapkit" }, { "githubUrl": "https://github.com/oblador/react-native-animatable", @@ -5636,8 +5529,8 @@ "pushedAt": "2023-10-26T16:45:11Z", "forks": 686, "issues": 164, - "subscribers": 111, - "stars": 9934, + "subscribers": 110, + "stars": 9935, "dependencies": 1 }, "name": "react-native-animatable", @@ -5645,10 +5538,7 @@ "isPrivate": false, "description": "Standard set of easy to use animations and declarative transitions for React Native", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -5670,12 +5560,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animatable", "npm": { - "downloads": 2018287, - "weekDownloads": 327731, + "downloads": 2017927, + "weekDownloads": 461444, "size": 59839, "latestRelease": "1.4.0", "latestReleaseDate": "2023-10-26T16:45:30.755Z" @@ -5689,8 +5580,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.138, - "topicSearchString": "react-native react-component component react mobile ios android ui fade bounce slide animatable transition animation" + "popularity": 0.194, + "topicSearchString": "component mobile ios android ui fade bounce slide animatable transition animation" }, { "githubUrl": "https://github.com/maggialejandro/react-native-calendario", @@ -5716,8 +5607,8 @@ "pushedAt": "2024-04-16T14:41:11Z", "forks": 45, "issues": 2, - "subscribers": 5, - "stars": 528, + "subscribers": 4, + "stars": 530, "dependencies": 2 }, "name": "react-native-calendario", @@ -5725,7 +5616,6 @@ "isPrivate": false, "description": "📆 React Native Calendar", "topics": [ - "react-native", "calendar", "android", "ios", @@ -5741,12 +5631,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-calendario", "npm": { - "downloads": 9857, - "weekDownloads": 1568, + "downloads": 14272, + "weekDownloads": 2751, "size": 185917, "latestRelease": "3.5.2", "latestReleaseDate": "2024-04-16T14:44:17.810Z" @@ -5757,8 +5648,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.135, - "topicSearchString": "react-native calendar android ios typescript" + "popularity": 0.164, + "topicSearchString": "calendar android ios typescript" }, { "githubUrl": "https://github.com/wix/react-native-calendars", @@ -5791,10 +5682,10 @@ "updatedAt": "2025-06-09T09:42:33Z", "createdAt": "2016-11-11T12:17:27Z", "pushedAt": "2025-06-09T09:42:33Z", - "forks": 2870, - "issues": 147, + "forks": 2879, + "issues": 153, "subscribers": 349, - "stars": 10062, + "stars": 10118, "dependencies": 8 }, "name": "react-native-calendars", @@ -5803,7 +5694,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Calendar Components 🗓️ 📆 ", "topics": [ - "react-native", "android", "ios", "calendar", @@ -5820,12 +5710,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-calendars", "npm": { - "downloads": 1053983, - "weekDownloads": 179583, + "downloads": 1057393, + "weekDownloads": 231615, "size": 429994, "latestRelease": "1.1313.0", "latestReleaseDate": "2025-06-24T13:09:10.634Z" @@ -5838,8 +5729,8 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "react-native android ios calendar ui-components hacktoberfest" + "popularity": 0.186, + "topicSearchString": "android ios calendar ui-components hacktoberfest" }, { "githubUrl": "https://github.com/expo/vector-icons", @@ -5863,13 +5754,13 @@ "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": 54, - "subscribers": 13, - "stars": 716, + "issues": 58, + "subscribers": 12, + "stars": 725, "dependencies": 0 }, "name": "@expo/vector-icons", @@ -5878,7 +5769,6 @@ "description": "Built-in support for popular icon fonts and the tooling to create your own Icon components from your font and glyph map. This is a wrapper around react-native-vector-icons to make it compatible with Expo.", "topics": [ "expo", - "react-native", "icons", "icon-pack" ], @@ -5892,11 +5782,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 6942212, - "weekDownloads": 1126233, + "downloads": 7402216, + "weekDownloads": 1607800, "size": 6013893, "latestRelease": "15.0.2", "latestReleaseDate": "2025-08-28T13:55:49.146Z" @@ -5909,8 +5801,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.138, - "topicSearchString": "expo react-native icons icon-pack" + "popularity": 0.185, + "topicSearchString": "expo icons icon-pack" }, { "githubUrl": "https://github.com/idibidiart/react-native-responsive-grid", @@ -5933,7 +5825,7 @@ "pushedAt": "2020-01-09T05:06:42Z", "forks": 39, "issues": 1, - "subscribers": 11, + "subscribers": 10, "stars": 382, "dependencies": 1 }, @@ -5942,9 +5834,6 @@ "isPrivate": false, "description": "Bringing the Web's Responsive Design to React Native", "topics": [ - "react-native", - "react", - "native", "flexbox", "grid", "responsive", @@ -5964,13 +5853,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-responsive-grid", "npm": { - "downloads": 2687, - "weekDownloads": 571, + "downloads": 3289, + "weekDownloads": 461, "size": 97762, "latestRelease": "0.41.993", "latestReleaseDate": "2020-03-18T01:12:40.847Z" @@ -5981,8 +5871,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.569, - "topicSearchString": "react-native react native flexbox grid responsive responsive-layout layout orientation-changes responsive-design universal" + "popularity": -0.631, + "topicSearchString": "flexbox grid responsive responsive-layout layout orientation-changes responsive-design universal" }, { "githubUrl": "https://github.com/24ark/react-native-step-indicator", @@ -6006,7 +5896,7 @@ "forks": 291, "issues": 52, "subscribers": 9, - "stars": 1454, + "stars": 1456, "dependencies": 0 }, "name": "react-native-step-indicator", @@ -6014,10 +5904,9 @@ "isPrivate": false, "description": "A simple react-native implementation of step indicator widget compatible with the ViewPager and ListView.", "topics": [ - "react-native", "ios", "android", - "react-component", + "component", "step-indicator", "viewpager", "scrollview", @@ -6035,13 +5924,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-step-indicator", "npm": { - "downloads": 197131, - "weekDownloads": 21604, + "downloads": 269554, + "weekDownloads": 69447, "size": 144083, "latestRelease": "1.0.3", "latestReleaseDate": "2020-06-16T18:30:52.597Z" @@ -6053,8 +5943,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.657, - "topicSearchString": "react-native ios android react-component step-indicator viewpager scrollview listview step progress-view" + "popularity": -0.531, + "topicSearchString": "ios android component step-indicator viewpager scrollview listview step progress-view" }, { "githubUrl": "https://github.com/jacklam718/react-native-modals", @@ -6075,10 +5965,10 @@ "updatedAt": "2020-12-19T15:57:48Z", "createdAt": "2016-09-11T00:56:21Z", "pushedAt": "2020-12-19T15:57:48Z", - "forks": 279, + "forks": 278, "issues": 93, - "subscribers": 27, - "stars": 2208, + "subscribers": 26, + "stars": 2209, "dependencies": 2 }, "name": "react-native-modals", @@ -6088,15 +5978,11 @@ "topics": [ "dialog", "popup", - "react-dialog", - "react-native", "modals", - "react-component", + "component", "ios", "android", - "react", - "react-animate", - "component", + "animate", "javascript", "es6" ], @@ -6110,13 +5996,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modals", "npm": { - "downloads": 8617, - "weekDownloads": 1395, + "downloads": 7567, + "weekDownloads": 1748, "size": 12374985, "latestRelease": "0.22.3", "latestReleaseDate": "2020-12-19T16:05:09.775Z" @@ -6129,8 +6016,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, - "topicSearchString": "dialog popup react-dialog react-native modals react-component ios android react react-animate component javascript es6" + "popularity": -0.554, + "topicSearchString": "dialog popup modals component ios android animate javascript es6" }, { "githubUrl": "https://github.com/n4kz/react-native-material-textfield", @@ -6154,7 +6041,7 @@ "updatedAt": "2019-10-26T19:56:56Z", "createdAt": "2017-03-12T10:57:40Z", "pushedAt": "2019-10-26T19:56:56Z", - "forks": 628, + "forks": 627, "issues": 75, "subscribers": 15, "stars": 903, @@ -6165,9 +6052,7 @@ "isPrivate": false, "description": "Material textfield", "topics": [ - "react", - "react-component", - "react-native", + "component", "ios", "android", "material", @@ -6189,13 +6074,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-textfield", "npm": { - "downloads": 166011, - "weekDownloads": 16645, + "downloads": 239613, + "weekDownloads": 62039, "size": 191081, "latestRelease": "0.16.1", "latestReleaseDate": "2019-10-24T20:53:07.376Z" @@ -6208,8 +6094,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.665, - "topicSearchString": "react react-component react-native ios android material input textinput field textfield floating label material-design" + "popularity": -0.53, + "topicSearchString": "component ios android material input textinput field textfield floating label material-design" }, { "githubUrl": "https://github.com/maxs15/react-native-modalbox", @@ -6236,8 +6122,8 @@ "pushedAt": "2024-12-15T09:14:54Z", "forks": 458, "issues": 138, - "subscribers": 28, - "stars": 2920, + "subscribers": 27, + "stars": 2919, "dependencies": 1 }, "name": "react-native-modalbox", @@ -6245,8 +6131,7 @@ "isPrivate": false, "description": "A component for react-native", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "modal", @@ -6265,12 +6150,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-modalbox", "npm": { - "downloads": 52870, - "weekDownloads": 9012, + "downloads": 54299, + "weekDownloads": 13134, "size": 21424, "latestRelease": "2.0.2", "latestReleaseDate": "2020-10-09T23:31:47.038Z" @@ -6283,8 +6169,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "react-component react-native ios android modal box modalbox window swipe" + "popularity": 0.206, + "topicSearchString": "component ios android modal box modalbox window swipe" }, { "githubUrl": "https://github.com/react-native-modal/react-native-modal", @@ -6309,10 +6195,10 @@ "updatedAt": "2025-04-02T15:48:07Z", "createdAt": "2016-09-23T16:45:46Z", "pushedAt": "2025-04-02T15:48:07Z", - "forks": 631, - "issues": 68, + "forks": 633, + "issues": 72, "subscribers": 38, - "stars": 5615, + "stars": 5630, "dependencies": 1 }, "name": "react-native-modal", @@ -6320,9 +6206,6 @@ "isPrivate": false, "description": "An enhanced, animated, customizable Modal for React Native.", "topics": [ - "react-native", - "react", - "native", "modal", "android", "ios", @@ -6341,25 +6224,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-modal", "npm": { - "downloads": 1816756, - "weekDownloads": 338337, + "downloads": 1696928, + "weekDownloads": 393738, "size": 57712, "latestRelease": "14.0.0-rc.1", "latestReleaseDate": "2025-03-15T03:54:56.538Z" }, - "score": 92, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, - "topicSearchString": "react-native react native modal android ios backdrop simple animated animation" + "popularity": 0.197, + "topicSearchString": "modal android ios backdrop simple animated animation" }, { "githubUrl": "https://github.com/react-native-elements/react-native-elements", @@ -6385,10 +6270,10 @@ "updatedAt": "2024-02-04T03:55:07Z", "createdAt": "2016-09-08T14:21:41Z", "pushedAt": "2024-02-04T03:55:07Z", - "forks": 4610, + "forks": 4618, "issues": 144, "subscribers": 372, - "stars": 25570, + "stars": 25621, "dependencies": 0 }, "name": "rneui", @@ -6397,10 +6282,8 @@ "description": "Cross-Platform React Native UI Toolkit", "topics": [ "ui-components", - "react-native", "ios", "android", - "react", "ui", "mobile-app", "hacktoberfest", @@ -6416,11 +6299,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 816, - "weekDownloads": 129, + "downloads": 391, + "weekDownloads": 109, "size": 381, "latestRelease": "1.0.0-stable.0", "latestReleaseDate": "2022-05-05T08:31:29.876Z" @@ -6434,8 +6318,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, - "topicSearchString": "ui-components react-native ios android react ui mobile-app hacktoberfest cross-platform" + "popularity": -0.513, + "topicSearchString": "ui-components ios android ui mobile-app hacktoberfest cross-platform" }, { "githubUrl": "https://github.com/react-navigation/react-navigation/tree/main/packages/react-native-tab-view", @@ -6461,13 +6345,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-25T17:33:32Z", + "updatedAt": "2025-10-16T12:44:50Z", "createdAt": "2017-01-26T19:51:40Z", - "pushedAt": "2025-08-25T17:33:32Z", - "forks": 4927, - "issues": 841, - "subscribers": 311, - "stars": 24159, + "pushedAt": "2025-10-16T12:44:50Z", + "forks": 4929, + "issues": 850, + "subscribers": 308, + "stars": 24225, "dependencies": 1 }, "name": "react-native-tab-view", @@ -6476,8 +6360,7 @@ "description": "Tab view component for React Native", "topics": [ "component", - "react-component", - "react-native", + "component", "ios", "android", "tab", @@ -6495,12 +6378,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-tab-view", "npm": { - "downloads": 2154019, - "weekDownloads": 359486, + "downloads": 2032219, + "weekDownloads": 468842, "size": 193318, "latestRelease": "4.1.3", "latestReleaseDate": "2025-08-10T16:27:21.845Z" @@ -6514,8 +6398,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "component react-component react-native ios android tab swipe scrollable coverflow" + "popularity": 0.196, + "topicSearchString": "component component ios android tab swipe scrollable coverflow" }, { "githubUrl": "https://github.com/bartgryszko/react-native-circular-slider", @@ -6538,7 +6422,7 @@ "forks": 174, "issues": 25, "subscribers": 19, - "stars": 885, + "stars": 886, "dependencies": 4 }, "name": "react-native-circular-slider", @@ -6546,8 +6430,6 @@ "isPrivate": false, "description": "React Native component for creating circular slider :radio_button:", "topics": [ - "react", - "react-native", "slider", "chart", "svg", @@ -6557,7 +6439,7 @@ "round", "time", "timer", - "react-component", + "component", "clock", "animation" ], @@ -6571,13 +6453,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-circular-slider", "npm": { - "downloads": 1103, - "weekDownloads": 204, + "downloads": 1140, + "weekDownloads": 214, "latestRelease": "1.0.1", "latestReleaseDate": "2017-01-07T08:13:00.443Z" }, @@ -6588,8 +6471,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, - "topicSearchString": "react react-native slider chart svg bedtime circular circle round time timer react-component clock animation" + "popularity": -0.59, + "topicSearchString": "slider chart svg bedtime circular circle round time timer component clock animation" }, { "githubUrl": "https://github.com/archriss/react-native-snap-carousel", @@ -6618,10 +6501,10 @@ "updatedAt": "2021-02-09T15:27:39Z", "createdAt": "2016-10-11T07:22:24Z", "pushedAt": "2021-02-09T15:27:39Z", - "forks": 2163, - "issues": 344, + "forks": 2165, + "issues": 346, "subscribers": 96, - "stars": 10504, + "stars": 10519, "dependencies": 2 }, "name": "react-native-snap-carousel", @@ -6629,8 +6512,6 @@ "isPrivate": false, "description": "Swiper/carousel component for React Native featuring previews, multiple layouts, parallax images, performant handling of huge numbers of items, and more. Compatible with Android & iOS.", "topics": [ - "react", - "native", "carousel", "slider", "swiper", @@ -6669,13 +6550,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-snap-carousel", "npm": { - "downloads": 471559, - "weekDownloads": 80279, + "downloads": 435892, + "weekDownloads": 112413, "size": 191158, "latestRelease": "3.9.1", "latestReleaseDate": "2020-05-27T05:36:20.217Z" @@ -6689,8 +6571,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, - "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" + "popularity": -0.531, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/mmazzarolo/react-native-modal-datetime-picker", @@ -6716,10 +6598,10 @@ "updatedAt": "2024-08-22T15:03:41Z", "createdAt": "2016-09-14T11:27:18Z", "pushedAt": "2024-08-22T15:03:41Z", - "forks": 388, + "forks": 389, "issues": 41, - "subscribers": 33, - "stars": 3037, + "subscribers": 32, + "stars": 3045, "dependencies": 1 }, "name": "react-native-modal-datetime-picker", @@ -6727,9 +6609,6 @@ "isPrivate": false, "description": "A React-Native datetime-picker for Android and iOS", "topics": [ - "react-native", - "react", - "native", "date", "time", "picker", @@ -6747,12 +6626,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-modal-datetime-picker", "npm": { - "downloads": 1948908, - "weekDownloads": 360089, + "downloads": 1771049, + "weekDownloads": 412806, "size": 43913, "latestRelease": "18.0.0", "latestReleaseDate": "2024-08-22T15:03:44.414Z" @@ -6765,8 +6645,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, - "topicSearchString": "react-native react native date time picker android ios modal" + "popularity": 0.198, + "topicSearchString": "date time picker android ios modal" }, { "githubUrl": "https://github.com/jkomyno/react-native-universal-picker", @@ -6789,7 +6669,7 @@ "pushedAt": "2018-03-29T09:07:52Z", "forks": 1, "issues": 3, - "subscribers": 2, + "subscribers": 1, "stars": 10, "dependencies": 0 }, @@ -6798,7 +6678,6 @@ "isPrivate": false, "description": "Cross platform component that uses React Native's Picker on Android and ActionSheetIOS on iOS.", "topics": [ - "react-native", "picker", "select", "dropdown", @@ -6814,12 +6693,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-universal-picker", "npm": { - "downloads": 14, - "weekDownloads": 1, + "downloads": 36, + "weekDownloads": 12, "latestRelease": "1.1.0", "latestReleaseDate": "2017-09-11T09:21:41.128Z" }, @@ -6828,8 +6708,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.683, - "topicSearchString": "react-native picker select dropdown ui" + "popularity": -1.45, + "topicSearchString": "picker select dropdown ui" }, { "githubUrl": "https://github.com/magicismight/react-native-root-siblings", @@ -6854,7 +6734,7 @@ "forks": 127, "issues": 15, "subscribers": 6, - "stars": 730, + "stars": 731, "dependencies": 0 }, "name": "react-native-root-siblings", @@ -6862,8 +6742,7 @@ "isPrivate": false, "description": "A sibling elements manager.", "topics": [ - "react-component", - "react-native", + "component", "modal", "ios", "android" @@ -6878,12 +6757,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-root-siblings", "npm": { - "downloads": 337943, - "weekDownloads": 53944, + "downloads": 288206, + "weekDownloads": 67816, "size": 28284, "latestRelease": "5.0.1", "latestReleaseDate": "2023-10-06T15:36:20.865Z" @@ -6895,8 +6775,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.136, - "topicSearchString": "react-component react-native modal ios android" + "popularity": 0.2, + "topicSearchString": "component modal ios android" }, { "githubUrl": "https://github.com/PeelTechnologies/react-native-tcp", @@ -6919,7 +6799,7 @@ "forks": 108, "issues": 47, "subscribers": 18, - "stars": 286, + "stars": 287, "dependencies": 6 }, "name": "react-native-tcp", @@ -6927,9 +6807,8 @@ "isPrivate": false, "description": "node's net api in react-native", "topics": [ - "react-component", + "component", "reactnative", - "react-native", "net", "tcp", "sockets", @@ -6946,13 +6825,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tcp", "npm": { - "downloads": 19166, - "weekDownloads": 3787, + "downloads": 18507, + "weekDownloads": 3988, "size": 368274, "latestRelease": "4.0.0", "latestReleaseDate": "2020-04-04T19:23:20.484Z" @@ -6963,8 +6843,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, - "topicSearchString": "react-component reactnative react-native net tcp sockets ios android" + "popularity": -0.567, + "topicSearchString": "component reactnative net tcp sockets ios android" }, { "githubUrl": "https://github.com/TheWidlarzGroup/react-native-video", @@ -6980,6 +6860,7 @@ "visionos": true, "tvos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/TheWidlarzGroup/react-native-video", @@ -6991,13 +6872,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-13T11:13:04Z", + "updatedAt": "2025-10-06T11:32:39Z", "createdAt": "2015-03-31T05:08:38Z", - "pushedAt": "2025-09-13T11:13:04Z", - "forks": 2652, - "issues": 176, - "subscribers": 107, - "stars": 7521, + "pushedAt": "2025-10-06T11:32:39Z", + "forks": 2660, + "issues": 174, + "subscribers": 106, + "stars": 7558, "dependencies": 0 }, "name": "react-native-video", @@ -7015,26 +6896,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-video", "npm": { - "downloads": 1370379, - "weekDownloads": 220923, - "size": 913739, - "latestRelease": "6.16.1", - "latestReleaseDate": "2025-07-08T14:11:59.214Z" + "downloads": 1312129, + "weekDownloads": 312732, + "size": 917213, + "latestRelease": "6.17.0", + "latestReleaseDate": "2025-10-06T11:32:36.776Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.137, + "popularity": 0.203, "topicSearchString": "" }, { @@ -7046,6 +6927,7 @@ "ios": true, "android": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/react-native-share/react-native-share", @@ -7060,10 +6942,10 @@ "updatedAt": "2025-08-06T19:20:44Z", "createdAt": "2015-09-30T02:27:34Z", "pushedAt": "2025-08-06T19:20:44Z", - "forks": 916, - "issues": 16, - "subscribers": 60, - "stars": 3820, + "forks": 918, + "issues": 12, + "subscribers": 59, + "stars": 3831, "dependencies": 0 }, "name": "react-native-share", @@ -7071,12 +6953,10 @@ "isPrivate": false, "description": "Social share, sending simple data to other apps.", "topics": [ - "react-native", "android", "ios", "windows", "bridge", - "react", "share", "intent", "uwp" @@ -7091,25 +6971,26 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-share", "npm": { - "downloads": 1570348, - "weekDownloads": 254795, + "downloads": 1564668, + "weekDownloads": 365961, "size": 338218, "latestRelease": "12.2.0", "latestReleaseDate": "2025-08-06T19:20:56.149Z" }, - "score": 92, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.138, - "topicSearchString": "react-native android ios windows bridge react share intent uwp" + "popularity": 0.199, + "topicSearchString": "android ios windows bridge share intent uwp" }, { "githubUrl": "https://github.com/aakashns/react-native-dialogs", @@ -7139,9 +7020,8 @@ "isPrivate": false, "description": "React Native wrappers for https://github.com/afollestad/material-dialogs", "topics": [ - "react-native", "android", - "react-component", + "component", "mobile-development", "cross-platform", "dialog-box" @@ -7156,12 +7036,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-dialogs", "npm": { - "downloads": 10613, - "weekDownloads": 1748, + "downloads": 9656, + "weekDownloads": 2379, "size": 151866, "latestRelease": "1.1.2", "latestReleaseDate": "2023-12-13T09:30:36.724Z" @@ -7172,8 +7053,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.14, - "topicSearchString": "react-native android react-component mobile-development cross-platform dialog-box" + "popularity": 0.209, + "topicSearchString": "android component mobile-development cross-platform dialog-box" }, { "githubUrl": "https://github.com/oblador/react-native-keychain", @@ -7200,9 +7081,9 @@ "createdAt": "2015-05-20T15:33:48Z", "pushedAt": "2025-08-27T17:12:56Z", "forks": 472, - "issues": 149, - "subscribers": 40, - "stars": 3396, + "issues": 152, + "subscribers": 38, + "stars": 3403, "dependencies": 0 }, "name": "react-native-keychain", @@ -7210,10 +7091,7 @@ "isPrivate": false, "description": ":key: Keychain Access for React Native", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -7230,26 +7108,27 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-keychain", "npm": { - "downloads": 1070703, - "weekDownloads": 163152, + "downloads": 1163282, + "weekDownloads": 282033, "size": 230397, "latestRelease": "10.0.0", "latestReleaseDate": "2025-03-23T19:16:49.565Z" }, - "score": 89, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated" + "Lots of open issues" ], - "popularity": 0.13, - "topicSearchString": "react-native react-component component react mobile ios android keychain keychain-access" + "popularity": 0.206, + "topicSearchString": "component mobile ios android keychain keychain-access" }, { "githubUrl": "https://github.com/doefler/react-native-social-share", @@ -7280,14 +7159,11 @@ "isPrivate": false, "description": "Use the iOS and Android native Twitter and Facebook share popup with React Native https://github.com/doefler/react-native-social-share", "topics": [ - "react", "twitter", "facebook", "slcomposeviewcontroller", "rctbridgemodule", "social", - "react-native", - "react-component", "component", "mobile", "ui", @@ -7304,12 +7180,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-social-share", "npm": { - "downloads": 530, - "weekDownloads": 112, + "downloads": 1307, + "weekDownloads": 252, "size": 8319613, "latestRelease": "1.6.5", "latestReleaseDate": "2019-08-28T08:25:10.360Z" @@ -7320,8 +7197,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.319, - "topicSearchString": "react twitter facebook slcomposeviewcontroller rctbridgemodule social react-native react-component component mobile ui popup share-popups" + "popularity": -0.586, + "topicSearchString": "twitter facebook slcomposeviewcontroller rctbridgemodule social component mobile ui popup share-popups" }, { "githubUrl": "https://github.com/innoveit/react-native-ble-manager", @@ -7329,6 +7206,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", @@ -7340,13 +7218,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T16:07:10Z", + "updatedAt": "2025-10-03T08:28:24Z", "createdAt": "2016-05-20T09:20:14Z", - "pushedAt": "2025-09-08T16:07:10Z", - "forks": 742, - "issues": 13, - "subscribers": 48, - "stars": 2249, + "pushedAt": "2025-10-03T08:28:24Z", + "forks": 747, + "issues": 15, + "subscribers": 47, + "stars": 2259, "dependencies": 0 }, "name": "react-native-ble-manager", @@ -7354,7 +7232,6 @@ "isPrivate": false, "description": "React Native BLE communication module", "topics": [ - "react-native", "android", "ios", "ble", @@ -7372,15 +7249,17 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-ble-manager", "npm": { - "downloads": 188473, - "weekDownloads": 30712, - "size": 440220, - "latestRelease": "12.2.0", - "latestReleaseDate": "2025-09-04T10:38:54.321Z" + "downloads": 178813, + "weekDownloads": 42854, + "size": 440962, + "latestRelease": "12.2.2", + "latestReleaseDate": "2025-10-03T08:29:02.888Z" }, "score": 76, "matchingScoreModifiers": [ @@ -7388,8 +7267,8 @@ "Known", "Recently updated" ], - "popularity": 0.139, - "topicSearchString": "react-native android ios ble bluetooth low-energy bluetooth-low-energy" + "popularity": 0.204, + "topicSearchString": "android ios ble bluetooth low-energy bluetooth-low-energy" }, { "githubUrl": "https://github.com/chirag04/react-native-mail", @@ -7411,8 +7290,8 @@ "pushedAt": "2021-11-22T20:20:51Z", "forks": 205, "issues": 68, - "subscribers": 11, - "stars": 446, + "subscribers": 10, + "stars": 448, "dependencies": 0 }, "name": "react-native-mail", @@ -7420,9 +7299,7 @@ "isPrivate": false, "description": "A wrapper on top of MFMailComposeViewController from iOS and Mail Intent on android", "topics": [ - "react", - "react-native", - "react-component", + "component", "ios", "android", "email", @@ -7438,13 +7315,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-mail", "npm": { - "downloads": 47437, - "weekDownloads": 8519, + "downloads": 43970, + "weekDownloads": 9781, "size": 228779, "latestRelease": "6.1.1", "latestReleaseDate": "2021-08-16T15:26:12.910Z" @@ -7456,8 +7334,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, - "topicSearchString": "react react-native react-component ios android email mfmailcomposeviewcontroller" + "popularity": -0.561, + "topicSearchString": "component ios android email mfmailcomposeviewcontroller" }, { "githubUrl": "https://github.com/cnjon/react-native-pdf-view", @@ -7480,7 +7358,7 @@ "forks": 144, "issues": 53, "subscribers": 13, - "stars": 405, + "stars": 406, "dependencies": 1 }, "name": "react-native-pdf-view", @@ -7488,8 +7366,7 @@ "isPrivate": false, "description": "React Native PDF View", "topics": [ - "react-component", - "react-native", + "component", "android", "ios", "pdf", @@ -7505,13 +7382,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-pdf-view", "npm": { - "downloads": 112, - "weekDownloads": 21, + "downloads": 209, + "weekDownloads": 33, "latestRelease": "0.3.2", "latestReleaseDate": "2016-05-19T04:41:42.297Z" }, @@ -7521,8 +7399,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.338, - "topicSearchString": "react-component react-native android ios pdf view" + "popularity": -1.365, + "topicSearchString": "component android ios pdf view" }, { "githubUrl": "https://github.com/kayla-tech/react-native-card-io", @@ -7554,13 +7432,11 @@ "isPrivate": false, "description": "card.io component for React Native", "topics": [ - "react-component", - "react-native", + "component", "card.io", "credit", "card", "scanner", - "native", "ios", "android" ], @@ -7574,12 +7450,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-card-io", "npm": { - "downloads": 457, - "weekDownloads": 63, + "downloads": 543, + "weekDownloads": 88, "latestRelease": "1.0.5", "latestReleaseDate": "2016-05-16T04:21:45.691Z" }, @@ -7589,8 +7466,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.382, - "topicSearchString": "react-component react-native card.io credit card scanner native ios android" + "popularity": -1.361, + "topicSearchString": "component card.io credit card scanner ios android" }, { "githubUrl": "https://github.com/Kerumen/react-native-awesome-card-io", @@ -7611,10 +7488,10 @@ "updatedAt": "2022-06-21T16:13:03Z", "createdAt": "2016-08-30T08:46:53Z", "pushedAt": "2022-06-21T16:13:03Z", - "forks": 116, + "forks": 117, "issues": 21, "subscribers": 8, - "stars": 458, + "stars": 460, "dependencies": 1 }, "name": "react-native-awesome-card-io", @@ -7622,14 +7499,12 @@ "isPrivate": false, "description": "A complete and cross-platform card.io component for React Native (iOS and Android).", "topics": [ - "react-native", - "react-component", + "component", "card.io", "credit-card", "scan", "android", "ios", - "react", "card-scanning", "card-io" ], @@ -7643,12 +7518,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-awesome-card-io", "npm": { - "downloads": 9490, - "weekDownloads": 1460, + "downloads": 8980, + "weekDownloads": 3128, "size": 77005, "latestRelease": "0.9.1", "latestReleaseDate": "2022-04-07T12:53:39.030Z" @@ -7659,8 +7535,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, - "topicSearchString": "react-native react-component card.io credit-card scan android ios react card-scanning card-io" + "popularity": -0.454, + "topicSearchString": "component card.io credit-card scan android ios card-scanning card-io" }, { "githubUrl": "https://github.com/tolu360/react-native-google-places", @@ -7684,7 +7560,7 @@ "forks": 253, "issues": 48, "subscribers": 15, - "stars": 570, + "stars": 571, "dependencies": 0 }, "name": "react-native-google-places", @@ -7692,9 +7568,7 @@ "isPrivate": false, "description": "iOS/Android Google Places Widgets (Autocomplete Modals) and API Services for React Native Apps", "topics": [ - "react", - "react-native", - "react-component", + "component", "map", "places", "google-places", @@ -7716,12 +7590,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-google-places", "npm": { - "downloads": 1920, - "weekDownloads": 297, + "downloads": 2053, + "weekDownloads": 433, "size": 1365307, "latestRelease": "3.1.2", "latestReleaseDate": "2019-08-06T14:05:27.539Z" @@ -7733,8 +7608,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.618, - "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" + "popularity": -0.571, + "topicSearchString": "component map places google-places google-places-api autocomplete ios android google-place-picker google-place-api google-place-autocomplete" }, { "githubUrl": "https://github.com/expo/ex-navigation", @@ -7759,7 +7634,7 @@ "pushedAt": "2019-02-14T20:11:02Z", "forks": 191, "issues": 204, - "subscribers": 27, + "subscribers": 26, "stars": 994, "dependencies": 24 }, @@ -7768,10 +7643,8 @@ "isPrivate": false, "description": "Route-centric navigation for React Native", "topics": [ - "react-native", "navigation", - "expo", - "react" + "expo" ], "license": { "name": "MIT License", @@ -7783,11 +7656,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 140, - "weekDownloads": 21, + "downloads": 295, + "weekDownloads": 35, "size": 298312, "latestRelease": "4.3.0", "latestReleaseDate": "2019-01-17T19:19:03.843Z" @@ -7800,8 +7674,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.369, - "topicSearchString": "react-native navigation expo react" + "popularity": -1.399, + "topicSearchString": "navigation expo" }, { "githubUrl": "https://github.com/benhurott/react-native-masked-text", @@ -7822,7 +7696,7 @@ "updatedAt": "2020-04-03T23:39:25Z", "createdAt": "2016-10-04T17:41:20Z", "pushedAt": "2020-04-03T23:39:25Z", - "forks": 228, + "forks": 227, "issues": 76, "subscribers": 23, "stars": 1608, @@ -7836,7 +7710,6 @@ "mask", "text", "textinput", - "react-native", "custom", "money", "input" @@ -7851,13 +7724,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-masked-text", "npm": { - "downloads": 243951, - "weekDownloads": 41205, + "downloads": 222691, + "weekDownloads": 53143, "size": 544679, "latestRelease": "1.13.0", "latestReleaseDate": "2019-08-13T21:06:53.772Z" @@ -7870,8 +7744,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, - "topicSearchString": "mask text textinput react-native custom money input" + "popularity": -0.547, + "topicSearchString": "mask text textinput custom money input" }, { "githubUrl": "https://github.com/timomeh/react-native-material-bottom-navigation", @@ -7895,7 +7769,7 @@ "forks": 120, "issues": 5, "subscribers": 13, - "stars": 717, + "stars": 716, "dependencies": 1 }, "name": "react-native-material-bottom-navigation", @@ -7903,15 +7777,13 @@ "isPrivate": false, "description": "💅🔧👌 a beautiful, customizable and easy-to-use material design bottom navigation for react-native", "topics": [ - "react-native", "material", "bottomnavigation", "bottom-navigation", "ios", "android", - "react-component", - "react-navigation", "component", + "navigation", "material-design" ], "license": { @@ -7924,13 +7796,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-bottom-navigation", "npm": { - "downloads": 694, - "weekDownloads": 132, + "downloads": 701, + "weekDownloads": 126, "size": 75227, "latestRelease": "1.0.5", "latestReleaseDate": "2019-12-10T11:49:15.595Z" @@ -7942,8 +7815,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.338, - "topicSearchString": "react-native material bottomnavigation bottom-navigation ios android react-component react-navigation component material-design" + "popularity": -1.346, + "topicSearchString": "material bottomnavigation bottom-navigation ios android component navigation material-design" }, { "githubUrl": "https://github.com/wix/react-native-autogrow-textinput", @@ -7965,7 +7838,7 @@ "pushedAt": "2021-05-08T11:28:39Z", "forks": 111, "issues": 28, - "subscribers": 207, + "subscribers": 205, "stars": 546, "dependencies": 0 }, @@ -7985,13 +7858,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-autogrow-textinput", "npm": { - "downloads": 9541, - "weekDownloads": 1622, + "downloads": 11338, + "weekDownloads": 3152, "size": 157435, "latestRelease": "5.4.0", "latestReleaseDate": "2020-04-23T14:24:34.669Z" @@ -8003,7 +7877,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, + "popularity": -0.514, "topicSearchString": "" }, { @@ -8038,8 +7912,6 @@ "cameraroll", "ios", "picker", - "react-component", - "react-native", "component", "camera-roll" ], @@ -8053,13 +7925,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-camera-roll-picker", "npm": { - "downloads": 2915, - "weekDownloads": 297, + "downloads": 3730, + "weekDownloads": 524, "size": 16379, "latestRelease": "2.0.1", "latestReleaseDate": "2023-03-08T00:48:59.307Z" @@ -8070,8 +7943,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.663, - "topicSearchString": "cameraroll ios picker react-component react-native component camera-roll" + "popularity": -0.631, + "topicSearchString": "cameraroll ios picker component camera-roll" }, { "githubUrl": "https://github.com/mosesoak/react-native-conductor", @@ -8104,7 +7977,6 @@ "isPrivate": false, "description": "Orchestrate animations across components in one place", "topics": [ - "react-native", "animation", "animated", "tween", @@ -8121,12 +7993,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-conductor", "npm": { - "downloads": 11, - "weekDownloads": 0, + "downloads": 51, + "weekDownloads": 1, "latestRelease": "1.0.11", "latestReleaseDate": "2017-04-03T22:57:08.956Z" }, @@ -8136,8 +8009,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native animation animated tween conductor utility" + "popularity": -1.483, + "topicSearchString": "animation animated tween conductor utility" }, { "githubUrl": "https://github.com/oblador/react-native-image-progress", @@ -8160,8 +8033,8 @@ "pushedAt": "2022-01-02T13:24:08Z", "forks": 173, "issues": 21, - "subscribers": 30, - "stars": 1726, + "subscribers": 29, + "stars": 1725, "dependencies": 1 }, "name": "react-native-image-progress", @@ -8169,10 +8042,7 @@ "isPrivate": false, "description": "Progress indicator for networked images in React Native", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "ui", @@ -8195,13 +8065,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-image-progress", "npm": { - "downloads": 56835, - "weekDownloads": 10454, + "downloads": 50978, + "weekDownloads": 10841, "size": 13081, "latestRelease": "1.2.0", "latestReleaseDate": "2022-01-02T13:25:29.043Z" @@ -8213,8 +8084,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, - "topicSearchString": "react-native react-component component react mobile ios ui image progress bar progressbar spinner activityindicator loading indicator" + "popularity": -0.569, + "topicSearchString": "component mobile ios ui image progress bar progressbar spinner activityindicator loading indicator" }, { "githubUrl": "https://github.com/fuyaode/react-native-app-intro", @@ -8240,7 +8111,7 @@ "forks": 425, "issues": 59, "subscribers": 54, - "stars": 3257, + "stars": 3255, "dependencies": 2 }, "name": "react-native-app-intro", @@ -8254,8 +8125,7 @@ "intro", "ios", "android", - "react-component", - "react-native", + "component", "parallax", "introduction" ], @@ -8269,24 +8139,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-app-intro", "npm": { - "downloads": 439, - "weekDownloads": 63, + "downloads": 390, + "weekDownloads": 55, "latestRelease": "1.1.5", "latestReleaseDate": "2016-10-12T01:41:43.405Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1.378, - "topicSearchString": "swiper producttour app intro ios android react-component react-native parallax introduction" + "popularity": -1.379, + "topicSearchString": "swiper producttour app intro ios android component parallax introduction" }, { "githubUrl": "https://github.com/oblador/react-native-lightbox", @@ -8311,10 +8181,10 @@ "updatedAt": "2019-12-15T11:53:26Z", "createdAt": "2015-08-04T00:33:28Z", "pushedAt": "2019-12-15T11:53:26Z", - "forks": 430, + "forks": 429, "issues": 53, - "subscribers": 34, - "stars": 2813, + "subscribers": 33, + "stars": 2814, "dependencies": 1 }, "name": "react-native-lightbox", @@ -8322,10 +8192,7 @@ "isPrivate": false, "description": "Images etc in Full Screen Lightbox Popovers for React Native", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -8344,12 +8211,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-lightbox", "npm": { - "downloads": 214502, - "weekDownloads": 33433, + "downloads": 203109, + "weekDownloads": 49044, "size": 14958, "latestRelease": "0.8.1", "latestReleaseDate": "2019-12-15T11:54:05.434Z" @@ -8361,8 +8229,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.618, - "topicSearchString": "react-native react-component component react mobile ios android ui lightbox gallery image" + "popularity": -0.545, + "topicSearchString": "component mobile ios android ui lightbox gallery image" }, { "githubUrl": "https://github.com/halilb/react-native-textinput-effects", @@ -8388,8 +8256,8 @@ "pushedAt": "2024-04-08T12:39:24Z", "forks": 287, "issues": 15, - "subscribers": 34, - "stars": 2995, + "subscribers": 33, + "stars": 2994, "dependencies": 1 }, "name": "react-native-textinput-effects", @@ -8397,9 +8265,7 @@ "isPrivate": false, "description": "Text inputs with custom label and icon animations for iOS and android. Built with react native and inspired by Codrops.", "topics": [ - "react", - "react-component", - "react-native", + "component", "text-input", "textinput", "textfield", @@ -8418,12 +8284,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-textinput-effects", "npm": { - "downloads": 5710, - "weekDownloads": 1193, + "downloads": 4087, + "weekDownloads": 980, "size": 62199, "latestRelease": "0.6.3", "latestReleaseDate": "2022-08-08T19:55:29.844Z" @@ -8435,8 +8302,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.178, - "topicSearchString": "react react-component react-native text-input textinput textfield animation animated ios android" + "popularity": 0.204, + "topicSearchString": "component text-input textinput textfield animation animated ios android" }, { "githubUrl": "https://github.com/deanmcpherson/react-native-sortable-listview", @@ -8468,10 +8335,9 @@ "isPrivate": false, "description": "Drag drop capable wrapper of ListView for React Native", "topics": [ - "react-component", + "component", "ios", "android", - "react-native", "drag", "drop", "touch", @@ -8489,13 +8355,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sortable-listview", "npm": { - "downloads": 15211, - "weekDownloads": 2508, + "downloads": 11564, + "weekDownloads": 1973, "size": 49743, "latestRelease": "0.2.9", "latestReleaseDate": "2019-07-28T21:38:30.309Z" @@ -8507,8 +8374,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.61, - "topicSearchString": "react-component ios android react-native drag drop touch listview list sort" + "popularity": -0.605, + "topicSearchString": "component ios android drag drop touch listview list sort" }, { "githubUrl": "https://github.com/jmurzy/react-native-foldview", @@ -8531,8 +8398,8 @@ "pushedAt": "2018-07-28T17:07:04Z", "forks": 170, "issues": 5, - "subscribers": 39, - "stars": 1967, + "subscribers": 38, + "stars": 1968, "dependencies": 3 }, "name": "react-native-foldview", @@ -8540,9 +8407,6 @@ "isPrivate": false, "description": "FoldView implemented in JavaScript ⛱", "topics": [ - "react", - "react-native", - "native", "ios", "andorid", "foldingcell", @@ -8560,12 +8424,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-foldview", "npm": { - "downloads": 21, - "weekDownloads": 11, + "downloads": 70, + "weekDownloads": 16, "size": 21848, "latestRelease": "1.2.1", "latestReleaseDate": "2018-07-28T17:09:51.988Z" @@ -8577,8 +8442,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.95, - "topicSearchString": "react react-native native ios andorid foldingcell folding cell view" + "popularity": -1.3, + "topicSearchString": "ios andorid foldingcell folding cell view" }, { "githubUrl": "https://github.com/oblador/react-native-progress", @@ -8599,10 +8464,10 @@ "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": 40, - "stars": 3664, + "subscribers": 39, + "stars": 3669, "dependencies": 1 }, "name": "react-native-progress", @@ -8610,10 +8475,7 @@ "isPrivate": false, "description": "Progress indicators and spinners for React Native", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "ui", @@ -8637,12 +8499,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-progress", "npm": { - "downloads": 826077, - "weekDownloads": 122766, + "downloads": 884815, + "weekDownloads": 216202, "size": 46096, "latestRelease": "5.0.1", "latestReleaseDate": "2023-10-26T14:05:23.613Z" @@ -8656,8 +8519,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.126, - "topicSearchString": "react-native react-component component react mobile ios ui progress progressindicator circle pie bar progressbar indeterminate spinner animation" + "popularity": 0.208, + "topicSearchString": "component mobile ios ui progress progressindicator circle pie bar progressbar indeterminate spinner animation" }, { "githubUrl": "https://github.com/zbtang/React-Native-ViewPager", @@ -8680,7 +8543,7 @@ "updatedAt": "2018-01-04T11:34:41Z", "createdAt": "2016-03-28T09:37:19Z", "pushedAt": "2018-01-04T11:34:41Z", - "forks": 244, + "forks": 243, "issues": 77, "subscribers": 20, "stars": 950, @@ -8692,8 +8555,6 @@ "description": "ViewPager and Indicator component for react-native on both android and ios. ", "topics": [ "component", - "react-component", - "react-native", "ios", "android", "viewpager", @@ -8708,6 +8569,7 @@ "tab-view" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -8716,11 +8578,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5625, - "weekDownloads": 738, + "downloads": 5048, + "weekDownloads": 1345, "latestRelease": "1.2.9", "latestReleaseDate": "2017-12-18T02:50:06.405Z" }, @@ -8732,8 +8595,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.638, - "topicSearchString": "component react-component react-native ios android viewpager pager pageview page tab-navigator scrollable tab navigator tab-bar tab-view" + "popularity": -0.523, + "topicSearchString": "component ios android viewpager pager pageview page tab-navigator scrollable tab navigator tab-bar tab-view" }, { "githubUrl": "https://github.com/jaysoo/react-native-menu/tree/master/packages/react-native-menu", @@ -8756,8 +8619,8 @@ "pushedAt": "2017-08-30T03:46:56Z", "forks": 130, "issues": 1, - "subscribers": 12, - "stars": 398, + "subscribers": 11, + "stars": 400, "dependencies": 3 }, "name": "react-native-menu", @@ -8765,16 +8628,15 @@ "isPrivate": false, "description": "A flexible dropdown menu component for Android and iOS that is similar to Android's Spinner.", "topics": [ - "react-native", - "react", "menu", "spinner", "dropdown", - "react-component", + "component", "ios", "android" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -8783,13 +8645,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-menu", "npm": { - "downloads": 19417, - "weekDownloads": 2425, + "downloads": 15682, + "weekDownloads": 2696, "latestRelease": "0.23.0", "latestReleaseDate": "2017-08-30T03:48:31.295Z" }, @@ -8799,8 +8662,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.644, - "topicSearchString": "react-native react menu spinner dropdown react-component ios android" + "popularity": -0.604, + "topicSearchString": "menu spinner dropdown component ios android" }, { "githubUrl": "https://github.com/jacklam718/react-native-button-component", @@ -8823,7 +8686,7 @@ "pushedAt": "2019-07-14T15:20:30Z", "forks": 49, "issues": 11, - "subscribers": 5, + "subscribers": 4, "stars": 534, "dependencies": 5 }, @@ -8832,15 +8695,11 @@ "isPrivate": false, "description": "A Beautiful, Customizable React Native Button component for iOS & Android", "topics": [ - "react-button", - "react-native", - "button-component", "button", + "button-component", "component", - "react-component", "ios", "android", - "react", "javascript" ], "license": { @@ -8853,13 +8712,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-button-component", "npm": { - "downloads": 93, - "weekDownloads": 7, + "downloads": 314, + "weekDownloads": 26, "size": 1663330, "latestRelease": "0.2.28", "latestReleaseDate": "2018-03-18T14:56:56.039Z" @@ -8870,8 +8730,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.433, - "topicSearchString": "react-button react-native button-component button component react-component ios android react javascript" + "popularity": -1.429, + "topicSearchString": "button button-component component ios android javascript" }, { "githubUrl": "https://github.com/Thomas101/react-native-fence-html", @@ -8894,7 +8754,7 @@ "pushedAt": "2016-07-04T18:18:08Z", "forks": 41, "issues": 12, - "subscribers": 7, + "subscribers": 6, "stars": 177, "dependencies": 5 }, @@ -8903,8 +8763,6 @@ "isPrivate": false, "description": "React Native component that renders HTML as native views", "topics": [ - "react-native", - "react-component", "component", "html" ], @@ -8918,12 +8776,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-fence-html", "npm": { - "downloads": 20, - "weekDownloads": 2, + "downloads": 43, + "weekDownloads": 0, "latestRelease": "1.0.6", "latestReleaseDate": "2016-07-04T18:18:18.953Z" }, @@ -8933,8 +8792,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, - "topicSearchString": "react-native react-component component html" + "popularity": -1, + "topicSearchString": "component html" }, { "githubUrl": "https://github.com/joshswan/react-native-autolink", @@ -8959,7 +8818,7 @@ "createdAt": "2016-01-28T07:47:29Z", "pushedAt": "2023-10-07T18:16:55Z", "forks": 78, - "issues": 6, + "issues": 7, "subscribers": 6, "stars": 660, "dependencies": 1 @@ -8969,7 +8828,6 @@ "isPrivate": false, "description": "Automatic linking of URLs, phone numbers, emails, handles, and even custom patterns in text for React Native", "topics": [ - "react-native", "autolinking", "autolink", "linking", @@ -8986,25 +8844,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-autolink", "npm": { - "downloads": 116383, - "weekDownloads": 21674, + "downloads": 91658, + "weekDownloads": 19410, "size": 41827, "latestRelease": "4.2.0", "latestReleaseDate": "2023-10-07T18:15:27.220Z" }, - "score": 57, + "score": 41, "matchingScoreModifiers": [ - "Popular", "Known", "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, - "topicSearchString": "react-native autolinking autolink linking autolinker links" + "popularity": -0.57, + "topicSearchString": "autolinking autolink linking autolinker links" }, { "githubUrl": "https://github.com/obipawan/react-native-hyperlink", @@ -9031,8 +8890,8 @@ "pushedAt": "2022-08-22T15:31:55Z", "forks": 77, "issues": 5, - "subscribers": 4, - "stars": 809, + "subscribers": 3, + "stars": 810, "dependencies": 2 }, "name": "react-native-hyperlink", @@ -9041,8 +8900,6 @@ "registry": "https://registry.npmjs.org/", "description": "A component for react-native that makes urls, fuzzy links, emails etc clickable", "topics": [ - "react", - "react-native", "text", "link", "hyperlink", @@ -9061,13 +8918,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-hyperlink", "npm": { - "downloads": 204043, - "weekDownloads": 33360, + "downloads": 191112, + "weekDownloads": 42524, "size": 54992, "latestRelease": "0.0.22", "latestReleaseDate": "2022-08-22T15:31:49.781Z" @@ -9079,8 +8937,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.611, - "topicSearchString": "react react-native text link hyperlink autolink url web fuzzy-links" + "popularity": -0.561, + "topicSearchString": "text link hyperlink autolink url web fuzzy-links" }, { "githubUrl": "https://github.com/crazycodeboy/react-native-check-box", @@ -9105,9 +8963,9 @@ "updatedAt": "2018-12-13T13:30:51Z", "createdAt": "2016-09-03T09:01:24Z", "pushedAt": "2018-12-13T13:30:51Z", - "forks": 172, + "forks": 171, "issues": 47, - "subscribers": 11, + "subscribers": 10, "stars": 524, "dependencies": 1 }, @@ -9116,13 +8974,11 @@ "isPrivate": false, "description": "Checkbox component for react native, it works on iOS and Android.", "topics": [ - "react-native", "component", "checkbox", "check-box", "check", "box", - "react-component", "ios", "android", "checkbox-component" @@ -9137,12 +8993,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-check-box", "npm": { - "downloads": 38727, - "weekDownloads": 6596, + "downloads": 42255, + "weekDownloads": 9451, "size": 12274, "latestRelease": "2.1.7", "latestReleaseDate": "2018-12-13T13:30:40.085Z" @@ -9154,8 +9011,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, - "topicSearchString": "react-native component checkbox check-box check box react-component ios android checkbox-component" + "popularity": -0.56, + "topicSearchString": "component checkbox check-box check box ios android checkbox-component" }, { "githubUrl": "https://github.com/expo/react-native-loading-container", @@ -9179,7 +9036,7 @@ "pushedAt": "2017-05-03T18:26:58Z", "forks": 17, "issues": 3, - "subscribers": 4, + "subscribers": 3, "stars": 157, "dependencies": 4 }, @@ -9198,12 +9055,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-loading-container", "npm": { - "downloads": 40, - "weekDownloads": 4, + "downloads": 99, + "weekDownloads": 10, "latestRelease": "0.5.0", "latestReleaseDate": "2017-05-03T18:27:25.869Z" }, @@ -9212,7 +9070,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.411, + "popularity": -1.413, "topicSearchString": "" }, { @@ -9239,7 +9097,7 @@ "forks": 259, "issues": 59, "subscribers": 30, - "stars": 1132, + "stars": 1131, "dependencies": 2 }, "name": "react-native-swipe-cards", @@ -9247,7 +9105,6 @@ "isPrivate": false, "description": "Tinder-like swipe cards for your React Native app", "topics": [ - "react-native", "tinder", "cards", "swipe" @@ -9262,11 +9119,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 554, - "weekDownloads": 52, + "downloads": 760, + "weekDownloads": 117, "latestRelease": "0.1.1", "latestReleaseDate": "2017-10-21T12:14:51.256Z" }, @@ -9277,8 +9135,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.42, - "topicSearchString": "react-native tinder cards swipe" + "popularity": -1.369, + "topicSearchString": "tinder cards swipe" }, { "githubUrl": "https://github.com/bartgryszko/react-native-circular-progress", @@ -9299,10 +9157,10 @@ "updatedAt": "2025-02-21T08:34:18Z", "createdAt": "2015-10-27T15:09:33Z", "pushedAt": "2025-02-21T08:34:18Z", - "forks": 384, + "forks": 385, "issues": 58, "subscribers": 21, - "stars": 2228, + "stars": 2236, "dependencies": 1 }, "name": "react-native-circular-progress", @@ -9310,12 +9168,10 @@ "isPrivate": false, "description": "React Native component for creating animated, circular progress with ReactART", "topics": [ - "react", - "react-native", - "react-component", + "component", "progress", "chart", - "react-svg", + "svg", "fill", "circle", "animation" @@ -9330,12 +9186,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-circular-progress", "npm": { - "downloads": 333396, - "weekDownloads": 54920, + "downloads": 327363, + "weekDownloads": 77238, "size": 20970, "latestRelease": "1.4.1", "latestReleaseDate": "2024-10-26T09:44:40.355Z" @@ -9347,8 +9204,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.14, - "topicSearchString": "react react-native react-component progress chart react-svg fill circle animation" + "popularity": 0.201, + "topicSearchString": "component progress chart svg fill circle animation" }, { "githubUrl": "https://github.com/rnc-archive/react-native-side-menu", @@ -9372,8 +9229,8 @@ "pushedAt": "2020-05-28T10:25:37Z", "forks": 394, "issues": 61, - "subscribers": 39, - "stars": 2203, + "subscribers": 38, + "stars": 2204, "dependencies": 1 }, "name": "react-native-side-menu", @@ -9381,11 +9238,9 @@ "isPrivate": false, "description": "Side menu component for React Native", "topics": [ - "react-native", - "react-component", + "component", "ios", "sidebar", - "component", "javascript", "side-menu" ], @@ -9399,12 +9254,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-side-menu", "npm": { - "downloads": 22893, - "weekDownloads": 2893, + "downloads": 21288, + "weekDownloads": 3469, "latestRelease": "1.1.3", "latestReleaseDate": "2017-09-09T15:20:58.317Z" }, @@ -9415,8 +9271,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.643, - "topicSearchString": "react-native react-component ios sidebar component javascript side-menu" + "popularity": -0.611, + "topicSearchString": "component ios sidebar javascript side-menu" }, { "githubUrl": "https://github.com/leecade/react-native-swiper", @@ -9450,8 +9306,8 @@ "pushedAt": "2020-07-31T13:09:01Z", "forks": 2133, "issues": 683, - "subscribers": 146, - "stars": 10481, + "subscribers": 145, + "stars": 10487, "dependencies": 1 }, "name": "react-native-swiper", @@ -9459,11 +9315,9 @@ "isPrivate": false, "description": "The best Swiper component for React Native.", "topics": [ - "react-component", - "react-native", + "component", "ios", - "swipe", - "react" + "swipe" ], "license": { "key": "mit", @@ -9475,13 +9329,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-swiper", "npm": { - "downloads": 331520, - "weekDownloads": 54944, + "downloads": 261902, + "weekDownloads": 64024, "size": 66634, "latestRelease": "1.6.0", "latestReleaseDate": "2020-04-03T07:43:17.379Z" @@ -9495,8 +9350,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, - "topicSearchString": "react-component react-native ios swipe react" + "popularity": -0.542, + "topicSearchString": "component ios swipe" }, { "githubUrl": "https://github.com/skv-headless/react-native-scrollable-tab-view", @@ -9517,10 +9372,10 @@ "updatedAt": "2023-01-17T19:53:06Z", "createdAt": "2015-06-11T05:01:07Z", "pushedAt": "2023-01-17T19:53:06Z", - "forks": 2009, + "forks": 2004, "issues": 136, - "subscribers": 137, - "stars": 6940, + "subscribers": 136, + "stars": 6946, "dependencies": 5 }, "name": "react-native-scrollable-tab-view", @@ -9529,8 +9384,6 @@ "description": "Tabbed navigation that you can swipe between, each tab can have its own ScrollView and maintain its own scroll position between swipes. Pleasantly animated. Customizable tab bar", "topics": [ "component", - "react-component", - "react-native", "ios", "tab", "scrollable", @@ -9548,13 +9401,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-scrollable-tab-view", "npm": { - "downloads": 22517, - "weekDownloads": 3882, + "downloads": 24101, + "weekDownloads": 4933, "size": 86113, "latestRelease": "1.0.0", "latestReleaseDate": "2019-10-28T12:34:28.571Z" @@ -9568,8 +9422,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, - "topicSearchString": "component react-component react-native ios tab scrollable tabs swipe animated" + "popularity": -0.576, + "topicSearchString": "component ios tab scrollable tabs swipe animated" }, { "githubUrl": "https://github.com/aksonov/react-native-router-flux", @@ -9590,10 +9444,10 @@ "updatedAt": "2021-03-26T08:20:02Z", "createdAt": "2015-08-25T11:12:44Z", "pushedAt": "2021-03-26T08:20:02Z", - "forks": 2057, + "forks": 2055, "issues": 281, - "subscribers": 191, - "stars": 8955, + "subscribers": 190, + "stars": 8953, "dependencies": 11 }, "name": "react-native-router-flux", @@ -9611,13 +9465,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-router-flux", "npm": { - "downloads": 12063, - "weekDownloads": 1692, + "downloads": 11459, + "weekDownloads": 2087, "size": 1452326, "latestRelease": "4.3.1", "latestReleaseDate": "2021-03-26T08:20:25.578Z" @@ -9631,7 +9486,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.631, + "popularity": -0.595, "topicSearchString": "" }, { @@ -9662,10 +9517,10 @@ "updatedAt": "2024-12-18T12:38:54Z", "createdAt": "2016-04-15T11:37:23Z", "pushedAt": "2024-12-18T12:38:54Z", - "forks": 2321, - "issues": 281, - "subscribers": 265, - "stars": 20336, + "forks": 2330, + "issues": 283, + "subscribers": 264, + "stars": 20347, "dependencies": 35 }, "name": "native-base", @@ -9675,16 +9530,13 @@ "topics": [ "android", "ios", - "react", - "native", - "react-native", - "native-modules", - "react-component", + "modules", + "component", "navbar", "packager", "nativebase", "ui-components", - "native-platforms", + "platforms", "nextjs", "hacktoberfest" ], @@ -9698,11 +9550,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 279891, - "weekDownloads": 43971, + "downloads": 253859, + "weekDownloads": 54965, "size": 8633762, "latestRelease": "3.4.28", "latestReleaseDate": "2023-03-06T08:06:31.155Z" @@ -9716,8 +9569,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.134, - "topicSearchString": "android ios react native react-native native-modules react-component navbar packager nativebase ui-components native-platforms nextjs hacktoberfest" + "popularity": 0.184, + "topicSearchString": "android ios modules component navbar packager nativebase ui-components platforms nextjs hacktoberfest" }, { "githubUrl": "https://github.com/olivierlesnicki/react-native-switcher", @@ -9760,11 +9613,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-switcher", "npm": { - "downloads": 8, + "downloads": 13, "weekDownloads": 0, "latestRelease": "0.1.0", "latestReleaseDate": "2015-09-22T21:55:28.603Z" @@ -9800,9 +9654,9 @@ "updatedAt": "2020-09-16T16:57:24Z", "createdAt": "2015-05-28T03:00:42Z", "pushedAt": "2020-09-16T16:57:24Z", - "forks": 560, + "forks": 559, "issues": 93, - "subscribers": 48, + "subscribers": 47, "stars": 2614, "dependencies": 3 }, @@ -9811,8 +9665,7 @@ "isPrivate": false, "description": "iOS-style swipeout buttons behind component", "topics": [ - "react-native", - "react-component", + "component", "ios", "swipeout", "button", @@ -9829,12 +9682,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-swipeout", "npm": { - "downloads": 115844, - "weekDownloads": 19335, + "downloads": 118987, + "weekDownloads": 28113, "size": 114014, "latestRelease": "2.3.6", "latestReleaseDate": "2018-08-10T03:35:40.754Z" @@ -9847,8 +9701,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, - "topicSearchString": "react-native react-component ios swipeout button swipe ui" + "popularity": -0.549, + "topicSearchString": "component ios swipeout button swipe ui" }, { "githubUrl": "https://github.com/appintheair/react-native-looped-carousel", @@ -9871,8 +9725,8 @@ "pushedAt": "2018-11-29T07:34:25Z", "forks": 287, "issues": 52, - "subscribers": 29, - "stars": 1488, + "subscribers": 28, + "stars": 1487, "dependencies": 2 }, "name": "react-native-looped-carousel", @@ -9880,9 +9734,6 @@ "isPrivate": false, "description": ":carousel_horse: Looped carousel for React Native", "topics": [ - "react", - "native", - "react-native", "carousel", "looped" ], @@ -9896,13 +9747,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-looped-carousel", "npm": { - "downloads": 1173, - "weekDownloads": 145, + "downloads": 1170, + "weekDownloads": 368, "size": 23338, "latestRelease": "0.1.13", "latestReleaseDate": "2018-05-23T21:31:36.346Z" @@ -9914,8 +9766,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.645, - "topicSearchString": "react native react-native carousel looped" + "popularity": -0.482, + "topicSearchString": "carousel looped" }, { "githubUrl": "https://github.com/APSL/react-native-button", @@ -9942,8 +9794,8 @@ "pushedAt": "2018-04-24T09:56:34Z", "forks": 116, "issues": 13, - "subscribers": 23, - "stars": 747, + "subscribers": 22, + "stars": 746, "dependencies": 2 }, "name": "apsl-react-native-button", @@ -9951,11 +9803,9 @@ "isPrivate": false, "description": "A React Native button component customizable via props", "topics": [ - "react-native", "ios", "android", - "react-component", - "react", + "component", "button" ], "license": { @@ -9968,12 +9818,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 987, - "weekDownloads": 155, + "downloads": 1259, + "weekDownloads": 223, "size": 209287, "latestRelease": "3.1.1", "latestReleaseDate": "2018-04-24T09:57:31.034Z" @@ -9985,8 +9836,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.366, - "topicSearchString": "react-native ios android react-component react button" + "popularity": -0.599, + "topicSearchString": "ios android component button" }, { "githubUrl": "https://github.com/xgfe/react-native-datepicker", @@ -10010,7 +9861,7 @@ "forks": 618, "issues": 241, "subscribers": 28, - "stars": 2118, + "stars": 2117, "dependencies": 1 }, "name": "react-native-datepicker", @@ -10018,7 +9869,6 @@ "isPrivate": false, "description": "react native datePicker component for both Android and IOS, useing DatePikcerAndroid, TimePickerAndroid and DatePickerIOS", "topics": [ - "react-native", "datepicker" ], "license": { @@ -10031,13 +9881,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-datepicker", "npm": { - "downloads": 40981, - "weekDownloads": 7000, + "downloads": 39697, + "weekDownloads": 8907, "size": 47241, "latestRelease": "1.7.2", "latestReleaseDate": "2018-04-22T11:27:28.819Z" @@ -10050,8 +9901,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, - "topicSearchString": "react-native datepicker" + "popularity": -0.559, + "topicSearchString": "datepicker" }, { "githubUrl": "https://github.com/FaridSafi/react-native-google-places-autocomplete", @@ -10076,10 +9927,10 @@ "updatedAt": "2024-12-24T05:38:08Z", "createdAt": "2015-10-14T17:29:41Z", "pushedAt": "2024-12-24T05:38:08Z", - "forks": 827, - "issues": 141, - "subscribers": 22, - "stars": 2060, + "forks": 828, + "issues": 142, + "subscribers": 20, + "stars": 2061, "dependencies": 4 }, "name": "react-native-google-places-autocomplete", @@ -10090,8 +9941,7 @@ "autocomplete", "google", "places", - "react-component", - "react-native", + "component", "ios", "android" ], @@ -10105,12 +9955,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-google-places-autocomplete", "npm": { - "downloads": 452485, - "weekDownloads": 71190, + "downloads": 452646, + "weekDownloads": 100422, "size": 85271, "latestRelease": "2.5.7", "latestReleaseDate": "2024-10-04T06:06:40.473Z" @@ -10123,8 +9974,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.134, - "topicSearchString": "autocomplete google places react-component react-native ios android" + "popularity": 0.189, + "topicSearchString": "autocomplete google places component ios android" }, { "githubUrl": "https://github.com/jeanregisser/react-native-slider", @@ -10149,9 +10000,9 @@ "updatedAt": "2018-07-10T07:22:04Z", "createdAt": "2015-07-17T14:13:57Z", "pushedAt": "2018-07-10T07:22:04Z", - "forks": 430, + "forks": 429, "issues": 86, - "subscribers": 15, + "subscribers": 14, "stars": 1302, "dependencies": 1 }, @@ -10160,8 +10011,7 @@ "isPrivate": false, "description": "A pure JavaScript component for react-native", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "slider" @@ -10176,12 +10026,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-slider", "npm": { - "downloads": 53702, - "weekDownloads": 9882, + "downloads": 44406, + "weekDownloads": 9907, "latestRelease": "0.11.0", "latestReleaseDate": "2017-08-04T09:50:42.334Z" }, @@ -10193,8 +10044,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, - "topicSearchString": "react-component react-native ios android slider" + "popularity": -0.56, + "topicSearchString": "component ios android slider" }, { "githubUrl": "https://github.com/sbycrosz/react-native-credit-card-input", @@ -10220,8 +10071,8 @@ "pushedAt": "2025-07-15T07:06:33Z", "forks": 580, "issues": 4, - "subscribers": 29, - "stars": 1503, + "subscribers": 28, + "stars": 1499, "dependencies": 2 }, "name": "react-native-credit-card-input", @@ -10230,7 +10081,6 @@ "registry": "https://registry.npmjs.org/", "description": "Easy, cross-platform credit-card input for your React Native Project! Start accepting payment 💰 in your app today!", "topics": [ - "react-native", "ios", "android", "component", @@ -10247,12 +10097,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-credit-card-input", "npm": { - "downloads": 13264, - "weekDownloads": 1717, + "downloads": 15917, + "weekDownloads": 3180, "size": 804827, "latestRelease": "1.0.0", "latestReleaseDate": "2024-07-19T07:24:54.952Z" @@ -10263,8 +10114,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.11, - "topicSearchString": "react-native ios android component payment credit-card" + "popularity": 0.17, + "topicSearchString": "ios android component payment credit-card" }, { "githubUrl": "https://github.com/halilb/react-native-photo-browser", @@ -10289,9 +10140,9 @@ "updatedAt": "2021-05-17T19:03:55Z", "createdAt": "2016-04-22T10:40:57Z", "pushedAt": "2021-05-17T19:03:55Z", - "forks": 169, + "forks": 168, "issues": 20, - "subscribers": 26, + "subscribers": 25, "stars": 723, "dependencies": 3 }, @@ -10300,9 +10151,7 @@ "isPrivate": false, "description": "Local and remote media gallery with captions, selections and grid view support for react native.", "topics": [ - "react", - "react-component", - "react-native", + "component", "photo-browser", "image-gallery", "media-gallery", @@ -10320,12 +10169,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-photo-browser", "npm": { - "downloads": 362, - "weekDownloads": 53, + "downloads": 394, + "weekDownloads": 69, "size": 146594, "latestRelease": "0.7.0", "latestReleaseDate": "2020-06-04T10:37:02.012Z" @@ -10337,8 +10187,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.375, - "topicSearchString": "react react-component react-native photo-browser image-gallery media-gallery ios android photos" + "popularity": -1.35, + "topicSearchString": "component photo-browser image-gallery media-gallery ios android photos" }, { "githubUrl": "https://github.com/capitalone/react-native-pathjs-charts", @@ -10360,10 +10210,10 @@ "updatedAt": "2018-03-01T15:28:09Z", "createdAt": "2016-07-29T19:43:20Z", "pushedAt": "2018-03-01T15:28:09Z", - "forks": 245, + "forks": 244, "issues": 72, - "subscribers": 33, - "stars": 881, + "subscribers": 32, + "stars": 879, "dependencies": 3 }, "name": "react-native-pathjs-charts", @@ -10371,10 +10221,9 @@ "isPrivate": false, "description": "Android and iOS charts based on react-native-svg and paths-js", "topics": [ - "react-native", "svg", "paths-js", - "react-pathjs-chart", + "pathjs-chart", "ios", "android", "charts", @@ -10393,12 +10242,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-pathjs-charts", "npm": { - "downloads": 342, - "weekDownloads": 52, + "downloads": 473, + "weekDownloads": 72, "size": 813630, "latestRelease": "0.0.34", "latestReleaseDate": "2018-02-19T01:42:02.629Z" @@ -10411,7 +10261,7 @@ "Not supporting New Architecture" ], "popularity": -1.37, - "topicSearchString": "react-native svg paths-js react-pathjs-chart ios android charts graphs cross-platform radar-graphs bar-graphs" + "topicSearchString": "svg paths-js pathjs-chart ios android charts graphs cross-platform radar-graphs bar-graphs" }, { "githubUrl": "https://github.com/FormidableLabs/victory-native-xl/tree/main/lib", @@ -10434,10 +10284,10 @@ "updatedAt": "2025-09-08T16:25:09Z", "createdAt": "2023-08-08T20:40:44Z", "pushedAt": "2025-09-08T16:25:09Z", - "forks": 89, - "issues": 85, - "subscribers": 27, - "stars": 1044, + "forks": 90, + "issues": 88, + "subscribers": 26, + "stars": 1062, "dependencies": 5 }, "name": "victory-native", @@ -10455,24 +10305,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 796007, - "weekDownloads": 139575, + "downloads": 774719, + "weekDownloads": 176506, "size": 415415, "latestRelease": "41.20.1", "latestReleaseDate": "2025-09-08T16:26:03.438Z" }, - "score": 62, + "score": 57, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.194, "topicSearchString": "" }, { @@ -10497,10 +10347,10 @@ "updatedAt": "2020-01-13T17:50:17Z", "createdAt": "2015-10-20T20:01:55Z", "pushedAt": "2020-01-13T17:50:17Z", - "forks": 439, + "forks": 437, "issues": 80, "subscribers": 33, - "stars": 2525, + "stars": 2524, "dependencies": 1 }, "name": "react-native-action-button", @@ -10508,7 +10358,6 @@ "isPrivate": false, "description": "customizable multi-action-button component for react-native", "topics": [ - "react-native", "action-button", "float-button", "multi-action-button", @@ -10526,13 +10375,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-action-button", "npm": { - "downloads": 18214, - "weekDownloads": 3339, + "downloads": 19531, + "weekDownloads": 3541, "size": 364481, "latestRelease": "2.8.5", "latestReleaseDate": "2018-08-29T12:38:27.449Z" @@ -10545,8 +10395,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, - "topicSearchString": "react-native action-button float-button multi-action-button fab actionbutton component" + "popularity": -0.596, + "topicSearchString": "action-button float-button multi-action-button fab actionbutton component" }, { "githubUrl": "https://github.com/FaridSafi/react-native-gifted-form", @@ -10567,10 +10417,10 @@ "updatedAt": "2017-11-15T23:32:24Z", "createdAt": "2015-11-03T12:37:07Z", "pushedAt": "2017-11-15T23:32:24Z", - "forks": 203, + "forks": 202, "issues": 72, - "subscribers": 32, - "stars": 1437, + "subscribers": 31, + "stars": 1438, "dependencies": 9 }, "name": "react-native-gifted-form", @@ -10579,9 +10429,7 @@ "description": "📝 « One React-Native form component to rule them all »", "topics": [ "form", - "react-native", - "react", - "react-component", + "component", "ios", "android" ], @@ -10595,13 +10443,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-gifted-form", "npm": { - "downloads": 273, - "weekDownloads": 27, + "downloads": 512, + "weekDownloads": 43, "latestRelease": "0.1.1", "latestReleaseDate": "2017-11-15T23:34:21.066Z" }, @@ -10612,8 +10461,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.416, - "topicSearchString": "form react-native react react-component ios android" + "popularity": -1.428, + "topicSearchString": "form component ios android" }, { "githubUrl": "https://github.com/testshallpass/react-native-dropdownalert", @@ -10637,7 +10486,7 @@ "forks": 242, "issues": 9, "subscribers": 14, - "stars": 1875, + "stars": 1876, "dependencies": 0 }, "name": "react-native-dropdownalert", @@ -10645,7 +10494,6 @@ "isPrivate": false, "description": "An alert to notify users about an error or something else", "topics": [ - "react-native", "ios", "android", "dropdown", @@ -10667,12 +10515,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-dropdownalert", "npm": { - "downloads": 48403, - "weekDownloads": 8991, + "downloads": 50317, + "weekDownloads": 12799, "size": 37781, "latestRelease": "5.2.0", "latestReleaseDate": "2025-07-12T14:33:43.362Z" @@ -10683,8 +10532,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.158, - "topicSearchString": "react-native ios android dropdown alert dismiss error info warn success notification" + "popularity": 0.216, + "topicSearchString": "ios android dropdown alert dismiss error info warn success notification" }, { "githubUrl": "https://github.com/expo/react-native-read-more-text", @@ -10710,7 +10559,7 @@ "pushedAt": "2020-07-17T11:14:59Z", "forks": 108, "issues": 10, - "subscribers": 7, + "subscribers": 6, "stars": 584, "dependencies": 0 }, @@ -10729,13 +10578,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-read-more-text", "npm": { - "downloads": 16787, - "weekDownloads": 2716, + "downloads": 17516, + "weekDownloads": 3866, "size": 5171, "latestRelease": "1.1.2", "latestReleaseDate": "2020-02-05T12:30:33.064Z" @@ -10746,7 +10596,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, + "popularity": -0.562, "topicSearchString": "" }, { @@ -10771,10 +10621,10 @@ "updatedAt": "2025-06-07T22:45:54Z", "createdAt": "2016-05-16T14:16:31Z", "pushedAt": "2025-06-07T22:45:54Z", - "forks": 250, + "forks": 251, "issues": 43, "subscribers": 16, - "stars": 1530, + "stars": 1537, "dependencies": 0 }, "name": "react-native-popup-menu", @@ -10784,7 +10634,6 @@ "topics": [ "popup-menu", "animation", - "react-native", "android", "ios" ], @@ -10798,12 +10647,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-popup-menu", "npm": { - "downloads": 208770, - "weekDownloads": 35448, + "downloads": 199139, + "weekDownloads": 45717, "size": 446216, "latestRelease": "0.18.0", "latestReleaseDate": "2025-06-07T22:45:48.028Z" @@ -10814,8 +10664,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.144, - "topicSearchString": "popup-menu animation react-native android ios" + "popularity": 0.195, + "topicSearchString": "popup-menu animation android ios" }, { "githubUrl": "https://github.com/BugiDev/react-native-calendar-strip", @@ -10839,10 +10689,10 @@ "updatedAt": "2022-05-11T23:12:12Z", "createdAt": "2016-08-29T15:04:01Z", "pushedAt": "2022-05-11T23:12:12Z", - "forks": 323, + "forks": 324, "issues": 84, "subscribers": 16, - "stars": 971, + "stars": 970, "dependencies": 4 }, "name": "react-native-calendar-strip", @@ -10853,9 +10703,6 @@ "rn", "calendar", "calendar-strip", - "native", - "react", - "react-native", "strip", "javascript" ], @@ -10869,13 +10716,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-calendar-strip", "npm": { - "downloads": 27414, - "weekDownloads": 5128, + "downloads": 29353, + "weekDownloads": 6128, "size": 116646, "latestRelease": "2.2.6", "latestReleaseDate": "2022-05-11T23:12:59.391Z" @@ -10888,8 +10736,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, - "topicSearchString": "rn calendar calendar-strip native react react-native strip javascript" + "popularity": -0.573, + "topicSearchString": "rn calendar calendar-strip strip javascript" }, { "githubUrl": "https://github.com/mohebifar/react-native-loader", @@ -10912,7 +10760,7 @@ "pushedAt": "2020-08-21T04:22:47Z", "forks": 64, "issues": 13, - "subscribers": 11, + "subscribers": 10, "stars": 394, "dependencies": 0 }, @@ -10921,13 +10769,11 @@ "isPrivate": false, "description": "A collection of animated spinners for React Native", "topics": [ - "react", - "react-native", - "react-component", + "component", "waiting", "loading", "spinner", - "react-art", + "art", "animated-spinners", "android", "ios" @@ -10942,13 +10788,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-loader", "npm": { - "downloads": 2110, - "weekDownloads": 365, + "downloads": 1643, + "weekDownloads": 405, "size": 12138, "latestRelease": "1.3.1", "latestReleaseDate": "2020-08-21T04:22:58.114Z" @@ -10959,8 +10806,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, - "topicSearchString": "react react-native react-component waiting loading spinner react-art animated-spinners android ios" + "popularity": -0.54, + "topicSearchString": "component waiting loading spinner art animated-spinners android ios" }, { "githubUrl": "https://github.com/maxjvh/react-native-simple-modal", @@ -10993,12 +10840,10 @@ "description": "A simple JavaScript modal component for React Native.", "topics": [ "modal", - "react-native", "dialog", - "react-component", + "component", "ios", - "android", - "component" + "android" ], "license": { "key": "mit", @@ -11010,13 +10855,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-simple-modal", "npm": { - "downloads": 1077, - "weekDownloads": 144, + "downloads": 1233, + "weekDownloads": 205, "size": 11011, "latestRelease": "9.0.1", "latestReleaseDate": "2018-06-09T11:37:11.050Z" @@ -11027,8 +10873,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.636, - "topicSearchString": "modal react-native dialog react-component ios android component" + "popularity": -0.609, + "topicSearchString": "modal dialog component ios android" }, { "githubUrl": "https://github.com/gitim/react-native-sortable-list", @@ -11056,7 +10902,7 @@ "forks": 260, "issues": 91, "subscribers": 23, - "stars": 906, + "stars": 917, "dependencies": 1 }, "name": "react-native-sortable-list", @@ -11064,10 +10910,7 @@ "isPrivate": false, "description": "React Native Sortable List component", "topics": [ - "react-native", "ios", - "react-component", - "react", "component", "android", "listview", @@ -11084,13 +10927,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sortable-list", "npm": { - "downloads": 9069, - "weekDownloads": 1171, + "downloads": 10655, + "weekDownloads": 3504, "size": 34345, "latestRelease": "0.0.25", "latestReleaseDate": "2022-04-08T18:36:21.645Z" @@ -11103,8 +10947,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.64, - "topicSearchString": "react-native ios react-component react component android listview scrollview scrollview-component" + "popularity": -0.47, + "topicSearchString": "ios component android listview scrollview scrollview-component" }, { "githubUrl": "https://github.com/JackPu/react-native-percentage-circle", @@ -11140,7 +10984,6 @@ "circle", "progress", "bar", - "react-native", "percent" ], "license": { @@ -11153,13 +10996,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-percentage-circle", "npm": { - "downloads": 271, - "weekDownloads": 21, + "downloads": 315, + "weekDownloads": 44, "size": 9057, "latestRelease": "1.0.7", "latestReleaseDate": "2018-05-03T05:39:55.301Z" @@ -11170,8 +11014,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.433, - "topicSearchString": "percentage circle progress bar react-native percent" + "popularity": -1.381, + "topicSearchString": "percentage circle progress bar percent" }, { "githubUrl": "https://github.com/bamlab/react-native-image-header-scroll-view", @@ -11194,8 +11038,8 @@ "pushedAt": "2021-01-09T09:32:41Z", "forks": 92, "issues": 41, - "subscribers": 13, - "stars": 1015, + "subscribers": 12, + "stars": 1016, "dependencies": 0 }, "name": "react-native-image-header-scroll-view", @@ -11203,11 +11047,10 @@ "isPrivate": false, "description": "ScrollView with an image in header which becomes a navbar", "topics": [ - "react-native", "scrollview", "animation", "navbar", - "react-component", + "component", "ios", "android" ], @@ -11221,13 +11064,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-image-header-scroll-view", "npm": { - "downloads": 5660, - "weekDownloads": 1023, + "downloads": 4447, + "weekDownloads": 1106, "size": 10207203, "latestRelease": "1.0.0", "latestReleaseDate": "2020-11-19T18:42:56.296Z" @@ -11239,8 +11083,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, - "topicSearchString": "react-native scrollview animation navbar react-component ios android" + "popularity": -0.539, + "topicSearchString": "scrollview animation navbar component ios android" }, { "githubUrl": "https://github.com/expo/react-native-fade-in-image", @@ -11267,7 +11111,7 @@ "pushedAt": "2023-07-19T22:28:49Z", "forks": 23, "issues": 3, - "subscribers": 3, + "subscribers": 2, "stars": 118, "dependencies": 3 }, @@ -11286,12 +11130,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-fade-in-image", "npm": { - "downloads": 191058, - "weekDownloads": 21858, + "downloads": 254467, + "weekDownloads": 66087, "size": 5238, "latestRelease": "1.6.1", "latestReleaseDate": "2021-06-07T19:11:06.288Z" @@ -11302,7 +11147,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.653, + "popularity": -0.529, "topicSearchString": "" }, { @@ -11335,13 +11180,11 @@ "isPrivate": false, "description": "The card component which has a motion of flip for React Native(iOS/Android)", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "card", "flip", - "react", "card-component", "animation" ], @@ -11355,13 +11198,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-flip-card", "npm": { - "downloads": 32392, - "weekDownloads": 4762, + "downloads": 34132, + "weekDownloads": 7390, "size": 14146, "latestRelease": "3.5.7", "latestReleaseDate": "2023-02-13T14:43:53.130Z" @@ -11372,8 +11216,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.625, - "topicSearchString": "react-component react-native ios android card flip react card-component animation" + "popularity": -0.566, + "topicSearchString": "component ios android card flip card-component animation" }, { "githubUrl": "https://github.com/evollu/react-native-fcm", @@ -11394,10 +11238,10 @@ "updatedAt": "2019-03-17T04:07:01Z", "createdAt": "2016-05-29T03:53:22Z", "pushedAt": "2019-03-17T04:07:01Z", - "forks": 644, + "forks": 645, "issues": 285, "subscribers": 36, - "stars": 1731, + "stars": 1733, "dependencies": 0 }, "name": "react-native-fcm", @@ -11405,7 +11249,6 @@ "isPrivate": false, "description": "react native module for firebase cloud messaging and local notification", "topics": [ - "react-native", "ios", "android", "fcm", @@ -11424,12 +11267,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fcm", "npm": { - "downloads": 670, - "weekDownloads": 48, + "downloads": 992, + "weekDownloads": 65, "size": 174616, "latestRelease": "16.2.4", "latestReleaseDate": "2018-11-04T01:41:40.202Z" @@ -11442,8 +11286,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.439, - "topicSearchString": "react-native ios android fcm firebase cloud-messaging notifications local-notifications" + "popularity": -1.444, + "topicSearchString": "ios android fcm firebase cloud-messaging notifications local-notifications" }, { "githubUrl": "https://github.com/crazycodeboy/react-native-easy-toast", @@ -11466,8 +11310,8 @@ "pushedAt": "2023-02-22T07:34:29Z", "forks": 238, "issues": 53, - "subscribers": 17, - "stars": 1145, + "subscribers": 16, + "stars": 1146, "dependencies": 2 }, "name": "react-native-easy-toast", @@ -11475,16 +11319,13 @@ "isPrivate": false, "description": "A react native module to show toast like android, it works on iOS and Android.", "topics": [ - "react-native", "component", "toast", "toast-ios", "alert", - "react-component", "navigator", "ios", - "android", - "react-toast" + "android" ], "license": { "key": "mit", @@ -11496,13 +11337,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-easy-toast", "npm": { - "downloads": 30157, - "weekDownloads": 4920, + "downloads": 26458, + "weekDownloads": 5696, "size": 17091, "latestRelease": "2.3.0", "latestReleaseDate": "2022-11-18T11:39:30.760Z" @@ -11514,8 +11356,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.611, - "topicSearchString": "react-native component toast toast-ios alert react-component navigator ios android react-toast" + "popularity": -0.567, + "topicSearchString": "component toast toast-ios alert navigator ios android" }, { "githubUrl": "https://github.com/harshq/react-native-mentions", @@ -11539,7 +11381,7 @@ "forks": 72, "issues": 22, "subscribers": 9, - "stars": 309, + "stars": 310, "dependencies": 0 }, "name": "react-native-mentions", @@ -11547,11 +11389,9 @@ "isPrivate": false, "description": "Mentions textbox for React Native. Works on both ios and android. :whale: ", "topics": [ - "react-component", - "react-native", + "component", "mentions", "textinput", - "component", "ios", "android", "autocomplete", @@ -11567,13 +11407,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-mentions", "npm": { - "downloads": 756, - "weekDownloads": 117, + "downloads": 873, + "weekDownloads": 175, "latestRelease": "1.1.4", "latestReleaseDate": "2018-01-09T17:19:40.466Z" }, @@ -11583,8 +11424,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.368, - "topicSearchString": "react-component react-native mentions textinput component ios android autocomplete hashtag" + "popularity": -1.329, + "topicSearchString": "component mentions textinput ios android autocomplete hashtag" }, { "githubUrl": "https://github.com/machadogj/react-native-carousel-control", @@ -11608,7 +11449,7 @@ "forks": 49, "issues": 8, "subscribers": 3, - "stars": 247, + "stars": 246, "dependencies": 0 }, "name": "react-native-carousel-control", @@ -11616,8 +11457,6 @@ "isPrivate": false, "description": "React Native Carousel control with support for iOS and Android", "topics": [ - "react", - "native", "carousel", "ios", "android" @@ -11632,13 +11471,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-carousel-control", "npm": { - "downloads": 424, - "weekDownloads": 44, + "downloads": 325, + "weekDownloads": 93, "latestRelease": "2.0.1", "latestReleaseDate": "2017-10-31T12:56:59.163Z" }, @@ -11648,8 +11488,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.411, - "topicSearchString": "react native carousel ios android" + "popularity": -1.255, + "topicSearchString": "carousel ios android" }, { "githubUrl": "https://github.com/evetstech/react-native-settings-list", @@ -11681,8 +11521,7 @@ "isPrivate": false, "description": "A clean and highly customizable React Native implementation of a list of settings for a settings page.", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "settings-list", @@ -11698,13 +11537,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-settings-list", "npm": { - "downloads": 5317, - "weekDownloads": 455, + "downloads": 6930, + "weekDownloads": 1475, "latestRelease": "1.8.0", "latestReleaseDate": "2017-11-04T02:36:51.653Z" }, @@ -11714,8 +11554,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.677, - "topicSearchString": "react-native react-component ios android settings-list settings" + "popularity": -0.569, + "topicSearchString": "component ios android settings-list settings" }, { "githubUrl": "https://github.com/esbenp/react-native-clean-form", @@ -11738,7 +11578,7 @@ "pushedAt": "2019-01-10T18:31:21Z", "forks": 70, "issues": 40, - "subscribers": 16, + "subscribers": 15, "stars": 477, "dependencies": 4 }, @@ -11747,7 +11587,6 @@ "isPrivate": false, "description": "Easy react-native forms using bootstrap-like syntax with redux-form+immutablejs integration. Styled using styled-components", "topics": [ - "react-native", "redux-form", "immutable.js", "styled-components", @@ -11763,13 +11602,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-clean-form", "npm": { - "downloads": 71, - "weekDownloads": 5, + "downloads": 146, + "weekDownloads": 19, "latestRelease": "0.5.0", "latestReleaseDate": "2018-01-03T15:59:24.835Z" }, @@ -11779,8 +11619,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.438, - "topicSearchString": "react-native redux-form immutable.js styled-components redux" + "popularity": -1.388, + "topicSearchString": "redux-form immutable.js styled-components redux" }, { "githubUrl": "https://github.com/naoufal/react-native-accordion", @@ -11804,7 +11644,7 @@ "pushedAt": "2016-07-27T03:33:33Z", "forks": 75, "issues": 24, - "subscribers": 11, + "subscribers": 10, "stars": 438, "dependencies": 1 }, @@ -11813,14 +11653,11 @@ "isPrivate": false, "description": "An Accordion Component for React Native", "topics": [ - "react-native", - "react", - "native", "accordion", - "react-component", "component" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -11829,12 +11666,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-accordion", "npm": { - "downloads": 283, - "weekDownloads": 50, + "downloads": 264, + "weekDownloads": 114, "latestRelease": "1.0.1", "latestReleaseDate": "2016-07-27T03:33:50.723Z" }, @@ -11844,8 +11682,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.348, - "topicSearchString": "react-native react native accordion react-component component" + "popularity": -1.132, + "topicSearchString": "accordion component" }, { "githubUrl": "https://github.com/race604/react-native-viewpager", @@ -11864,12 +11702,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2017-11-08T09:36:06Z", + "updatedAt": "2025-10-07T17:16:49Z", "createdAt": "2015-10-10T09:10:39Z", - "pushedAt": "2017-11-08T09:36:06Z", + "pushedAt": "2025-10-07T17:16:49Z", "forks": 329, "issues": 87, - "subscribers": 47, + "subscribers": 46, "stars": 1407, "dependencies": 2 }, @@ -11879,8 +11717,6 @@ "description": "[Deprecated] ViewPager component for React Native", "topics": [ "component", - "react-component", - "react-native", "ios", "android", "viewpager", @@ -11896,25 +11732,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-viewpager", "npm": { - "downloads": 2367, - "weekDownloads": 644, + "downloads": 1665, + "weekDownloads": 335, "latestRelease": "0.2.13", "latestReleaseDate": "2016-10-27T05:25:25.971Z" }, - "score": 46, + "score": 62, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Not updated recently", + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.518, - "topicSearchString": "component react-component react-native ios android viewpager pager" + "popularity": -0.579, + "topicSearchString": "component ios android viewpager pager" }, { "githubUrl": "https://github.com/alinz/react-native-dropdown", @@ -11936,10 +11773,10 @@ "updatedAt": "2020-04-12T16:53:01Z", "createdAt": "2015-08-10T15:23:48Z", "pushedAt": "2020-04-12T16:53:01Z", - "forks": 127, + "forks": 128, "issues": 5, - "subscribers": 14, - "stars": 659, + "subscribers": 13, + "stars": 660, "dependencies": 0 }, "name": "react-native-dropdown", @@ -11947,8 +11784,7 @@ "isPrivate": false, "description": "This is simple implementation of drop down menu", "topics": [ - "react-component", - "react-native" + "component" ], "license": { "key": "mit", @@ -11960,12 +11796,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-dropdown", "npm": { - "downloads": 1579, - "weekDownloads": 372, + "downloads": 1392, + "weekDownloads": 283, "latestRelease": "0.0.6", "latestReleaseDate": "2015-12-10T19:39:19.305Z" }, @@ -11976,8 +11813,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.549, - "topicSearchString": "react-component react-native" + "popularity": -0.577, + "topicSearchString": "component" }, { "githubUrl": "https://github.com/gs-akhan/react-native-chooser", @@ -12010,7 +11847,6 @@ "isPrivate": false, "description": "Simple Cross Platform HTML Select Tag for react-native", "topics": [ - "react-native", "chooser", "select", "picker", @@ -12026,12 +11862,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-chooser", "npm": { - "downloads": 154, - "weekDownloads": 19, + "downloads": 1207, + "weekDownloads": 30, "latestRelease": "1.7.0", "latestReleaseDate": "2017-11-29T07:51:25.707Z" }, @@ -12041,8 +11878,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.394, - "topicSearchString": "react-native chooser select picker select-tag" + "popularity": -0.729, + "topicSearchString": "chooser select picker select-tag" }, { "githubUrl": "https://github.com/stephy/CalendarPicker", @@ -12064,7 +11901,7 @@ "updatedAt": "2024-08-09T02:37:16Z", "createdAt": "2015-04-12T06:11:27Z", "pushedAt": "2024-08-09T02:37:16Z", - "forks": 334, + "forks": 332, "issues": 96, "subscribers": 13, "stars": 818, @@ -12094,11 +11931,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 91906, - "weekDownloads": 15494, + "downloads": 83861, + "weekDownloads": 19258, "size": 119993, "latestRelease": "8.0.5", "latestReleaseDate": "2024-07-26T14:49:48.954Z" @@ -12111,7 +11949,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.143, + "popularity": 0.195, "topicSearchString": "calendar picker date day calendar-picker-component component calendarpicker calendar-picker" }, { @@ -12138,13 +11976,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-08T22:12:37Z", + "updatedAt": "2025-10-13T22:15:29Z", "createdAt": "2016-02-22T14:38:28Z", - "pushedAt": "2025-09-08T22:12:37Z", + "pushedAt": "2025-10-13T22:15:29Z", "forks": 247, "issues": 10, - "subscribers": 13, - "stars": 858, + "subscribers": 12, + "stars": 861, "dependencies": 0 }, "name": "react-native-autocomplete-input", @@ -12152,7 +11990,6 @@ "isPrivate": false, "description": "Pure javascript autocomplete input for react-native", "topics": [ - "react-native", "ios", "input", "android", @@ -12168,12 +12005,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-autocomplete-input", "npm": { - "downloads": 59652, - "weekDownloads": 9999, + "downloads": 54603, + "weekDownloads": 13150, "size": 10285, "latestRelease": "5.5.6", "latestReleaseDate": "2025-01-24T22:10:43.637Z" @@ -12185,8 +12023,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "react-native ios input android autocomplete" + "popularity": 0.205, + "topicSearchString": "ios input android autocomplete" }, { "githubUrl": "https://github.com/aksonov/react-native-tabs", @@ -12209,7 +12047,7 @@ "pushedAt": "2017-12-19T13:29:37Z", "forks": 103, "issues": 24, - "subscribers": 23, + "subscribers": 22, "stars": 726, "dependencies": 0 }, @@ -12218,8 +12056,7 @@ "isPrivate": false, "description": "React Native platform-independent tabs. Could be used for bottom tab bars as well as sectioned views (with tab buttons)", "topics": [ - "react-native", - "react-components", + "components", "tabbar", "tabs" ], @@ -12233,13 +12070,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tabs", "npm": { - "downloads": 4869, - "weekDownloads": 968, + "downloads": 8420, + "weekDownloads": 1657, "latestRelease": "1.0.9", "latestReleaseDate": "2016-07-07T11:40:18.108Z" }, @@ -12250,8 +12088,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, - "topicSearchString": "react-native react-components tabbar tabs" + "popularity": -0.583, + "topicSearchString": "components tabbar tabs" }, { "githubUrl": "https://github.com/GeekyAnts/react-native-easy-grid", @@ -12277,8 +12115,8 @@ "pushedAt": "2019-08-12T04:05:52Z", "forks": 162, "issues": 20, - "subscribers": 31, - "stars": 2188, + "subscribers": 30, + "stars": 2189, "dependencies": 1 }, "name": "react-native-easy-grid", @@ -12296,13 +12134,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-easy-grid", "npm": { - "downloads": 53950, - "weekDownloads": 8467, + "downloads": 52250, + "weekDownloads": 11662, "size": 89860, "latestRelease": "0.2.2", "latestReleaseDate": "2019-08-12T04:06:26.368Z" @@ -12314,7 +12153,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, + "popularity": -0.56, "topicSearchString": "" }, { @@ -12342,7 +12181,7 @@ "pushedAt": "2018-04-19T07:09:55Z", "forks": 93, "issues": 17, - "subscribers": 10, + "subscribers": 9, "stars": 411, "dependencies": 0 }, @@ -12351,8 +12190,7 @@ "isPrivate": false, "description": "[DEPRECATED] A Radio-button like logic wrapper for React Native", "topics": [ - "react-component", - "react-native", + "component", "ios", "radio-buttons", "radio", @@ -12369,12 +12207,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-radio-buttons", "npm": { - "downloads": 2707, - "weekDownloads": 544, + "downloads": 3059, + "weekDownloads": 635, "latestRelease": "1.0.0", "latestReleaseDate": "2017-07-19T09:15:22.306Z" }, @@ -12384,8 +12223,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, - "topicSearchString": "react-component react-native ios radio-buttons radio segmentedcontrols segmented-controls" + "popularity": -0.573, + "topicSearchString": "component ios radio-buttons radio segmentedcontrols segmented-controls" }, { "githubUrl": "https://github.com/Spikef/react-native-gesture-password", @@ -12417,14 +12256,12 @@ "isPrivate": false, "description": "A gesture password component for React Native. It supports both iOS and Android since it's written in pure JavaScript.", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "gesture-password", "javascript", - "interval", - "react" + "interval" ], "license": { "key": "mit", @@ -12436,13 +12273,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-gesture-password", "npm": { - "downloads": 198, - "weekDownloads": 40, + "downloads": 352, + "weekDownloads": 43, "size": 72437, "latestRelease": "0.4.0", "latestReleaseDate": "2019-12-12T02:58:46.394Z" @@ -12453,8 +12291,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.326, - "topicSearchString": "react-component react-native ios android gesture-password javascript interval react" + "popularity": -1.395, + "topicSearchString": "component ios android gesture-password javascript interval" }, { "githubUrl": "https://github.com/christopherdro/react-native-calendar", @@ -12497,12 +12335,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-calendar", "npm": { - "downloads": 1340, - "weekDownloads": 201, + "downloads": 4230, + "weekDownloads": 464, "latestRelease": "0.13.1", "latestReleaseDate": "2017-10-12T12:32:01.436Z" }, @@ -12513,7 +12352,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, + "popularity": -0.657, "topicSearchString": "" }, { @@ -12535,7 +12374,7 @@ "updatedAt": "2020-03-23T22:51:26Z", "createdAt": "2015-08-19T04:12:07Z", "pushedAt": "2020-03-23T22:51:26Z", - "forks": 81, + "forks": 80, "issues": 2, "subscribers": 11, "stars": 871, @@ -12546,7 +12385,6 @@ "isPrivate": false, "description": "A minimalistic wrapper around React Native's AsyncStorage.", "topics": [ - "react-native", "ios", "android", "asyncstorage", @@ -12563,13 +12401,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-simple-store", "npm": { - "downloads": 1502, - "weekDownloads": 192, + "downloads": 2279, + "weekDownloads": 386, "size": 288592, "latestRelease": "2.0.2", "latestReleaseDate": "2019-09-23T17:31:18.959Z" @@ -12581,8 +12420,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.641, - "topicSearchString": "react-native ios android asyncstorage data-store key-value-store" + "popularity": -0.606, + "topicSearchString": "ios android asyncstorage data-store key-value-store" }, { "githubUrl": "https://github.com/joinspontaneous/react-native-loading-spinner-overlay", @@ -12608,7 +12447,7 @@ "pushedAt": "2022-07-28T15:27:57Z", "forks": 170, "issues": 5, - "subscribers": 18, + "subscribers": 17, "stars": 1591, "dependencies": 0 }, @@ -12625,12 +12464,9 @@ "ios", "loading", "modal", - "native", "pop-up", "popup", "progress", - "react", - "react-native", "screen", "spinner", "view", @@ -12648,13 +12484,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-loading-spinner-overlay", "npm": { - "downloads": 68090, - "weekDownloads": 10836, + "downloads": 62186, + "weekDownloads": 13682, "size": 19209, "latestRelease": "3.0.1", "latestReleaseDate": "2022-07-28T15:28:53.957Z" @@ -12666,8 +12503,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.615, - "topicSearchString": "activity android bar full indicator ios loading modal native pop-up popup progress react react-native screen spinner view overlay portal progress-bar" + "popularity": -0.563, + "topicSearchString": "activity android bar full indicator ios loading modal pop-up popup progress screen spinner view overlay portal progress-bar" }, { "githubUrl": "https://github.com/jaysoo/react-native-parallax-scroll-view", @@ -12688,10 +12525,10 @@ "updatedAt": "2024-03-30T04:45:38Z", "createdAt": "2015-12-16T02:33:09Z", "pushedAt": "2024-03-30T04:45:38Z", - "forks": 336, + "forks": 337, "issues": 80, - "subscribers": 34, - "stars": 2331, + "subscribers": 33, + "stars": 2335, "dependencies": 2 }, "name": "react-native-parallax-scroll-view", @@ -12699,13 +12536,11 @@ "isPrivate": false, "description": "A ScrollView-like component with parallax and sticky header support.", "topics": [ - "react-native", - "react", "parallax", "scrollable", "scrollview", "sticky", - "react-component", + "component", "ios", "android" ], @@ -12719,12 +12554,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-parallax-scroll-view", "npm": { - "downloads": 11411, - "weekDownloads": 1989, + "downloads": 7751, + "weekDownloads": 1907, "size": 21543, "latestRelease": "0.21.3", "latestReleaseDate": "2018-06-20T11:28:46.845Z" @@ -12737,8 +12573,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.148, - "topicSearchString": "react-native react parallax scrollable scrollview sticky react-component ios android" + "popularity": 0.209, + "topicSearchString": "parallax scrollable scrollview sticky component ios android" }, { "githubUrl": "https://github.com/alinz/react-native-tabbar", @@ -12762,7 +12598,7 @@ "pushedAt": "2016-07-31T17:45:32Z", "forks": 47, "issues": 3, - "subscribers": 10, + "subscribers": 9, "stars": 265, "dependencies": 0 }, @@ -12771,7 +12607,6 @@ "isPrivate": false, "description": "Tab bar with more freedom", "topics": [ - "react-native", "tabbar" ], "license": { @@ -12784,12 +12619,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-tabbar", "npm": { - "downloads": 121, - "weekDownloads": 21, + "downloads": 1872, + "weekDownloads": 20, "latestRelease": "1.0.0", "latestReleaseDate": "2016-08-01T01:12:24.079Z" }, @@ -12799,8 +12635,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, - "topicSearchString": "react-native tabbar" + "popularity": -0.741, + "topicSearchString": "tabbar" }, { "githubUrl": "https://github.com/KBLNY/react-native-message-bar", @@ -12833,9 +12669,6 @@ "isPrivate": false, "description": "A notification bar alert displayed at the top of the screen for react-native", "topics": [ - "react-native", - "react", - "native", "message", "bar", "alert", @@ -12852,12 +12685,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-message-bar", "npm": { - "downloads": 1526, - "weekDownloads": 269, + "downloads": 2531, + "weekDownloads": 472, "size": 35762, "latestRelease": "2.1.0", "latestReleaseDate": "2021-01-31T00:22:24.152Z" @@ -12868,8 +12702,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.6, - "topicSearchString": "react-native react native message bar alert notification status" + "popularity": -0.591, + "topicSearchString": "message bar alert notification status" }, { "githubUrl": "https://github.com/eyaleizenberg/react-native-floating-label-text-input", @@ -12901,8 +12735,7 @@ "isPrivate": false, "description": "A React Native component for floating label text input", "topics": [ - "react-native", - "react-component", + "component", "ios", "animated", "floating", @@ -12919,13 +12752,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-floating-label-text-input", "npm": { - "downloads": 128, - "weekDownloads": 12, + "downloads": 252, + "weekDownloads": 17, "latestRelease": "0.1.5", "latestReleaseDate": "2017-07-30T06:43:00.346Z" }, @@ -12935,8 +12769,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.42, - "topicSearchString": "react-native react-component ios animated floating text-input text-field" + "popularity": -1.442, + "topicSearchString": "component ios animated floating text-input text-field" }, { "githubUrl": "https://github.com/naoufal/react-native-progress-hud", @@ -12960,7 +12794,7 @@ "pushedAt": "2016-04-20T14:09:49Z", "forks": 47, "issues": 6, - "subscribers": 7, + "subscribers": 6, "stars": 258, "dependencies": 1 }, @@ -12969,17 +12803,16 @@ "isPrivate": false, "description": "A clean and lightweight progress HUD for your React Native app.", "topics": [ - "react", - "native", "progress", "hud", "popup", "spinner", "loader", "loading", - "react-component" + "component" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -12988,12 +12821,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-progress-hud", "npm": { - "downloads": 140, - "weekDownloads": 28, + "downloads": 135, + "weekDownloads": 25, "latestRelease": "1.0.4", "latestReleaseDate": "2016-04-20T14:10:06.888Z" }, @@ -13003,8 +12837,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.325, - "topicSearchString": "react native progress hud popup spinner loader loading react-component" + "popularity": -1.339, + "topicSearchString": "progress hud popup spinner loader loading component" }, { "githubUrl": "https://github.com/xcarpentier/react-native-country-picker-modal", @@ -13025,10 +12859,10 @@ "updatedAt": "2025-06-11T09:30:54Z", "createdAt": "2016-03-03T20:13:50Z", "pushedAt": "2025-06-11T09:30:54Z", - "forks": 789, - "issues": 44, - "subscribers": 18, - "stars": 1102, + "forks": 792, + "issues": 45, + "subscribers": 17, + "stars": 1109, "dependencies": 4 }, "name": "react-native-country-picker-modal", @@ -13036,7 +12870,6 @@ "isPrivate": false, "description": "🇦🇶 Country picker provides a modal allowing a user to select a country from a list. It display a flag next to each country name.", "topics": [ - "react-native", "components", "country-picker", "country", @@ -13054,12 +12887,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-country-picker-modal", "npm": { - "downloads": 304064, - "weekDownloads": 49108, + "downloads": 294691, + "weekDownloads": 67178, "size": 267693, "latestRelease": "2.0.0", "latestReleaseDate": "2020-07-30T07:06:27.893Z" @@ -13070,8 +12904,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.137, - "topicSearchString": "react-native components country-picker country flag countries modal" + "popularity": 0.194, + "topicSearchString": "components country-picker country flag countries modal" }, { "githubUrl": "https://github.com/larsvinter/react-native-awesome-button", @@ -13103,12 +12937,10 @@ "isPrivate": false, "description": "A button React Native component supporting showing different states with animations", "topics": [ - "react", - "react-native", - "react-component", + "component", "button", "awesome-button", - "react-ui" + "ui" ], "license": { "key": "mit", @@ -13120,13 +12952,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-awesome-button", "npm": { - "downloads": 36, - "weekDownloads": 2, + "downloads": 49, + "weekDownloads": 5, "latestRelease": "1.8.2", "latestReleaseDate": "2017-02-23T14:53:37.886Z" }, @@ -13136,8 +12969,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.45, - "topicSearchString": "react react-native react-component button awesome-button react-ui" + "popularity": -1.409, + "topicSearchString": "component button awesome-button ui" }, { "githubUrl": "https://github.com/matc4/react-native-svg-uri", @@ -13161,7 +12994,7 @@ "forks": 269, "issues": 84, "subscribers": 13, - "stars": 847, + "stars": 848, "dependencies": 1 }, "name": "react-native-svg-uri", @@ -13169,13 +13002,13 @@ "isPrivate": false, "description": "Render SVG images in React Native from an URL or static file", "topics": [ - "react-native", "svg", "url", "uri", "http" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -13184,13 +13017,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-svg-uri", "npm": { - "downloads": 26335, - "weekDownloads": 4413, + "downloads": 22362, + "weekDownloads": 5173, "latestRelease": "1.2.3", "latestReleaseDate": "2017-11-16T12:38:43.338Z" }, @@ -13202,8 +13036,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, - "topicSearchString": "react-native svg url uri http" + "popularity": -0.553, + "topicSearchString": "svg url uri http" }, { "githubUrl": "https://github.com/webraptor/react-native-deck-swiper", @@ -13231,10 +13065,10 @@ "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": 169, + "stars": 170, "dependencies": 2 }, "name": "react-native-deck-swiper", @@ -13242,7 +13076,6 @@ "isPrivate": false, "description": "tinder like react-native deck swiper ", "topics": [ - "react-native", "component", "tinder", "cards", @@ -13262,12 +13095,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-deck-swiper", "npm": { - "downloads": 36474, - "weekDownloads": 6518, + "downloads": 35541, + "weekDownloads": 7819, "size": 2319587, "latestRelease": "2.0.19", "latestReleaseDate": "2025-08-12T13:43:12.328Z" @@ -13277,8 +13111,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.152, - "topicSearchString": "react-native component tinder cards card swipe swiper deck animation" + "popularity": 0.187, + "topicSearchString": "component tinder cards card swipe swiper deck animation" }, { "githubUrl": "https://github.com/d-a-n/react-native-webbrowser", @@ -13303,7 +13137,7 @@ "forks": 49, "issues": 10, "subscribers": 8, - "stars": 206, + "stars": 207, "dependencies": 1 }, "name": "react-native-webbrowser", @@ -13315,12 +13149,9 @@ "webbrowser", "browser", "web", - "native", - "react", "ios", "android", - "react-native", - "react-component" + "component" ], "license": { "key": "mit", @@ -13332,12 +13163,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-webbrowser", "npm": { - "downloads": 13, - "weekDownloads": 2, + "downloads": 34, + "weekDownloads": 4, "latestRelease": "0.0.6", "latestReleaseDate": "2016-03-18T22:23:40.161Z" }, @@ -13347,8 +13179,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.367, - "topicSearchString": "webview webbrowser browser web native react ios android react-native react-component" + "popularity": -1.4, + "topicSearchString": "webview webbrowser browser web ios android component" }, { "githubUrl": "https://github.com/geremih/react-native-circular-action-menu", @@ -13370,7 +13202,7 @@ "updatedAt": "2018-10-18T10:59:39Z", "createdAt": "2016-07-04T05:31:27Z", "pushedAt": "2018-10-18T10:59:39Z", - "forks": 88, + "forks": 87, "issues": 0, "subscribers": 15, "stars": 475, @@ -13381,7 +13213,6 @@ "isPrivate": false, "description": "Path-esque circular action menu inspired by CircularFloatingActionMenu.", "topics": [ - "react-native", "action-button", "float-button", "multi-action-button", @@ -13399,12 +13230,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-circular-action-menu", "npm": { - "downloads": 363, - "weekDownloads": 71, + "downloads": 377, + "weekDownloads": 80, "size": 351734, "latestRelease": "0.5.0", "latestReleaseDate": "2018-03-24T23:04:00.557Z" @@ -13415,8 +13247,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.333, - "topicSearchString": "react-native action-button float-button multi-action-button circular-menu arc-menu satellite-menu" + "popularity": -1.318, + "topicSearchString": "action-button float-button multi-action-button circular-menu arc-menu satellite-menu" }, { "githubUrl": "https://github.com/danielweinmann/react-native-stateless-form", @@ -13449,9 +13281,6 @@ "isPrivate": false, "description": "Stateless form components for React Native", "topics": [ - "react", - "native", - "react-native", "form", "stateless", "presentational", @@ -13469,12 +13298,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-stateless-form", "npm": { - "downloads": 10, - "weekDownloads": 0, + "downloads": 163, + "weekDownloads": 5, "latestRelease": "0.3.2", "latestReleaseDate": "2017-12-19T17:06:33.287Z" }, @@ -13483,8 +13313,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react native react-native form stateless presentational components ios android" + "popularity": -1.474, + "topicSearchString": "form stateless presentational components ios android" }, { "githubUrl": "https://github.com/kirankalyan5/react-native-segmented-control-tab", @@ -13507,7 +13337,7 @@ "pushedAt": "2022-01-17T21:40:35Z", "forks": 108, "issues": 5, - "subscribers": 6, + "subscribers": 5, "stars": 618, "dependencies": 0 }, @@ -13516,7 +13346,6 @@ "isPrivate": false, "description": "react-native-segmented-control-tab(for Android/iOS)", "topics": [ - "react-native", "custom", "component", "segmentedcontrolios", @@ -13535,13 +13364,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-segmented-control-tab", "npm": { - "downloads": 82391, - "weekDownloads": 13483, + "downloads": 214459, + "weekDownloads": 36325, "size": 31987, "latestRelease": "4.0.0", "latestReleaseDate": "2021-08-26T20:19:00.819Z" @@ -13553,8 +13383,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.611, - "topicSearchString": "react-native custom component segmentedcontrolios segmentedcontroltab ios android controlled-segmentedcontroltab" + "popularity": -0.606, + "topicSearchString": "custom component segmentedcontrolios segmentedcontroltab ios android controlled-segmentedcontroltab" }, { "githubUrl": "https://github.com/rgovindji/react-native-atoz-list", @@ -13578,7 +13408,7 @@ "pushedAt": "2020-07-11T13:46:58Z", "forks": 89, "issues": 18, - "subscribers": 8, + "subscribers": 7, "stars": 183, "dependencies": 0 }, @@ -13592,6 +13422,7 @@ "contactlist" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -13600,12 +13431,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-atoz-list", "npm": { - "downloads": 481, - "weekDownloads": 2, + "downloads": 4051, + "weekDownloads": 548, "size": 287850, "latestRelease": "1.0.5", "latestReleaseDate": "2020-02-25T13:41:46.935Z" @@ -13616,7 +13448,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.496, + "popularity": -0.635, "topicSearchString": "selectlist alphabetlist contactlist" }, { @@ -13642,7 +13474,7 @@ "pushedAt": "2018-06-26T21:16:48Z", "forks": 13, "issues": 0, - "subscribers": 21, + "subscribers": 20, "stars": 159, "dependencies": 1 }, @@ -13651,7 +13483,6 @@ "isPrivate": false, "description": "A responsive Image component that chooses the best-resolution image for the current screen", "topics": [ - "react-native", "responsive", "image", "pixel-ratio" @@ -13666,11 +13497,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1717, - "weekDownloads": 352, + "downloads": 1949, + "weekDownloads": 564, "size": 5962, "latestRelease": "2.0.0", "latestReleaseDate": "2018-06-26T21:17:47.807Z" @@ -13681,8 +13513,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.576, - "topicSearchString": "react-native responsive image pixel-ratio" + "popularity": -0.504, + "topicSearchString": "responsive image pixel-ratio" }, { "githubUrl": "https://github.com/expo/react-native-link", @@ -13707,7 +13539,7 @@ "pushedAt": "2018-01-31T18:02:22Z", "forks": 2, "issues": 0, - "subscribers": 18, + "subscribers": 17, "stars": 14, "dependencies": 0 }, @@ -13716,7 +13548,6 @@ "isPrivate": false, "description": "A element for React Native, analogous to the tag in HTML", "topics": [ - "react-native", "link" ], "license": { @@ -13729,11 +13560,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5, - "weekDownloads": 2, + "downloads": 48, + "weekDownloads": 3, "latestRelease": "4.0.0", "latestReleaseDate": "2018-01-31T18:01:53.054Z" }, @@ -13742,8 +13574,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, - "topicSearchString": "react-native link" + "popularity": -1.695, + "topicSearchString": "link" }, { "githubUrl": "https://github.com/yonahforst/react-native-emoji-picker", @@ -13767,7 +13599,7 @@ "pushedAt": "2018-11-09T14:49:11Z", "forks": 39, "issues": 2, - "subscribers": 6, + "subscribers": 5, "stars": 109, "dependencies": 4 }, @@ -13776,8 +13608,7 @@ "isPrivate": false, "description": "Simple emoji picker for react-native", "topics": [ - "react-native", - "react-component", + "component", "ios", "emoji", "emoji-picker" @@ -13792,12 +13623,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-emoji-picker", "npm": { - "downloads": 749, - "weekDownloads": 119, + "downloads": 577, + "weekDownloads": 145, "latestRelease": "0.2.2", "latestReleaseDate": "2016-08-01T13:28:52.091Z" }, @@ -13806,8 +13638,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.365, - "topicSearchString": "react-native react-component ios emoji emoji-picker" + "popularity": -1.285, + "topicSearchString": "component ios emoji emoji-picker" }, { "githubUrl": "https://github.com/react-native-component/react-native-smart-badge", @@ -13830,7 +13662,7 @@ "updatedAt": "2016-11-13T06:17:39Z", "createdAt": "2016-07-12T06:46:46Z", "pushedAt": "2016-11-13T06:17:39Z", - "forks": 31, + "forks": 30, "issues": 2, "subscribers": 2, "stars": 63, @@ -13841,7 +13673,6 @@ "isPrivate": false, "description": "A smart badge for react-native apps", "topics": [ - "react-native", "smart", "badge", "component" @@ -13856,11 +13687,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 17, - "weekDownloads": 2, + "downloads": 52, + "weekDownloads": 3, "latestRelease": "1.1.1", "latestReleaseDate": "2016-09-09T09:54:37.059Z" }, @@ -13869,8 +13701,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, - "topicSearchString": "react-native smart badge component" + "popularity": -1.45, + "topicSearchString": "smart badge component" }, { "githubUrl": "https://github.com/gcanti/tcomb-form-native", @@ -13892,9 +13724,9 @@ "updatedAt": "2018-10-11T09:07:16Z", "createdAt": "2015-03-28T18:06:13Z", "pushedAt": "2018-10-11T09:07:16Z", - "forks": 428, + "forks": 429, "issues": 112, - "subscribers": 63, + "subscribers": 62, "stars": 3135, "dependencies": 1 }, @@ -13906,9 +13738,7 @@ "tcomb", "form", "forms", - "react", - "react-native", - "react-component" + "component" ], "license": { "key": "mit", @@ -13920,12 +13750,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "tcomb-form-native", "npm": { - "downloads": 17462, - "weekDownloads": 2887, + "downloads": 13370, + "weekDownloads": 2499, "size": 189906, "latestRelease": "0.6.20", "latestReleaseDate": "2018-10-11T09:07:58.706Z" @@ -13938,8 +13769,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, - "topicSearchString": "tcomb form forms react react-native react-component" + "popularity": -0.591, + "topicSearchString": "tcomb form forms component" }, { "githubUrl": "https://github.com/expo/react-native-infinite-scroll-view", @@ -13963,7 +13794,7 @@ "pushedAt": "2018-08-28T21:37:36Z", "forks": 55, "issues": 15, - "subscribers": 28, + "subscribers": 27, "stars": 515, "dependencies": 3 }, @@ -13972,7 +13803,6 @@ "isPrivate": false, "description": "An infinitely scrolling view that notifies you as the scroll offset approaches the bottom", "topics": [ - "react-native", "infinite", "pagination", "scroll-view" @@ -13987,12 +13817,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-infinite-scroll-view", "npm": { - "downloads": 48372, - "weekDownloads": 10440, + "downloads": 40302, + "weekDownloads": 8108, "size": 55756, "latestRelease": "0.4.5", "latestReleaseDate": "2018-08-28T21:38:16.977Z" @@ -14003,8 +13834,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.567, - "topicSearchString": "react-native infinite pagination scroll-view" + "popularity": -0.579, + "topicSearchString": "infinite pagination scroll-view" }, { "githubUrl": "https://github.com/expo/react-native-invertible-scroll-view", @@ -14027,7 +13858,7 @@ "pushedAt": "2023-01-27T04:39:42Z", "forks": 78, "issues": 19, - "subscribers": 23, + "subscribers": 22, "stars": 464, "dependencies": 4 }, @@ -14036,7 +13867,6 @@ "isPrivate": false, "description": "An invertible ScrollView for React Native", "topics": [ - "react-native", "invertible", "scroll-view" ], @@ -14050,13 +13880,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-invertible-scroll-view", "npm": { - "downloads": 4664, - "weekDownloads": 796, + "downloads": 4854, + "weekDownloads": 1101, "size": 13028, "latestRelease": "2.0.0", "latestReleaseDate": "2019-07-23T18:56:21.467Z" @@ -14067,8 +13898,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, - "topicSearchString": "react-native invertible scroll-view" + "popularity": -0.557, + "topicSearchString": "invertible scroll-view" }, { "githubUrl": "https://github.com/magicismight/react-native-root-modal", @@ -14100,8 +13931,7 @@ "isPrivate": false, "description": "A pure JavaScript solution for react native`s modal component", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "modal", @@ -14117,12 +13947,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-root-modal", "npm": { - "downloads": 2218, - "weekDownloads": 301, + "downloads": 2014, + "weekDownloads": 525, "size": 7122, "latestRelease": "5.0.1", "latestReleaseDate": "2021-03-03T08:00:41.624Z" @@ -14133,8 +13964,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.116, - "topicSearchString": "react-component react-native ios android modal popover" + "popularity": 0.222, + "topicSearchString": "component ios android modal popover" }, { "githubUrl": "https://github.com/jorilallo/react-native-emoji", @@ -14167,9 +13998,8 @@ "isPrivate": false, "description": "☕Emoji component for React Native", "topics": [ - "react-native", "emoji", - "react-component", + "component", "ios" ], "license": { @@ -14182,12 +14012,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-emoji", "npm": { - "downloads": 8225, - "weekDownloads": 1380, + "downloads": 9484, + "weekDownloads": 2022, "size": 3197, "latestRelease": "1.8.0", "latestReleaseDate": "2019-06-05T17:35:14.441Z" @@ -14198,8 +14029,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, - "topicSearchString": "react-native emoji react-component ios" + "popularity": -0.569, + "topicSearchString": "emoji component ios" }, { "githubUrl": "https://github.com/CharlesMangwa/react-native-simple-markdown", @@ -14223,7 +14054,7 @@ "forks": 123, "issues": 40, "subscribers": 5, - "stars": 417, + "stars": 418, "dependencies": 3 }, "name": "react-native-simple-markdown", @@ -14231,15 +14062,12 @@ "isPrivate": false, "description": "📜 React Native Markdown component (iOS & Android).", "topics": [ - "react-native", - "native", "markdown", "md", "parse", "parser", "ios", "android", - "react", "library" ], "license": { @@ -14252,13 +14080,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-simple-markdown", "npm": { - "downloads": 4380, - "weekDownloads": 581, + "downloads": 4908, + "weekDownloads": 959, "latestRelease": "1.1.0", "latestReleaseDate": "2018-01-18T08:07:20.100Z" }, @@ -14268,8 +14097,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.637, - "topicSearchString": "react-native native markdown md parse parser ios android react library" + "popularity": -0.584, + "topicSearchString": "markdown md parse parser ios android library" }, { "githubUrl": "https://github.com/gnestor/react-native-statusbar-alert", @@ -14292,7 +14121,7 @@ "pushedAt": "2018-09-13T13:17:00Z", "forks": 27, "issues": 6, - "subscribers": 7, + "subscribers": 6, "stars": 231, "dependencies": 0 }, @@ -14301,7 +14130,6 @@ "isPrivate": false, "description": "A status bar alert (e.g. in-call, recording, navigating) for React Native", "topics": [ - "react-native", "status-bar", "alert", "banner", @@ -14310,6 +14138,7 @@ "statusbar" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -14318,13 +14147,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-statusbar-alert", "npm": { - "downloads": 1918, - "weekDownloads": 421, + "downloads": 1284, + "weekDownloads": 290, "latestRelease": "0.4.0", "latestReleaseDate": "2017-10-16T07:14:37.134Z" }, @@ -14334,8 +14164,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.563, - "topicSearchString": "react-native status-bar alert banner ios android statusbar" + "popularity": -0.558, + "topicSearchString": "status-bar alert banner ios android statusbar" }, { "githubUrl": "https://github.com/knowbody/react-native-text", @@ -14356,10 +14186,10 @@ "updatedAt": "2021-05-11T06:51:34Z", "createdAt": "2016-08-20T16:35:22Z", "pushedAt": "2021-05-11T06:51:34Z", - "forks": 26, + "forks": 27, "issues": 1, - "subscribers": 6, - "stars": 268, + "subscribers": 5, + "stars": 269, "dependencies": 0 }, "name": "react-native-text", @@ -14368,12 +14198,10 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Text scales the font size based on a device width", "topics": [ - "react-native", "scaled", "ios", "android", - "text", - "react" + "text" ], "license": { "key": "mit", @@ -14385,13 +14213,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-text", "npm": { - "downloads": 3834, - "weekDownloads": 668, + "downloads": 2638, + "weekDownloads": 436, "size": 19122, "latestRelease": "1.2.2", "latestReleaseDate": "2021-05-11T06:51:59.171Z" @@ -14402,8 +14231,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, - "topicSearchString": "react-native scaled ios android text react" + "popularity": -0.609, + "topicSearchString": "scaled ios android text" }, { "githubUrl": "https://github.com/cooperka/react-native-immutable-list-view", @@ -14426,7 +14255,7 @@ "pushedAt": "2019-10-19T01:55:38Z", "forks": 28, "issues": 2, - "subscribers": 5, + "subscribers": 4, "stars": 204, "dependencies": 2 }, @@ -14435,7 +14264,6 @@ "isPrivate": false, "description": ":scroll: Drop-in replacement for ListView, FlatList, and VirtualizedList.", "topics": [ - "react", "listview", "datasource", "pure", @@ -14443,7 +14271,6 @@ "list", "map", "set", - "react-native", "immutablejs", "component", "flatlist", @@ -14459,13 +14286,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-immutable-list-view", "npm": { - "downloads": 634, - "weekDownloads": 63, + "downloads": 749, + "weekDownloads": 135, "size": 129212, "latestRelease": "2.0.0", "latestReleaseDate": "2019-10-19T01:55:35.246Z" @@ -14476,8 +14304,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.415, - "topicSearchString": "react listview datasource pure immutable list map set react-native immutablejs component flatlist virtualizedlist" + "popularity": -1.347, + "topicSearchString": "listview datasource pure immutable list map set immutablejs component flatlist virtualizedlist" }, { "githubUrl": "https://github.com/tuantle/react-native-search-header", @@ -14501,7 +14329,7 @@ "forks": 30, "issues": 14, "subscribers": 7, - "stars": 192, + "stars": 191, "dependencies": 2 }, "name": "react-native-search-header", @@ -14510,7 +14338,6 @@ "description": "Easy to use React Native search header component based on material design patterns.", "topics": [ "search-header", - "react-native", "android", "ios", "search", @@ -14531,13 +14358,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-search-header", "npm": { - "downloads": 201, - "weekDownloads": 17, + "downloads": 386, + "weekDownloads": 28, "size": 1669279, "latestRelease": "0.3.5", "latestReleaseDate": "2019-09-09T22:28:24.157Z" @@ -14548,8 +14376,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.428, - "topicSearchString": "search-header react-native android ios search header mobile material-design component ui uikit" + "popularity": -1.438, + "topicSearchString": "search-header android ios search header mobile material-design component ui uikit" }, { "githubUrl": "https://github.com/wildlifela/react-native-device-monitor", @@ -14581,7 +14409,6 @@ "isPrivate": false, "description": "Monitor Device State", "topics": [ - "react-native", "device", "keyboard", "net-info", @@ -14598,12 +14425,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-device-monitor", "npm": { - "downloads": 5, + "downloads": 14, "weekDownloads": 0, "latestRelease": "2.0.0", "latestReleaseDate": "2017-10-25T16:05:41.345Z" @@ -14614,12 +14442,13 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native device keyboard net-info android ios" + "topicSearchString": "device keyboard net-info android ios" }, { "githubUrl": "https://github.com/callstack/react-native-fbads", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/callstack/react-native-fbads", @@ -14636,8 +14465,8 @@ "pushedAt": "2022-05-16T20:08:07Z", "forks": 136, "issues": 35, - "subscribers": 24, - "stars": 445, + "subscribers": 23, + "stars": 447, "dependencies": 2 }, "name": "react-native-fbads", @@ -14645,10 +14474,9 @@ "isPrivate": false, "description": "Facebook Audience SDK integration for React Native", "topics": [ - "react-native", "facebook", "audience-network", - "native-ads", + "ads", "facebook-sdk", "javascript" ], @@ -14662,13 +14490,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "unmaintained": true, "npmPkg": "react-native-fbads", "npm": { - "downloads": 2330, - "weekDownloads": 167, + "downloads": 2784, + "weekDownloads": 319, "size": 212607, "latestRelease": "7.1.1", "latestReleaseDate": "2023-08-17T07:58:18.332Z" @@ -14679,14 +14509,15 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.689, - "topicSearchString": "react-native facebook audience-network native-ads facebook-sdk javascript" + "popularity": -0.653, + "topicSearchString": "facebook audience-network ads facebook-sdk javascript" }, { "githubUrl": "https://github.com/BranchMetrics/react-native-branch-deep-linking-attribution", "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", @@ -14701,7 +14532,7 @@ "updatedAt": "2025-07-26T00:25:06Z", "createdAt": "2016-04-10T23:56:20Z", "pushedAt": "2025-07-26T00:25:06Z", - "forks": 188, + "forks": 189, "issues": 0, "subscribers": 73, "stars": 536, @@ -14712,8 +14543,7 @@ "isPrivate": false, "description": "The Branch React Native SDK for deep linking and attribution. Branch helps mobile apps grow with deep links / deeplinks that power paid acquisition and re-engagement campaigns, referral programs, content sharing, deep linked emails, smart banners, custom user onboarding, and more. ", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "branch", @@ -14725,7 +14555,6 @@ "universal-links", "app-links", "analytics", - "react", "deep-linking" ], "license": { @@ -14738,11 +14567,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 407423, - "weekDownloads": 59371, + "downloads": 469512, + "weekDownloads": 116116, "size": 240896, "latestRelease": "6.8.0", "latestReleaseDate": "2025-07-22T16:41:27.839Z" @@ -14753,8 +14583,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.124, - "topicSearchString": "react-native react-component ios android branch metrics deeplink deep link attribution universal-links app-links analytics react deep-linking" + "popularity": 0.21, + "topicSearchString": "component ios android branch metrics deeplink deep link attribution universal-links app-links analytics deep-linking" }, { "githubUrl": "https://github.com/xxsnakerxx/react-native-social-auth", @@ -14785,14 +14615,12 @@ "isPrivate": false, "description": "React Native module provides auth methods via social networks using native APIs", "topics": [ - "react-native", "module", "auth", "ios", "android", "facebook", - "twitter", - "native" + "twitter" ], "license": { "key": "mit", @@ -14804,13 +14632,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-social-auth", "npm": { - "downloads": 438, - "weekDownloads": 17, + "downloads": 405, + "weekDownloads": 68, "latestRelease": "2.0.0", "latestReleaseDate": "2017-08-02T16:40:41.429Z" }, @@ -14819,8 +14648,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.467, - "topicSearchString": "react-native module auth ios android facebook twitter native" + "popularity": -1.357, + "topicSearchString": "module auth ios android facebook twitter" }, { "githubUrl": "https://github.com/corbt/react-native-keep-awake", @@ -14847,7 +14676,7 @@ "forks": 127, "issues": 4, "subscribers": 7, - "stars": 623, + "stars": 622, "dependencies": 0 }, "name": "react-native-keep-awake", @@ -14855,7 +14684,6 @@ "isPrivate": false, "description": "Keep the screen from going to sleep. iOS and Android.", "topics": [ - "react-native", "ios", "android", "awake", @@ -14873,12 +14701,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-keep-awake", "npm": { - "downloads": 173623, - "weekDownloads": 29256, + "downloads": 146020, + "weekDownloads": 36717, "size": 26051, "latestRelease": "4.0.0", "latestReleaseDate": "2018-10-28T22:11:26.129Z" @@ -14890,8 +14719,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, - "topicSearchString": "react-native ios android awake screen lock sleep" + "popularity": -0.536, + "topicSearchString": "ios android awake screen lock sleep" }, { "githubUrl": "https://github.com/lucasferreira/react-native-send-intent", @@ -14914,7 +14743,7 @@ "forks": 150, "issues": 51, "subscribers": 9, - "stars": 427, + "stars": 426, "dependencies": 0 }, "name": "react-native-send-intent", @@ -14922,9 +14751,7 @@ "isPrivate": false, "description": "React Native Android module to use Android's Intent actions for send text to shareable apps or make phone calls or opening third party apps", "topics": [ - "react", - "react-native", - "react-component", + "component", "intent", "email", "send", @@ -14950,13 +14777,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-send-intent", "npm": { - "downloads": 39715, - "weekDownloads": 7719, + "downloads": 33491, + "weekDownloads": 8398, "size": 59468, "latestRelease": "1.3.0", "latestReleaseDate": "2021-09-28T12:20:30.889Z" @@ -14967,8 +14795,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, - "topicSearchString": "react react-native react-component intent email send sent share text phone sms call calls dial number maps android" + "popularity": -0.537, + "topicSearchString": "component intent email send sent share text phone sms call calls dial number maps android" }, { "githubUrl": "https://github.com/NishanthShankar/react-native-android-statusbar", @@ -14999,8 +14827,7 @@ "isPrivate": false, "description": "A react native android module to control the android statusbar.", "topics": [ - "react-component", - "react-native", + "component", "android" ], "license": { @@ -15013,13 +14840,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-android-statusbar", "npm": { - "downloads": 82, - "weekDownloads": 26, + "downloads": 52, + "weekDownloads": 1, "latestRelease": "0.1.3", "latestReleaseDate": "2016-08-16T14:49:49.829Z" }, @@ -15028,8 +14856,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.226, - "topicSearchString": "react-component react-native android" + "popularity": -1.483, + "topicSearchString": "component android" }, { "githubUrl": "https://github.com/react-native-component/react-native-smart-splash-screen", @@ -15060,7 +14888,6 @@ "isPrivate": false, "description": "A smart splash screen for React Native apps", "topics": [ - "react-native", "smart", "splash", "screen", @@ -15077,13 +14904,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-smart-splash-screen", "npm": { - "downloads": 574, - "weekDownloads": 91, + "downloads": 472, + "weekDownloads": 22, "latestRelease": "2.3.5", "latestReleaseDate": "2017-08-17T11:33:32.341Z" }, @@ -15093,8 +14921,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.365, - "topicSearchString": "react-native smart splash screen splashscreen component" + "popularity": -1.46, + "topicSearchString": "smart splash screen splashscreen component" }, { "githubUrl": "https://github.com/mehcode/rn-splash-screen", @@ -15116,7 +14944,7 @@ "pushedAt": "2017-09-12T00:03:06Z", "forks": 87, "issues": 10, - "subscribers": 11, + "subscribers": 10, "stars": 350, "dependencies": 0 }, @@ -15125,8 +14953,7 @@ "isPrivate": false, "description": "A JavaScript-controlled splash-screen for React Native designed to be run directly after the native splash-screen.", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "splashscreen", @@ -15147,13 +14974,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-splash-screen", "npm": { - "downloads": 75, - "weekDownloads": 1, + "downloads": 116, + "weekDownloads": 7, "latestRelease": "5.2.0", "latestReleaseDate": "2017-09-12T00:03:14.833Z" }, @@ -15163,8 +14991,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.488, - "topicSearchString": "react-native react-component ios android splashscreen splash launchui show hide mobile splash-screen" + "popularity": -1.448, + "topicSearchString": "component ios android splashscreen splash launchui show hide mobile splash-screen" }, { "githubUrl": "https://github.com/voronianski/react-native-effects-view", @@ -15185,7 +15013,7 @@ "pushedAt": "2017-12-08T15:56:44Z", "forks": 21, "issues": 7, - "subscribers": 8, + "subscribers": 7, "stars": 388, "dependencies": 1 }, @@ -15194,9 +15022,7 @@ "isPrivate": false, "description": "Use iOS8 UIVisualEffectViews's blur and vibrancy with ReactNative", "topics": [ - "react", - "react-native", - "react-component", + "component", "ios", "blur", "uiview", @@ -15212,13 +15038,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-effects-view", "npm": { - "downloads": 47, - "weekDownloads": 11, + "downloads": 66, + "weekDownloads": 27, "latestRelease": "0.4.0", "latestReleaseDate": "2016-09-02T19:00:55.877Z" }, @@ -15228,8 +15055,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "react react-native react-component ios blur uiview view" + "popularity": -1.14, + "topicSearchString": "component ios blur uiview view" }, { "githubUrl": "https://github.com/timfpark/react-native-location", @@ -15249,9 +15076,9 @@ "updatedAt": "2022-12-30T19:44:45Z", "createdAt": "2015-06-06T00:20:31Z", "pushedAt": "2022-12-30T19:44:45Z", - "forks": 196, + "forks": 197, "issues": 62, - "subscribers": 14, + "subscribers": 13, "stars": 892, "dependencies": 0 }, @@ -15260,8 +15087,7 @@ "isPrivate": false, "description": "React Native plug-in that provides GPS location information", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "location" @@ -15276,13 +15102,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-location", "npm": { - "downloads": 13322, - "weekDownloads": 2097, + "downloads": 14842, + "weekDownloads": 2964, "size": 583629, "latestRelease": "2.5.0", "latestReleaseDate": "2019-08-10T21:59:20.669Z" @@ -15294,14 +15121,15 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, - "topicSearchString": "react-native react-component ios android location" + "popularity": -0.58, + "topicSearchString": "component ios android location" }, { "githubUrl": "https://github.com/yonahforst/react-native-permissions", "ios": true, "android": true, "windows": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/zoontek/react-native-permissions", @@ -15316,10 +15144,10 @@ "updatedAt": "2025-07-22T17:21:47Z", "createdAt": "2016-03-24T16:33:42Z", "pushedAt": "2025-07-22T17:21:47Z", - "forks": 767, - "issues": 8, - "subscribers": 35, - "stars": 4272, + "forks": 766, + "issues": 9, + "subscribers": 34, + "stars": 4280, "dependencies": 0 }, "name": "react-native-permissions", @@ -15327,11 +15155,9 @@ "isPrivate": false, "description": "An unified permissions API for React Native on iOS, Android and Windows.", "topics": [ - "react-native", "windows", "permission", "authorization", - "react", "permissions" ], "license": { @@ -15344,25 +15170,26 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-permissions", "npm": { - "downloads": 2227599, - "weekDownloads": 364315, + "downloads": 2148107, + "weekDownloads": 502194, "size": 427050, "latestRelease": "5.4.2", "latestReleaseDate": "2025-07-22T17:24:24.646Z" }, - "score": 92, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.139, - "topicSearchString": "react-native windows permission authorization react permissions" + "popularity": 0.199, + "topicSearchString": "windows permission authorization permissions" }, { "githubUrl": "https://github.com/gre/react-native-view-shot", @@ -15385,10 +15212,10 @@ "updatedAt": "2024-12-06T21:21:21Z", "createdAt": "2016-08-23T20:02:58Z", "pushedAt": "2024-12-06T21:21:21Z", - "forks": 338, + "forks": 340, "issues": 111, - "subscribers": 16, - "stars": 2845, + "subscribers": 15, + "stars": 2859, "dependencies": 1 }, "name": "react-native-view-shot", @@ -15396,7 +15223,6 @@ "isPrivate": false, "description": "Snapshot a React Native view and save it to an image", "topics": [ - "react-native", "screenshot", "viewshot", "view-snapshot", @@ -15414,26 +15240,28 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-view-shot", "npm": { - "downloads": 1103390, - "weekDownloads": 174188, + "downloads": 1240998, + "weekDownloads": 282601, "size": 1721726, "latestRelease": "4.0.3", "latestReleaseDate": "2024-12-06T21:21:10.380Z" }, - "score": 46, + "score": 73, "matchingScoreModifiers": [ + "Very popular", "Popular", "Known", "Lots of open issues", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.134, - "topicSearchString": "react-native screenshot viewshot view-snapshot snapshot rasterize capture" + "popularity": 0.194, + "topicSearchString": "screenshot viewshot view-snapshot snapshot rasterize capture" }, { "githubUrl": "https://github.com/naoufal/react-native-safari-view", @@ -15456,10 +15284,10 @@ "updatedAt": "2020-05-03T15:58:06Z", "createdAt": "2015-06-25T00:45:18Z", "pushedAt": "2020-05-03T15:58:06Z", - "forks": 104, + "forks": 103, "issues": 14, - "subscribers": 5, - "stars": 494, + "subscribers": 4, + "stars": 495, "dependencies": 0 }, "name": "react-native-safari-view", @@ -15467,20 +15295,17 @@ "isPrivate": false, "description": "A React Native wrapper for Safari View Controller.", "topics": [ - "react-native", - "react", - "native", "webview", "web", "view", "safari", "safariview", - "react-component", "component", "apple", "safari-view-controller" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -15489,13 +15314,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-safari-view", "npm": { - "downloads": 32663, - "weekDownloads": 4937, + "downloads": 36429, + "weekDownloads": 8028, "latestRelease": "2.1.0", "latestReleaseDate": "2017-10-02T15:25:24.353Z" }, @@ -15505,8 +15331,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, - "topicSearchString": "react-native react native webview web view safari safariview react-component component apple safari-view-controller" + "popularity": -0.563, + "topicSearchString": "webview web view safari safariview component apple safari-view-controller" }, { "githubUrl": "https://github.com/fullstackreact/react-native-oauth", @@ -15537,8 +15363,6 @@ "isPrivate": false, "description": "A react-native wrapper for social authentication login for both Android and iOS", "topics": [ - "react", - "react-native", "firestack", "firebase", "oauth", @@ -15554,13 +15378,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-oauth", "npm": { - "downloads": 2416, - "weekDownloads": 36, + "downloads": 8631, + "weekDownloads": 534, "size": 54105060, "latestRelease": "2.1.18", "latestReleaseDate": "2018-07-29T21:51:17.724Z" @@ -15573,8 +15398,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.737, - "topicSearchString": "react react-native firestack firebase oauth twitter" + "popularity": -0.697, + "topicSearchString": "firestack firebase oauth twitter" }, { "githubUrl": "https://github.com/pwmckenna/react-native-motion-manager", @@ -15597,7 +15422,7 @@ "pushedAt": "2017-09-27T12:13:53Z", "forks": 64, "issues": 10, - "subscribers": 9, + "subscribers": 8, "stars": 248, "dependencies": 0 }, @@ -15606,8 +15431,7 @@ "isPrivate": false, "description": "CMMotionManager wrapper for react-native", "topics": [ - "react-component", - "react-native", + "component", "ios", "cmmotionmanager", "motionmanager", @@ -15625,12 +15449,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-motion-manager", "npm": { - "downloads": 23, - "weekDownloads": 1, + "downloads": 284, + "weekDownloads": 4, "latestRelease": "0.0.7", "latestReleaseDate": "2017-09-27T12:17:54.830Z" }, @@ -15640,8 +15465,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.46, - "topicSearchString": "react-component react-native ios cmmotionmanager motionmanager gyroscope accelerometer magnetometer" + "popularity": -1.488, + "topicSearchString": "component ios cmmotionmanager motionmanager gyroscope accelerometer magnetometer" }, { "githubUrl": "https://github.com/terrillo/rn-apple-healthkit", @@ -15665,7 +15490,7 @@ "pushedAt": "2021-04-14T01:50:45Z", "forks": 253, "issues": 67, - "subscribers": 16, + "subscribers": 15, "stars": 526, "dependencies": 0 }, @@ -15678,9 +15503,6 @@ "health-kit", "healthkit", "reactnative", - "react-native", - "react", - "native", "ios" ], "license": { @@ -15693,13 +15515,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-apple-healthkit", "npm": { - "downloads": 624, - "weekDownloads": 137, + "downloads": 1047, + "weekDownloads": 165, "size": 259249, "latestRelease": "0.8.0", "latestReleaseDate": "2020-01-21T15:34:44.210Z" @@ -15711,8 +15534,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.312, - "topicSearchString": "apple health-kit healthkit reactnative react-native react native ios" + "popularity": -0.616, + "topicSearchString": "apple health-kit healthkit reactnative ios" }, { "githubUrl": "https://github.com/rt2zz/react-native-contacts", @@ -15736,9 +15559,9 @@ "createdAt": "2015-10-16T06:35:30Z", "pushedAt": "2025-09-03T23:41:51Z", "forks": 562, - "issues": 5, - "subscribers": 27, - "stars": 1675, + "issues": 6, + "subscribers": 26, + "stars": 1679, "dependencies": 0 }, "name": "react-native-contacts", @@ -15746,14 +15569,11 @@ "isPrivate": false, "description": "React Native Contacts", "topics": [ - "react-native", - "react", - "react-component", + "component", "addressbook", "contacts", "ios", "android", - "component", "phone", "mobile" ], @@ -15767,25 +15587,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-contacts", "npm": { - "downloads": 257538, - "weekDownloads": 43157, + "downloads": 232858, + "weekDownloads": 54175, "size": 305189, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-03T23:44:18.566Z" }, - "score": 73, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.142, - "topicSearchString": "react-native react react-component addressbook contacts ios android component phone mobile" + "popularity": 0.198, + "topicSearchString": "component addressbook contacts ios android phone mobile" }, { "githubUrl": "https://github.com/vikeri/react-native-background-job", @@ -15806,7 +15625,7 @@ "pushedAt": "2019-12-16T15:33:01Z", "forks": 107, "issues": 71, - "subscribers": 15, + "subscribers": 14, "stars": 750, "dependencies": 0 }, @@ -15815,7 +15634,6 @@ "isPrivate": false, "description": "Schedule background jobs in React Native that run your JavaScript when your app is in the background/killed.", "topics": [ - "react-native", "background-job", "scheduled-jobs", "background-jobs" @@ -15830,13 +15648,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-background-job", "npm": { - "downloads": 1916, - "weekDownloads": 301, + "downloads": 2988, + "weekDownloads": 553, "size": 118071, "latestRelease": "2.3.1", "latestReleaseDate": "2019-08-02T14:35:33.022Z" @@ -15848,8 +15667,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, - "topicSearchString": "react-native background-job scheduled-jobs background-jobs" + "popularity": -0.593, + "topicSearchString": "background-job scheduled-jobs background-jobs" }, { "githubUrl": "https://github.com/devfd/react-native-geocoder", @@ -15872,7 +15691,7 @@ "pushedAt": "2017-10-11T13:12:35Z", "forks": 160, "issues": 37, - "subscribers": 9, + "subscribers": 8, "stars": 426, "dependencies": 0 }, @@ -15881,8 +15700,7 @@ "isPrivate": false, "description": "geocoding services for react native", "topics": [ - "react-component", - "react-native", + "component", "geocoding", "ios", "android" @@ -15897,12 +15715,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-geocoder", "npm": { - "downloads": 13773, - "weekDownloads": 2623, + "downloads": 13207, + "weekDownloads": 2346, "latestRelease": "0.5.0", "latestReleaseDate": "2017-10-11T13:10:35.420Z" }, @@ -15912,8 +15731,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.588, - "topicSearchString": "react-component react-native geocoding ios android" + "popularity": -0.599, + "topicSearchString": "component geocoding ios android" }, { "githubUrl": "https://github.com/walmartlabs/react-native-orientation-listener", @@ -15936,7 +15755,7 @@ "pushedAt": "2020-08-17T17:57:33Z", "forks": 29, "issues": 0, - "subscribers": 8, + "subscribers": 7, "stars": 149, "dependencies": 0 }, @@ -15945,7 +15764,6 @@ "isPrivate": false, "description": "A react-native library for obtaining current device orientation", "topics": [ - "react-native", "orientation", "device-orientation" ], @@ -15959,12 +15777,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-orientation-listener", "npm": { - "downloads": 31, - "weekDownloads": 0, + "downloads": 88, + "weekDownloads": 5, "latestRelease": "0.0.4", "latestReleaseDate": "2016-03-07T01:32:49.989Z" }, @@ -15974,8 +15793,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native orientation device-orientation" + "popularity": -1.45, + "topicSearchString": "orientation device-orientation" }, { "githubUrl": "https://github.com/kkjdaniel/react-native-device-display", @@ -16006,8 +15825,7 @@ "isPrivate": false, "description": "📲 Create dynamic views through device, display and orientation detection (DEPRECATED)", "topics": [ - "react-component", - "react-native", + "component", "ios", "display", "viewport", @@ -16027,12 +15845,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-device-display", "npm": { - "downloads": 6, - "weekDownloads": 0, + "downloads": 62, + "weekDownloads": 2, "latestRelease": "1.0.4", "latestReleaseDate": "2015-07-24T12:53:31.048Z" }, @@ -16041,8 +15860,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-component react-native ios display viewport device orientation orientation-changes universal-apps device-detection" + "popularity": -1.471, + "topicSearchString": "component ios display viewport device orientation orientation-changes universal-apps device-detection" }, { "githubUrl": "https://github.com/transistorsoft/react-native-background-fetch", @@ -16052,6 +15871,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/transistorsoft/react-native-background-fetch", @@ -16068,8 +15888,8 @@ "pushedAt": "2025-05-02T13:35:31Z", "forks": 190, "issues": 0, - "subscribers": 22, - "stars": 1580, + "subscribers": 21, + "stars": 1584, "dependencies": 0 }, "name": "react-native-background-fetch", @@ -16077,8 +15897,7 @@ "isPrivate": false, "description": "Periodic callbacks in the background for both IOS and Android", "topics": [ - "react-native", - "react-component", + "component", "ios", "background", "fetch" @@ -16093,24 +15912,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-background-fetch", "npm": { - "downloads": 232818, - "weekDownloads": 40158, + "downloads": 227455, + "weekDownloads": 48855, "size": 2021445, "latestRelease": "4.2.8", "latestReleaseDate": "2025-05-02T13:36:50.699Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.147, - "topicSearchString": "react-native react-component ios background fetch" + "popularity": 0.183, + "topicSearchString": "component ios background fetch" }, { "githubUrl": "https://github.com/lrettig/react-native-stripe", @@ -16144,10 +15963,7 @@ "android", "ios", "login", - "native", - "react", - "react-component", - "react-native", + "component", "sdk", "stripe" ], @@ -16161,12 +15977,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-stripe", "npm": { - "downloads": 50, - "weekDownloads": 2, + "downloads": 157, + "weekDownloads": 4, "latestRelease": "1.2.2", "latestReleaseDate": "2017-05-01T12:37:02.644Z" }, @@ -16175,8 +15992,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.464, - "topicSearchString": "android ios login native react react-component react-native sdk stripe" + "popularity": -1.478, + "topicSearchString": "android ios login component sdk stripe" }, { "githubUrl": "https://github.com/naoufal/react-native-speech", @@ -16198,7 +16015,7 @@ "pushedAt": "2016-01-09T20:43:35Z", "forks": 41, "issues": 20, - "subscribers": 5, + "subscribers": 4, "stars": 302, "dependencies": 0 }, @@ -16207,17 +16024,14 @@ "isPrivate": false, "description": "A text-to-speech library for React Native.", "topics": [ - "react-native", - "react", - "native", "siri", "speech", "speak", "speech-to-text", - "react-component", "component" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -16226,12 +16040,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-speech", "npm": { - "downloads": 69, - "weekDownloads": 5, + "downloads": 108, + "weekDownloads": 14, "latestRelease": "0.1.2", "latestReleaseDate": "2016-01-09T20:44:09.432Z" }, @@ -16241,8 +16056,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.438, - "topicSearchString": "react-native react native siri speech speak speech-to-text react-component component" + "popularity": -1.388, + "topicSearchString": "siri speech speak speech-to-text component" }, { "githubUrl": "https://github.com/wix/react-native-wordpress-editor", @@ -16265,8 +16080,8 @@ "pushedAt": "2016-11-20T16:49:35Z", "forks": 37, "issues": 6, - "subscribers": 311, - "stars": 247, + "subscribers": 309, + "stars": 246, "dependencies": 0 }, "name": "react-native-wordpress-editor", @@ -16285,12 +16100,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-wordpress-editor", "npm": { - "downloads": 534, - "weekDownloads": 62, + "downloads": 8946, + "weekDownloads": 1958, "latestRelease": "2.0.1", "latestReleaseDate": "2016-11-20T16:50:28.964Z" }, @@ -16302,7 +16118,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.401, + "popularity": -0.564, "topicSearchString": "" }, { @@ -16334,8 +16150,7 @@ "description": "The high-quality iOS native search bar for react native.", "topics": [ "search-bar", - "react-component", - "react-native", + "component", "ios" ], "license": { @@ -16348,13 +16163,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-search-bar", "npm": { - "downloads": 1635, - "weekDownloads": 273, + "downloads": 2580, + "weekDownloads": 531, "size": 59417, "latestRelease": "3.5.1", "latestReleaseDate": "2019-10-20T12:37:56.570Z" @@ -16366,8 +16182,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, - "topicSearchString": "search-bar react-component react-native ios" + "popularity": -0.575, + "topicSearchString": "search-bar component ios" }, { "githubUrl": "https://github.com/fixt/react-native-digits", @@ -16399,7 +16215,6 @@ "isPrivate": false, "description": "Digits wrapper to use in React Native", "topics": [ - "react-native", "component", "fabric", "twitter", @@ -16417,12 +16232,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-digits", "npm": { - "downloads": 21, - "weekDownloads": 5, + "downloads": 58, + "weekDownloads": 8, "latestRelease": "0.3.0", "latestReleaseDate": "2016-07-08T15:12:49.573Z" }, @@ -16431,8 +16247,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.25, - "topicSearchString": "react-native component fabric twitter authentication digits android" + "popularity": -1.377, + "topicSearchString": "component fabric twitter authentication digits android" }, { "githubUrl": "https://github.com/chrisfisher/react-native-directed-scrollview", @@ -16464,17 +16280,14 @@ "isPrivate": false, "description": "UNMAINTAINED- see below. A natively implemented scrollview component which lets you specify different scroll directions for child content.", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "scrollview", "horizontal", "vertical", "direction", - "native", "scroll", - "react", "javascript", "reactnative" ], @@ -16488,12 +16301,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-directed-scrollview", "npm": { - "downloads": 57, - "weekDownloads": 6, + "downloads": 109, + "weekDownloads": 5, "size": 48332, "latestRelease": "2.0.0", "latestReleaseDate": "2018-12-15T21:28:09.576Z" @@ -16504,8 +16318,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.408, - "topicSearchString": "react-component react-native ios android scrollview horizontal vertical direction native scroll react javascript reactnative" + "popularity": -1.46, + "topicSearchString": "component ios android scrollview horizontal vertical direction scroll javascript reactnative" }, { "githubUrl": "https://github.com/wix/react-native-keyboard-input", @@ -16528,8 +16342,8 @@ "pushedAt": "2020-08-30T10:54:32Z", "forks": 145, "issues": 53, - "subscribers": 275, - "stars": 832, + "subscribers": 273, + "stars": 833, "dependencies": 2 }, "name": "react-native-keyboard-input", @@ -16538,9 +16352,7 @@ "registry": "https://registry.npmjs.org/", "description": "Use your own custom input component instead of the system keyboard", "topics": [ - "react-native", - "react", - "react-component", + "component", "custom-input", "input", "ios", @@ -16560,12 +16372,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-keyboard-input", "npm": { - "downloads": 3774, - "weekDownloads": 587, + "downloads": 3068, + "weekDownloads": 500, "size": 566469, "latestRelease": "6.0.2", "latestReleaseDate": "2020-07-05T14:34:55.296Z" @@ -16577,8 +16390,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.618, - "topicSearchString": "react-native react react-component custom-input input ios android keyboard-input keyboard keyboard-component inputaccessoryview" + "popularity": -0.611, + "topicSearchString": "component custom-input input ios android keyboard-input keyboard keyboard-component inputaccessoryview" }, { "githubUrl": "https://github.com/kayla-tech/react-native-privacy-snapshot", @@ -16598,10 +16411,10 @@ "updatedAt": "2017-02-28T01:43:05Z", "createdAt": "2015-10-07T03:59:00Z", "pushedAt": "2017-02-28T01:43:05Z", - "forks": 33, + "forks": 32, "issues": 5, "subscribers": 12, - "stars": 183, + "stars": 185, "dependencies": 0 }, "name": "react-native-privacy-snapshot", @@ -16609,8 +16422,7 @@ "isPrivate": false, "description": "Obscure passwords and other sensitive personal information when a react-native app transitions to the background", "topics": [ - "react-native", - "react-component", + "component", "privacy", "snapshot", "secure" @@ -16625,12 +16437,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-privacy-snapshot", "npm": { - "downloads": 734, - "weekDownloads": 160, + "downloads": 486, + "weekDownloads": 87, "latestRelease": "1.0.0", "latestReleaseDate": "2015-10-07T04:29:45.840Z" }, @@ -16640,8 +16453,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.314, - "topicSearchString": "react-native react-component privacy snapshot secure" + "popularity": -1.347, + "topicSearchString": "component privacy snapshot secure" }, { "githubUrl": "https://github.com/andreyvital/react-native-android-sms-listener", @@ -16661,9 +16474,9 @@ "createdAt": "2016-02-09T15:29:10Z", "pushedAt": "2020-09-09T12:37:59Z", "forks": 92, - "issues": 12, + "issues": 13, "subscribers": 5, - "stars": 368, + "stars": 370, "dependencies": 0 }, "name": "react-native-android-sms-listener", @@ -16671,9 +16484,6 @@ "isPrivate": false, "description": "Allows you to listen for incoming SMS messages using React Native", "topics": [ - "react", - "native", - "react-native", "android", "sms", "listener", @@ -16689,13 +16499,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-android-sms-listener", "npm": { - "downloads": 1174, - "weekDownloads": 222, + "downloads": 1329, + "weekDownloads": 311, "size": 12426, "latestRelease": "0.8.0", "latestReleaseDate": "2020-09-09T12:29:22.306Z" @@ -16706,8 +16517,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, - "topicSearchString": "react native react-native android sms listener sms-listener" + "popularity": -0.551, + "topicSearchString": "android sms listener sms-listener" }, { "githubUrl": "https://github.com/pusherman/react-native-network-info", @@ -16738,8 +16549,7 @@ "isPrivate": false, "description": "React Native library for getting information about the devices network", "topics": [ - "react-component", - "react-native", + "component", "ios", "network", "lan", @@ -16758,13 +16568,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-network-info", "npm": { - "downloads": 66241, - "weekDownloads": 10351, + "downloads": 61734, + "weekDownloads": 14619, "size": 76749, "latestRelease": "5.2.1", "latestReleaseDate": "2019-09-30T21:50:41.952Z" @@ -16775,8 +16586,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, - "topicSearchString": "react-component react-native ios network lan android-library ios-lib android networking" + "popularity": -0.549, + "topicSearchString": "component ios network lan android-library ios-lib android networking" }, { "githubUrl": "https://github.com/tradle/rn-nodeify", @@ -16798,8 +16609,8 @@ "pushedAt": "2021-04-19T16:36:58Z", "forks": 99, "issues": 33, - "subscribers": 7, - "stars": 624, + "subscribers": 6, + "stars": 623, "dependencies": 9 }, "name": "rn-nodeify", @@ -16817,13 +16628,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-nodeify", "npm": { - "downloads": 69194, - "weekDownloads": 10448, + "downloads": 70623, + "weekDownloads": 16281, "size": 44267, "latestRelease": "10.3.0", "latestReleaseDate": "2021-04-19T16:37:11.401Z" @@ -16834,7 +16646,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, + "popularity": -0.554, "topicSearchString": "" }, { @@ -16865,8 +16677,6 @@ "isPrivate": false, "description": "Access additional display metrics on Android devices: status bar height, soft menu bar height, real screen size.", "topics": [ - "react-native", - "react", "android" ], "license": { @@ -16879,13 +16689,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-extra-dimensions-android", "npm": { - "downloads": 28162, - "weekDownloads": 4522, + "downloads": 18760, + "weekDownloads": 5883, "size": 1238433, "latestRelease": "1.2.5", "latestReleaseDate": "2019-04-02T23:28:46.770Z" @@ -16896,8 +16707,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.614, - "topicSearchString": "react-native react android" + "popularity": -0.233, + "topicSearchString": "android" }, { "githubUrl": "https://github.com/williambout/react-native-proximity", @@ -16929,9 +16740,6 @@ "isPrivate": false, "description": ":iphone: A React Native wrapper that provides access to the proximity sensor on iOS and Android.", "topics": [ - "react-native", - "react", - "native", "proximity", "proximity-sensor", "sensor", @@ -16949,12 +16757,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-proximity", "npm": { - "downloads": 110, - "weekDownloads": 12, + "downloads": 139, + "weekDownloads": 13, "latestRelease": "3.0.0", "latestReleaseDate": "2017-12-15T09:33:50.122Z" }, @@ -16964,8 +16773,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.404, - "topicSearchString": "react-native react native proximity proximity-sensor sensor iphone ios android" + "popularity": -1.419, + "topicSearchString": "proximity proximity-sensor sensor iphone ios android" }, { "githubUrl": "https://github.com/wmcmahan/react-native-calendar-events", @@ -16988,7 +16797,7 @@ "forks": 247, "issues": 53, "subscribers": 10, - "stars": 932, + "stars": 931, "dependencies": 0 }, "name": "react-native-calendar-events", @@ -16996,8 +16805,7 @@ "isPrivate": false, "description": "📆 React Native Module for iOS and Android Calendar Events", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "eventkit", @@ -17022,13 +16830,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-calendar-events", "npm": { - "downloads": 99879, - "weekDownloads": 17444, + "downloads": 98967, + "weekDownloads": 23025, "size": 156428, "latestRelease": "2.2.0", "latestReleaseDate": "2021-01-08T10:28:24.288Z" @@ -17040,8 +16849,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, - "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" + "popularity": -0.552, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/alwx/react-native-photo-view", @@ -17061,10 +16870,10 @@ "updatedAt": "2022-01-03T10:55:24Z", "createdAt": "2016-06-17T20:57:51Z", "pushedAt": "2022-01-03T10:55:24Z", - "forks": 326, + "forks": 327, "issues": 106, - "subscribers": 13, - "stars": 822, + "subscribers": 12, + "stars": 823, "dependencies": 1 }, "name": "react-native-photo-view", @@ -17072,8 +16881,7 @@ "isPrivate": false, "description": "Pinch-to-zoom view for React Native (both iOS and Android)", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "gallery", @@ -17092,13 +16900,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-photo-view", "npm": { - "downloads": 1709, - "weekDownloads": 201, + "downloads": 3580, + "weekDownloads": 644, "latestRelease": "1.5.2", "latestReleaseDate": "2017-09-27T18:09:07.508Z" }, @@ -17110,8 +16919,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.65, - "topicSearchString": "react-native react-component ios android gallery lightbox pinch pinch-to-zoom mobile" + "popularity": -0.597, + "topicSearchString": "component ios android gallery lightbox pinch pinch-to-zoom mobile" }, { "githubUrl": "https://github.com/xinthink/react-native-material-kit", @@ -17133,8 +16942,8 @@ "pushedAt": "2020-02-20T11:25:10Z", "forks": 550, "issues": 151, - "subscribers": 101, - "stars": 4827, + "subscribers": 100, + "stars": 4829, "dependencies": 1 }, "name": "react-native-material-kit", @@ -17142,10 +16951,6 @@ "isPrivate": false, "description": "Bringing Material Design to React Native", "topics": [ - "react", - "native", - "react-component", - "react-native", "component", "ios", "android", @@ -17162,13 +16967,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-kit", "npm": { - "downloads": 798, - "weekDownloads": 101, + "downloads": 3491, + "weekDownloads": 149, "size": 221221, "latestRelease": "0.6.0-beta.1", "latestReleaseDate": "2020-02-18T09:02:17.970Z" @@ -17182,8 +16988,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.392, - "topicSearchString": "react native react-component react-native component ios android material-design materialkit" + "popularity": -0.714, + "topicSearchString": "component ios android material-design materialkit" }, { "githubUrl": "https://github.com/AlexanderZaytsev/react-native-i18n", @@ -17207,9 +17013,9 @@ "updatedAt": "2021-03-18T20:47:21Z", "createdAt": "2015-06-14T10:48:33Z", "pushedAt": "2021-03-18T20:47:21Z", - "forks": 432, + "forks": 431, "issues": 59, - "subscribers": 30, + "subscribers": 29, "stars": 2174, "dependencies": 1 }, @@ -17218,8 +17024,7 @@ "isPrivate": false, "description": "React Native + i18n.js", "topics": [ - "react-native", - "react-component", + "component", "ios", "i18n" ], @@ -17233,12 +17038,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-i18n", "npm": { - "downloads": 199249, - "weekDownloads": 22406, + "downloads": 259913, + "weekDownloads": 67356, "size": 291743, "latestRelease": "2.0.15", "latestReleaseDate": "2018-07-18T21:11:32.687Z" @@ -17250,8 +17056,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.654, - "topicSearchString": "react-native react-component ios i18n" + "popularity": -0.53, + "topicSearchString": "component ios i18n" }, { "githubUrl": "https://github.com/Anthonyzou/react-native-image-zoom", @@ -17282,9 +17088,8 @@ "isPrivate": false, "description": "Image pan and zoom for Android", "topics": [ - "react-native", "android", - "react-component" + "component" ], "license": { "key": "mit", @@ -17296,12 +17101,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-image-zoom", "npm": { - "downloads": 202, - "weekDownloads": 31, + "downloads": 629, + "weekDownloads": 127, "latestRelease": "0.32.0", "latestReleaseDate": "2016-10-06T16:04:53.787Z" }, @@ -17311,8 +17117,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.368, - "topicSearchString": "react-native android react-component" + "popularity": -1.328, + "topicSearchString": "android component" }, { "githubUrl": "https://github.com/chirag04/react-native-tooltip", @@ -17333,7 +17139,7 @@ "pushedAt": "2021-03-17T15:18:43Z", "forks": 56, "issues": 17, - "subscribers": 8, + "subscribers": 7, "stars": 290, "dependencies": 0 }, @@ -17342,9 +17148,7 @@ "isPrivate": false, "description": "A react-native wrapper for showing tooltips", "topics": [ - "react", - "react-native", - "react-component", + "component", "ios", "tooltip" ], @@ -17358,13 +17162,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tooltip", "npm": { - "downloads": 1955, - "weekDownloads": 283, + "downloads": 2162, + "weekDownloads": 616, "size": 52763, "latestRelease": "5.2.0", "latestReleaseDate": "2018-02-08T16:32:39.485Z" @@ -17375,8 +17180,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.627, - "topicSearchString": "react react-native react-component ios tooltip" + "popularity": -0.507, + "topicSearchString": "component ios tooltip" }, { "githubUrl": "https://github.com/cesardeazevedo/react-native-bottom-sheet-behavior", @@ -17407,7 +17212,6 @@ "description": "react-native wrapper for android BottomSheetBehavior", "topics": [ "android", - "react-native", "bottom-sheet-behavior", "coordinatorlayout", "bottomsheet", @@ -17426,13 +17230,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bottom-sheet-behavior", "npm": { - "downloads": 1783, - "weekDownloads": 122, + "downloads": 6277, + "weekDownloads": 2147, "size": 115151372, "latestRelease": "2.0.0", "latestReleaseDate": "2019-05-29T10:06:17.607Z" @@ -17444,8 +17249,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.692, - "topicSearchString": "android react-native bottom-sheet-behavior coordinatorlayout bottomsheet bottomsheetbehavior google-maps floatingactionbutton nestedscrollview" + "popularity": -0.459, + "topicSearchString": "android bottom-sheet-behavior coordinatorlayout bottomsheet bottomsheetbehavior google-maps floatingactionbutton nestedscrollview" }, { "githubUrl": "https://github.com/tinycreative/react-native-intercom", @@ -17469,7 +17274,7 @@ "updatedAt": "2021-12-09T23:52:04Z", "createdAt": "2015-07-09T18:11:31Z", "pushedAt": "2021-12-09T23:52:04Z", - "forks": 254, + "forks": 253, "issues": 8, "subscribers": 4, "stars": 407, @@ -17490,12 +17295,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-intercom", "npm": { - "downloads": 9244, - "weekDownloads": 1343, + "downloads": 7943, + "weekDownloads": 1850, "size": 135825, "latestRelease": "21.1.1", "latestReleaseDate": "2021-12-09T00:40:37.727Z" @@ -17507,7 +17313,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.627, + "popularity": -0.552, "topicSearchString": "" }, { @@ -17540,7 +17346,6 @@ "isPrivate": false, "description": "Internationalization (i18n) for React Native", "topics": [ - "react-native", "internationalization", "globalization", "localization", @@ -17560,13 +17365,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-globalize", "npm": { - "downloads": 4662, - "weekDownloads": 775, + "downloads": 5653, + "weekDownloads": 802, "size": 23146620, "latestRelease": "4.5.1", "latestReleaseDate": "2021-01-03T19:34:07.301Z" @@ -17577,8 +17383,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, - "topicSearchString": "react-native internationalization globalization localization i18n l10n currency datetime language" + "popularity": -0.629, + "topicSearchString": "internationalization globalization localization i18n l10n currency datetime language" }, { "githubUrl": "https://github.com/sunnylqm/react-native-storage", @@ -17599,10 +17405,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": 45, - "stars": 3039, + "subscribers": 44, + "stars": 3045, "dependencies": 2 }, "name": "react-native-storage", @@ -17610,7 +17416,6 @@ "isPrivate": false, "description": "local storage wrapper for both react-native and browser. Support size controlling, auto expiring, remote data auto syncing and getting batch data in one query.", "topics": [ - "react-native", "localstorage", "asyncstorage", "reactjs", @@ -17626,12 +17431,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-storage", "npm": { - "downloads": 42785, - "weekDownloads": 6299, + "downloads": 51387, + "weekDownloads": 12603, "size": 124306, "latestRelease": "1.0.1", "latestReleaseDate": "2019-04-11T15:47:20.329Z" @@ -17642,8 +17448,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.125, - "topicSearchString": "react-native localstorage asyncstorage reactjs sync" + "popularity": 0.208, + "topicSearchString": "localstorage asyncstorage reactjs sync" }, { "githubUrl": "https://github.com/vitalets/react-native-extended-stylesheet", @@ -17666,8 +17472,8 @@ "pushedAt": "2025-02-05T16:37:19Z", "forks": 125, "issues": 12, - "subscribers": 37, - "stars": 2937, + "subscribers": 36, + "stars": 2936, "dependencies": 2 }, "name": "react-native-extended-stylesheet", @@ -17675,9 +17481,6 @@ "isPrivate": false, "description": "Extended StyleSheets for React Native", "topics": [ - "react", - "react-native", - "react-component", "component", "mobile", "ios", @@ -17698,12 +17501,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-extended-stylesheet", "npm": { - "downloads": 47570, - "weekDownloads": 7677, + "downloads": 45090, + "weekDownloads": 10349, "size": 381852, "latestRelease": "0.12.0", "latestReleaseDate": "2019-07-05T17:13:46.237Z" @@ -17715,8 +17519,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.137, - "topicSearchString": "react react-native react-component component mobile ios android stylesheets theme theming style styling" + "popularity": 0.195, + "topicSearchString": "component mobile ios android stylesheets theme theming style styling" }, { "githubUrl": "https://github.com/tachyons-css/react-native-style-tachyons", @@ -17739,7 +17543,7 @@ "pushedAt": "2025-04-03T04:56:23Z", "forks": 50, "issues": 1, - "subscribers": 10, + "subscribers": 9, "stars": 692, "dependencies": 7 }, @@ -17748,8 +17552,6 @@ "isPrivate": false, "description": "Better styling for React Native", "topics": [ - "react", - "react-native", "android", "ios", "stylesheet", @@ -17772,23 +17574,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-style-tachyons", "npm": { - "downloads": 4225, - "weekDownloads": 654, + "downloads": 3811, + "weekDownloads": 792, "size": 87713, "latestRelease": "4.2.9", "latestReleaseDate": "2025-02-01T06:48:02.539Z" }, - "score": 51, + "score": 41, "matchingScoreModifiers": [ "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.132, - "topicSearchString": "react react-native android ios stylesheet style responsive mobile performance design css typography css-modules" + "popularity": 0.177, + "topicSearchString": "android ios stylesheet style responsive mobile performance design css typography css-modules" }, { "githubUrl": "https://github.com/lwansbrough/react-native-google-analytics", @@ -17821,8 +17625,6 @@ "isPrivate": false, "description": "Google Analytics for React Native! Compatible with react-native-ab", "topics": [ - "react", - "native", "ab", "test", "testing", @@ -17843,12 +17645,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-google-analytics", "npm": { - "downloads": 888, - "weekDownloads": 208, + "downloads": 772, + "weekDownloads": 161, "latestRelease": "1.3.2", "latestReleaseDate": "2016-05-27T06:49:33.573Z" }, @@ -17858,8 +17661,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "react native ab test testing analytics metrics events google experiment variant" + "popularity": -1.322, + "topicSearchString": "ab test testing analytics metrics events google experiment variant" }, { "githubUrl": "https://github.com/seigel/pouchdb-react-native/tree/master/packages/pouchdb-react-native", @@ -17892,7 +17695,6 @@ "description": "PouchDB Bundle for ReactNative", "topics": [ "pouchdb", - "react-native", "asyncstorage", "offlinefirst" ], @@ -17906,13 +17708,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "pouchdb-react-native", "npm": { - "downloads": 1004, - "weekDownloads": 174, + "downloads": 6495, + "weekDownloads": 332, "size": 6085, "latestRelease": "6.4.1", "latestReleaseDate": "2018-03-22T17:45:58.701Z" @@ -17923,8 +17726,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, - "topicSearchString": "pouchdb react-native asyncstorage offlinefirst" + "popularity": -0.707, + "topicSearchString": "pouchdb asyncstorage offlinefirst" }, { "githubUrl": "https://github.com/darkrishabh/react-native-db-models", @@ -17957,7 +17760,6 @@ "isPrivate": false, "description": "React native Library for creating Local DB models ", "topics": [ - "react-native", "asyncstorage", "database", "local-db", @@ -17978,12 +17780,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-db-models", "npm": { - "downloads": 51, - "weekDownloads": 21, + "downloads": 47, + "weekDownloads": 12, "latestRelease": "0.1.3", "latestReleaseDate": "2016-02-14T01:47:16.059Z" }, @@ -17993,8 +17796,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.15, - "topicSearchString": "react-native asyncstorage database local-db db-events rerender emmit-database-operations models data-store ios" + "popularity": -1.282, + "topicSearchString": "asyncstorage database local-db db-events rerender emmit-database-operations models data-store ios" }, { "githubUrl": "https://github.com/adamterlson/cairn", @@ -18017,7 +17820,7 @@ "pushedAt": "2019-09-02T11:29:15Z", "forks": 4, "issues": 1, - "subscribers": 4, + "subscribers": 3, "stars": 114, "dependencies": 0 }, @@ -18026,8 +17829,6 @@ "isPrivate": false, "description": "Hierarchical shared and component-based style definitions with selector-based style application, for React Native", "topics": [ - "react", - "react-native", "css", "styling", "styles", @@ -18043,13 +17844,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "cairn", "npm": { - "downloads": 17, - "weekDownloads": 6, + "downloads": 68, + "weekDownloads": 5, "latestRelease": "0.8.0", "latestReleaseDate": "2017-06-12T17:42:11.291Z" }, @@ -18058,8 +17860,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.2, - "topicSearchString": "react react-native css styling styles cairn" + "popularity": -1.438, + "topicSearchString": "css styling styles cairn" }, { "githubUrl": "https://github.com/jondot/react-native-slowlog", @@ -18082,7 +17884,7 @@ "pushedAt": "2017-02-08T09:40:47Z", "forks": 14, "issues": 3, - "subscribers": 4, + "subscribers": 3, "stars": 377, "dependencies": 0 }, @@ -18092,7 +17894,6 @@ "description": "A high-performance timer based profiler for React Native that helps you track big performance problems.", "topics": [ "performance", - "react-native", "debugging", "infrastructure", "tools" @@ -18107,13 +17908,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-slowlog", "npm": { - "downloads": 2960, - "weekDownloads": 550, + "downloads": 2934, + "weekDownloads": 658, "latestRelease": "1.0.2", "latestReleaseDate": "2017-02-08T09:40:22.247Z" }, @@ -18123,8 +17925,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, - "topicSearchString": "performance react-native debugging infrastructure tools" + "popularity": -0.559, + "topicSearchString": "performance debugging infrastructure tools" }, { "githubUrl": "https://github.com/NativeSH/react-native-console-panel", @@ -18157,8 +17959,7 @@ "isPrivate": false, "description": "simple react native console component", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "console", @@ -18174,12 +17975,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-console-panel", "npm": { - "downloads": 193, - "weekDownloads": 14, + "downloads": 1051, + "weekDownloads": 33, "latestRelease": "0.1.0", "latestReleaseDate": "2016-09-07T02:37:03.251Z" }, @@ -18189,8 +17991,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.438, - "topicSearchString": "react-component react-native ios android console debug-panel" + "popularity": -0.723, + "topicSearchString": "component ios android console debug-panel" }, { "githubUrl": "https://github.com/DanielMSchmidt/react-native-dismiss-keyboard", @@ -18214,7 +18016,7 @@ "pushedAt": "2023-05-28T16:01:47Z", "forks": 8, "issues": 6, - "subscribers": 1, + "subscribers": 0, "stars": 94, "dependencies": 0 }, @@ -18223,9 +18025,7 @@ "isPrivate": false, "description": "A simple way to dismiss the keyboard programmatically in a react native application", "topics": [ - "react-component", - "react", - "react-native", + "component", "ios", "android", "keyboard", @@ -18241,12 +18041,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-dismiss-keyboard", "npm": { - "downloads": 22232, - "weekDownloads": 4442, + "downloads": 22275, + "weekDownloads": 3691, "latestRelease": "1.0.0", "latestReleaseDate": "2016-05-12T16:56:35.961Z" }, @@ -18255,8 +18056,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, - "topicSearchString": "react-component react react-native ios android keyboard dismiss" + "popularity": -0.609, + "topicSearchString": "component ios android keyboard dismiss" }, { "githubUrl": "https://github.com/beefe/react-native-popup", @@ -18289,10 +18090,10 @@ "isPrivate": false, "description": "popup for react-native", "topics": [ - "react-native", "popup" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -18301,12 +18102,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-popup", "npm": { - "downloads": 111, - "weekDownloads": 8, + "downloads": 155, + "weekDownloads": 19, "latestRelease": "0.6.1", "latestReleaseDate": "2016-11-14T06:56:10.980Z" }, @@ -18316,8 +18118,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.438, - "topicSearchString": "react-native popup" + "popularity": -1.394, + "topicSearchString": "popup" }, { "githubUrl": "https://github.com/bamlab/react-native-image-resizer", @@ -18338,10 +18140,10 @@ "updatedAt": "2024-11-25T14:34:01Z", "createdAt": "2015-11-30T10:23:11Z", "pushedAt": "2024-11-25T14:34:01Z", - "forks": 331, - "issues": 3, - "subscribers": 19, - "stars": 1652, + "forks": 333, + "issues": 4, + "subscribers": 18, + "stars": 1654, "dependencies": 0 }, "name": "@bam.tech/react-native-image-resizer", @@ -18350,8 +18152,6 @@ "registry": "https://registry.npmjs.org/", "description": "🗻 Resize local images with React Native", "topics": [ - "react-native", - "react", "android", "ios", "images", @@ -18372,24 +18172,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 179051, - "weekDownloads": 29100, + "downloads": 183234, + "weekDownloads": 41748, "size": 93156, "latestRelease": "3.0.11", "latestReleaseDate": "2024-11-25T14:32:14.877Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.138, - "topicSearchString": "react-native react android ios images image image-resizer scaling scale resize jpeg" + "popularity": 0.194, + "topicSearchString": "android ios images image image-resizer scaling scale resize jpeg" }, { "githubUrl": "https://github.com/remobile/react-native-toast", @@ -18411,7 +18211,7 @@ "updatedAt": "2017-10-16T03:43:50Z", "createdAt": "2015-11-17T00:22:19Z", "pushedAt": "2017-10-16T03:43:50Z", - "forks": 127, + "forks": 126, "issues": 22, "subscribers": 8, "stars": 343, @@ -18422,8 +18222,7 @@ "isPrivate": false, "description": "A android like toast for android and ios, android use native toast, ios use UIView+Toast", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "toast", @@ -18441,11 +18240,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 735, - "weekDownloads": 43, + "downloads": 1599, + "weekDownloads": 225, "latestRelease": "1.0.7", "latestReleaseDate": "2017-10-16T03:44:01.130Z" }, @@ -18455,8 +18255,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.45, - "topicSearchString": "react-native react-component ios android toast position remobile mobile" + "popularity": -0.63, + "topicSearchString": "component ios android toast position remobile mobile" }, { "githubUrl": "https://github.com/magicismight/react-native-lazyload", @@ -18489,8 +18289,7 @@ "isPrivate": false, "description": "lazyload for react native", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "lazyload", @@ -18506,12 +18305,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-lazyload", "npm": { - "downloads": 316, - "weekDownloads": 41, + "downloads": 1012, + "weekDownloads": 344, "latestRelease": "1.1.0", "latestReleaseDate": "2016-08-26T12:26:38.140Z" }, @@ -18521,8 +18321,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.389, - "topicSearchString": "react-component react-native ios android lazyload load" + "popularity": -0.461, + "topicSearchString": "component ios android lazyload load" }, { "githubUrl": "https://github.com/jineshshah36/react-native-nav", @@ -18555,8 +18355,6 @@ "isPrivate": false, "description": "A cross-platform (iOS / Android), fully customizable, React Native Navigation Bar component.", "topics": [ - "react", - "native", "ios", "android", "navigation", @@ -18565,8 +18363,7 @@ "customizable", "navbar", "nav", - "app", - "react-native" + "app" ], "license": { "key": "mit", @@ -18578,12 +18375,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-nav", "npm": { - "downloads": 548, - "weekDownloads": 142, + "downloads": 1020, + "weekDownloads": 115, "latestRelease": "2.0.2", "latestReleaseDate": "2017-08-10T02:33:46.517Z" }, @@ -18593,8 +18391,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.278, - "topicSearchString": "react native ios android navigation bar component customizable navbar nav app react-native" + "popularity": -0.654, + "topicSearchString": "ios android navigation bar component customizable navbar nav app" }, { "githubUrl": "https://github.com/gilbox/react-imation", @@ -18627,9 +18425,7 @@ "isPrivate": false, "description": "functional tweening and timeline animation for react", "topics": [ - "react", - "react-native", - "react-component", + "component", "animation", "tweening", "easing" @@ -18644,12 +18440,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-imation", "npm": { - "downloads": 18, - "weekDownloads": 3, + "downloads": 114, + "weekDownloads": 1, "latestRelease": "0.5.3", "latestReleaseDate": "2015-11-27T08:32:54.684Z" }, @@ -18659,8 +18456,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, - "topicSearchString": "react react-native react-component animation tweening easing" + "popularity": -1.492, + "topicSearchString": "component animation tweening easing" }, { "githubUrl": "https://github.com/AlbertBrand/react-native-android-tablayout", @@ -18692,8 +18489,7 @@ "isPrivate": false, "description": "React Native Android TabLayout native component", "topics": [ - "react-component", - "react-native", + "component", "android", "tablayout", "design", @@ -18709,12 +18505,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-android-tablayout", "npm": { - "downloads": 30, - "weekDownloads": 0, + "downloads": 137, + "weekDownloads": 5, "latestRelease": "0.3.0", "latestReleaseDate": "2016-06-23T18:34:47.746Z" }, @@ -18724,8 +18521,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-component react-native android tablayout design support" + "popularity": -1.469, + "topicSearchString": "component android tablayout design support" }, { "githubUrl": "https://github.com/FaridSafi/react-native-gifted-listview", @@ -18747,10 +18544,10 @@ "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": 38, - "stars": 1620, + "subscribers": 37, + "stars": 1619, "dependencies": 0 }, "name": "react-native-gifted-listview", @@ -18762,8 +18559,7 @@ "refreshable", "listview", "infinite-scrolling", - "react-component", - "react-native", + "component", "ios", "android" ], @@ -18777,12 +18573,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gifted-listview", "npm": { - "downloads": 60, - "weekDownloads": 2, + "downloads": 149, + "weekDownloads": 12, "latestRelease": "0.0.15", "latestReleaseDate": "2016-05-12T14:45:53.931Z" }, @@ -18793,8 +18590,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.471, - "topicSearchString": "pull-to-refresh refreshable listview infinite-scrolling react-component react-native ios android" + "popularity": -1.431, + "topicSearchString": "pull-to-refresh refreshable listview infinite-scrolling component ios android" }, { "githubUrl": "https://github.com/douglasjunior/react-native-simple-dialogs", @@ -18820,9 +18617,9 @@ "createdAt": "2017-06-18T17:57:06Z", "pushedAt": "2024-09-21T01:05:50Z", "forks": 56, - "issues": 2, + "issues": 3, "subscribers": 5, - "stars": 434, + "stars": 441, "dependencies": 0 }, "name": "react-native-simple-dialogs", @@ -18830,7 +18627,6 @@ "isPrivate": false, "description": "⚛ Cross-platform React Native dialogs based on the Modal component", "topics": [ - "react-native", "android", "ios", "dialog", @@ -18851,12 +18647,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-simple-dialogs", "npm": { - "downloads": 8174, - "weekDownloads": 1606, + "downloads": 7800, + "weekDownloads": 1521, "size": 57180, "latestRelease": "2.1.1", "latestReleaseDate": "2025-06-11T17:09:34.794Z" @@ -18867,8 +18664,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, - "topicSearchString": "react-native android ios dialog modal popup confirm progress cross-platform hacktoberfest" + "popularity": 0.166, + "topicSearchString": "android ios dialog modal popup confirm progress cross-platform hacktoberfest" }, { "githubUrl": "https://github.com/douglasjunior/react-native-keyboard-manager", @@ -18893,7 +18690,7 @@ "forks": 59, "issues": 2, "subscribers": 7, - "stars": 999, + "stars": 1003, "dependencies": 0 }, "name": "react-native-keyboard-manager", @@ -18901,7 +18698,6 @@ "isPrivate": false, "description": "⚛ Library to prevent issues of keyboard sliding up and cover inputs on React-Native iOS projects.", "topics": [ - "react-native", "ios", "keyboard", "iqkeyboardmanager", @@ -18917,12 +18713,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-keyboard-manager", "npm": { - "downloads": 105930, - "weekDownloads": 17936, + "downloads": 103839, + "weekDownloads": 25639, "size": 45031, "latestRelease": "6.5.16-0", "latestReleaseDate": "2024-05-06T13:10:59.626Z" @@ -18934,8 +18731,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.144, - "topicSearchString": "react-native ios keyboard iqkeyboardmanager hacktoberfest" + "popularity": 0.21, + "topicSearchString": "ios keyboard iqkeyboardmanager hacktoberfest" }, { "githubUrl": "https://github.com/avocode/nachos-ui", @@ -18959,7 +18756,7 @@ "forks": 115, "issues": 13, "subscribers": 33, - "stars": 2065, + "stars": 2064, "dependencies": 7 }, "name": "nachos-ui", @@ -18967,9 +18764,7 @@ "isPrivate": false, "description": "Nachos UI is a React Native component library.", "topics": [ - "react", - "react-component", - "react-native", + "component", "ui-kit", "uikit", "web" @@ -18984,13 +18779,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "nachos-ui", "npm": { - "downloads": 336, - "weekDownloads": 45, + "downloads": 237, + "weekDownloads": 44, "size": 817766, "latestRelease": "0.2.0-beta.1", "latestReleaseDate": "2018-06-12T16:17:33.174Z" @@ -19002,8 +18798,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.386, - "topicSearchString": "react react-component react-native ui-kit uikit web" + "popularity": -1.34, + "topicSearchString": "component ui-kit uikit web" }, { "githubUrl": "https://github.com/invertase/react-native-material-design", @@ -19023,9 +18819,9 @@ "updatedAt": "2018-12-27T10:31:48Z", "createdAt": "2015-12-11T15:29:45Z", "pushedAt": "2018-12-27T10:31:48Z", - "forks": 352, + "forks": 351, "issues": 70, - "subscribers": 94, + "subscribers": 93, "stars": 3141, "dependencies": 2 }, @@ -19034,12 +18830,11 @@ "isPrivate": false, "description": "React Native UI Components for Material Design", "topics": [ - "react-native", "material", "design", "ui", "components", - "react-component", + "component", "android" ], "license": { @@ -19052,12 +18847,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-material-design", "npm": { - "downloads": 327, - "weekDownloads": 30, + "downloads": 277, + "weekDownloads": 39, "latestRelease": "0.3.7", "latestReleaseDate": "2016-07-27T07:52:11.248Z" }, @@ -19068,8 +18864,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.421, - "topicSearchString": "react-native material design ui components react-component android" + "popularity": -1.38, + "topicSearchString": "material design ui components component android" }, { "githubUrl": "https://github.com/binggg/mrn", @@ -19091,7 +18887,7 @@ "pushedAt": "2019-05-28T08:31:20Z", "forks": 106, "issues": 13, - "subscribers": 44, + "subscribers": 43, "stars": 1726, "dependencies": 1 }, @@ -19100,12 +18896,11 @@ "isPrivate": false, "description": "Material React Native (MRN) - A Material Design style React Native component library.", "topics": [ - "react-native", "material", "design", "ui", "components", - "react-component", + "component", "mrn", "ui-components", "android" @@ -19120,12 +18915,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "mrn", "npm": { - "downloads": 15, - "weekDownloads": 3, + "downloads": 87, + "weekDownloads": 0, "latestRelease": "0.1.7", "latestReleaseDate": "2015-11-30T12:19:47.883Z" }, @@ -19136,8 +18932,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "react-native material design ui components react-component mrn ui-components android" + "popularity": -1, + "topicSearchString": "material design ui components component mrn ui-components android" }, { "githubUrl": "https://github.com/oblador/react-native-parallax", @@ -19159,9 +18955,9 @@ "updatedAt": "2017-09-19T19:10:47Z", "createdAt": "2015-07-26T15:57:27Z", "pushedAt": "2017-09-19T19:10:47Z", - "forks": 68, + "forks": 67, "issues": 10, - "subscribers": 15, + "subscribers": 14, "stars": 586, "dependencies": 1 }, @@ -19170,10 +18966,7 @@ "isPrivate": false, "description": "Parallax effects for React Native using Animated API", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -19191,12 +18984,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-parallax", "npm": { - "downloads": 91, - "weekDownloads": 15, + "downloads": 136, + "weekDownloads": 22, "latestRelease": "0.3.0", "latestReleaseDate": "2016-06-13T15:09:17.201Z" }, @@ -19206,8 +19000,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.357, - "topicSearchString": "react-native react-component component react mobile ios android ui parallax image" + "popularity": -1.363, + "topicSearchString": "component mobile ios android ui parallax image" }, { "githubUrl": "https://github.com/tomauty/react-native-chart", @@ -19233,8 +19027,8 @@ "pushedAt": "2019-12-24T15:18:02Z", "forks": 216, "issues": 53, - "subscribers": 45, - "stars": 1571, + "subscribers": 44, + "stars": 1570, "dependencies": 4 }, "name": "react-native-chart", @@ -19244,7 +19038,6 @@ "topics": [ "chart", "javascript", - "react-native", "svg" ], "license": { @@ -19257,12 +19050,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-chart", "npm": { - "downloads": 260, - "weekDownloads": 27, + "downloads": 592, + "weekDownloads": 190, "latestRelease": "1.0.8-beta", "latestReleaseDate": "2016-07-27T01:29:05.242Z" }, @@ -19273,8 +19067,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.411, - "topicSearchString": "chart javascript react-native svg" + "popularity": -1.227, + "topicSearchString": "chart javascript svg" }, { "githubUrl": "https://github.com/lelandrichardson/react-native-parallax-view", @@ -19298,7 +19092,7 @@ "pushedAt": "2016-09-16T16:53:00Z", "forks": 156, "issues": 22, - "subscribers": 24, + "subscribers": 23, "stars": 1292, "dependencies": 1 }, @@ -19307,9 +19101,7 @@ "isPrivate": false, "description": "Parallax view for vertical scrollview/listviews with a header image and header content", "topics": [ - "react", - "react-native", - "react-component", + "component", "parallax" ], "license": { @@ -19322,12 +19114,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-parallax-view", "npm": { - "downloads": 221, - "weekDownloads": 20, + "downloads": 315, + "weekDownloads": 16, "latestRelease": "2.0.6", "latestReleaseDate": "2016-09-16T17:42:38.276Z" }, @@ -19338,8 +19131,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.423, - "topicSearchString": "react react-native react-component parallax" + "popularity": -1.457, + "topicSearchString": "component parallax" }, { "githubUrl": "https://github.com/oblador/react-native-collapsible", @@ -19366,8 +19159,8 @@ "pushedAt": "2024-08-27T20:12:02Z", "forks": 428, "issues": 88, - "subscribers": 29, - "stars": 2567, + "subscribers": 28, + "stars": 2572, "dependencies": 0 }, "name": "react-native-collapsible", @@ -19375,10 +19168,7 @@ "isPrivate": false, "description": "Animated collapsible component for React Native, good for accordions, toggles etc", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -19399,12 +19189,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-collapsible", "npm": { - "downloads": 649142, - "weekDownloads": 106357, + "downloads": 595731, + "weekDownloads": 135725, "size": 30740, "latestRelease": "1.6.2", "latestReleaseDate": "2024-08-27T19:59:13.624Z" @@ -19417,8 +19208,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.139, - "topicSearchString": "react-native react-component component react mobile ios android ui collapse collapsible toggle accordion animation" + "popularity": 0.194, + "topicSearchString": "component mobile ios android ui collapse collapsible toggle accordion animation" }, { "githubUrl": "https://github.com/jeanregisser/react-native-popover", @@ -19442,7 +19233,7 @@ "pushedAt": "2016-05-27T07:42:55Z", "forks": 165, "issues": 18, - "subscribers": 9, + "subscribers": 8, "stars": 669, "dependencies": 0 }, @@ -19451,8 +19242,7 @@ "isPrivate": false, "description": "A component for react-native", "topics": [ - "react-component", - "react-native", + "component", "ios", "ui", "popover", @@ -19468,12 +19258,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-popover", "npm": { - "downloads": 3370, - "weekDownloads": 563, + "downloads": 2391, + "weekDownloads": 494, "latestRelease": "0.2.0", "latestReleaseDate": "2015-06-12T15:49:26.808Z" }, @@ -19484,8 +19275,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, - "topicSearchString": "react-component react-native ios ui popover modal" + "popularity": -0.574, + "topicSearchString": "component ios ui popover modal" }, { "githubUrl": "https://github.com/MichaelCereda/react-native-form-generator", @@ -19518,8 +19309,6 @@ "isPrivate": false, "description": "Generate forms with native look and feel in a breeze", "topics": [ - "react", - "native", "forms", "input" ], @@ -19533,12 +19322,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-form-generator", "npm": { - "downloads": 3742, - "weekDownloads": 1028, + "downloads": 2629, + "weekDownloads": 812, "latestRelease": "0.9.9", "latestReleaseDate": "2016-08-02T20:54:11.001Z" }, @@ -19548,8 +19338,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.516, - "topicSearchString": "react native forms input" + "popularity": -0.487, + "topicSearchString": "forms input" }, { "githubUrl": "https://github.com/react-native-simple-router-community/react-native-simple-router", @@ -19582,17 +19372,13 @@ "isPrivate": false, "description": "A community maintained router component for React Native", "topics": [ - "react", - "react-component", - "react-native", + "component", "ios", "navigation", "navigation-bar", "navbar", "router", - "simple", - "react-router", - "react-navigation" + "simple" ], "license": { "key": "mit", @@ -19604,12 +19390,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-simple-router", "npm": { - "downloads": 15, - "weekDownloads": 1, + "downloads": 217, + "weekDownloads": 2, "size": 230007, "latestRelease": "0.12.1", "latestReleaseDate": "2019-06-20T16:37:48.175Z" @@ -19620,8 +19407,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.433, - "topicSearchString": "react react-component react-native ios navigation navigation-bar navbar router simple react-router react-navigation" + "popularity": -1.492, + "topicSearchString": "component ios navigation navigation-bar navbar router simple" }, { "githubUrl": "https://github.com/lwansbrough/react-native-markdown", @@ -19645,7 +19432,7 @@ "pushedAt": "2015-07-04T18:55:07Z", "forks": 63, "issues": 13, - "subscribers": 7, + "subscribers": 6, "stars": 277, "dependencies": 2 }, @@ -19654,8 +19441,6 @@ "isPrivate": false, "description": "Markdown component for React Native", "topics": [ - "react", - "native", "markdown", "md", "parse", @@ -19671,12 +19456,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-markdown", "npm": { - "downloads": 21, - "weekDownloads": 1, + "downloads": 52, + "weekDownloads": 3, "latestRelease": "0.1.1", "latestReleaseDate": "2015-04-21T06:27:55.981Z" }, @@ -19687,7 +19473,7 @@ "Not supporting New Architecture" ], "popularity": -1.45, - "topicSearchString": "react native markdown md parse parser" + "topicSearchString": "markdown md parse parser" }, { "githubUrl": "https://github.com/superdami/react-native-custom-navigation", @@ -19720,12 +19506,9 @@ "isPrivate": false, "description": "If you want to customize navbar content, or your navbar need a fade-in effect by scrolling. This is it.", "topics": [ - "react", - "react-component", - "react-native", - "react-navigation", - "ios", + "component", "navigation", + "ios", "navbar", "router" ], @@ -19739,12 +19522,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-custom-navigation", "npm": { - "downloads": 12, - "weekDownloads": 2, + "downloads": 34, + "weekDownloads": 0, "latestRelease": "0.2.2", "latestReleaseDate": "2016-01-11T10:56:07.503Z" }, @@ -19754,8 +19538,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "react react-component react-native react-navigation ios navigation navbar router" + "popularity": -1, + "topicSearchString": "component navigation ios navbar router" }, { "githubUrl": "https://github.com/johanneslumpe/react-native-gesture-recognizers", @@ -19779,7 +19563,7 @@ "pushedAt": "2017-05-15T12:53:27Z", "forks": 44, "issues": 7, - "subscribers": 12, + "subscribers": 11, "stars": 367, "dependencies": 0 }, @@ -19788,7 +19572,6 @@ "isPrivate": false, "description": "Gesture recognizer decorators for react-native", "topics": [ - "react-native", "gesture", "detection" ], @@ -19802,12 +19585,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gesture-recognizers", "npm": { - "downloads": 9, - "weekDownloads": 1, + "downloads": 12, + "weekDownloads": 2, "latestRelease": "0.3.0", "latestReleaseDate": "2017-05-15T12:54:49.412Z" }, @@ -19817,8 +19601,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, - "topicSearchString": "react-native gesture detection" + "popularity": -1.3, + "topicSearchString": "gesture detection" }, { "githubUrl": "https://github.com/ldn0x7dc/react-native-gallery", @@ -19852,6 +19636,7 @@ "description": "A pure JavaScript image gallery component for react-native apps with common gestures like pan, pinch and doubleTap, supporting both iOS and Android.", "topics": [], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -19860,12 +19645,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gallery", "npm": { - "downloads": 53, - "weekDownloads": 17, + "downloads": 176, + "weekDownloads": 7, "latestRelease": "0.0.17", "latestReleaseDate": "2016-07-22T02:49:44.964Z" }, @@ -19875,7 +19661,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.217, + "popularity": -1.466, "topicSearchString": "" }, { @@ -19909,7 +19695,6 @@ "isPrivate": false, "description": "React Native TextInput styled with Material Design.", "topics": [ - "react-native", "textinput", "material-design", "material", @@ -19925,12 +19710,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-md-textinput", "npm": { - "downloads": 94, - "weekDownloads": 14, + "downloads": 2073, + "weekDownloads": 10, "latestRelease": "2.0.4", "latestReleaseDate": "2016-05-30T01:22:43.707Z" }, @@ -19940,8 +19726,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.373, - "topicSearchString": "react-native textinput material-design material design" + "popularity": -0.746, + "topicSearchString": "textinput material-design material design" }, { "githubUrl": "https://github.com/eyaleizenberg/react-native-custom-action-sheet", @@ -19974,8 +19760,7 @@ "isPrivate": false, "description": "React Native custom action sheet", "topics": [ - "react-native", - "react-component", + "component", "ios", "action-sheet" ], @@ -19989,12 +19774,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-custom-action-sheet", "npm": { - "downloads": 37, - "weekDownloads": 14, + "downloads": 130, + "weekDownloads": 10, "latestRelease": "0.0.11", "latestReleaseDate": "2016-05-30T16:24:28.403Z" }, @@ -20004,8 +19790,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.15, - "topicSearchString": "react-native react-component ios action-sheet" + "popularity": -1.433, + "topicSearchString": "component ios action-sheet" }, { "githubUrl": "https://github.com/wix/react-native-keyboard-aware-scrollview", @@ -20029,7 +19815,7 @@ "pushedAt": "2023-03-13T08:53:00Z", "forks": 91, "issues": 20, - "subscribers": 48, + "subscribers": 46, "stars": 495, "dependencies": 0 }, @@ -20049,12 +19835,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-keyboard-aware-scrollview", "npm": { - "downloads": 19289, - "weekDownloads": 3046, + "downloads": 17802, + "weekDownloads": 4412, "size": 9923, "latestRelease": "2.1.0", "latestReleaseDate": "2019-11-13T10:03:11.577Z" @@ -20065,7 +19852,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, + "popularity": -0.539, "topicSearchString": "" }, { @@ -20090,8 +19877,8 @@ "pushedAt": "2016-06-15T05:58:12Z", "forks": 32, "issues": 9, - "subscribers": 3, - "stars": 176, + "subscribers": 2, + "stars": 175, "dependencies": 5 }, "name": "react-native-gestures", @@ -20099,8 +19886,7 @@ "isPrivate": false, "description": "Composable React Native Gestures", "topics": [ - "react-native", - "react-component", + "component", "ios", "gestures", "pinch", @@ -20118,12 +19904,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gestures", "npm": { - "downloads": 67, - "weekDownloads": 16, + "downloads": 79, + "weekDownloads": 13, "latestRelease": "0.3.0", "latestReleaseDate": "2016-06-15T06:01:07.574Z" }, @@ -20133,8 +19920,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.287, - "topicSearchString": "react-native react-component ios gestures pinch zoom drag drop" + "popularity": -1.356, + "topicSearchString": "component ios gestures pinch zoom drag drop" }, { "githubUrl": "https://github.com/lwansbrough/react-native-ab", @@ -20156,10 +19943,10 @@ "updatedAt": "2015-07-24T01:25:49Z", "createdAt": "2015-04-22T21:02:01Z", "pushedAt": "2015-07-24T01:25:49Z", - "forks": 21, + "forks": 22, "issues": 1, - "subscribers": 4, - "stars": 181, + "subscribers": 3, + "stars": 182, "dependencies": 0 }, "name": "react-native-ab", @@ -20167,8 +19954,6 @@ "isPrivate": false, "description": "A component for rendering A/B tests in React Native", "topics": [ - "react", - "native", "ab", "test", "testing", @@ -20179,12 +19964,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ab", "npm": { - "downloads": 3, - "weekDownloads": 0, + "downloads": 13, + "weekDownloads": 3, "latestRelease": "0.1.0", "latestReleaseDate": "2015-04-22T21:03:35.174Z" }, @@ -20195,8 +19981,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react native ab test testing experiment variant" + "popularity": -1.3, + "topicSearchString": "ab test testing experiment variant" }, { "githubUrl": "https://github.com/evetstech/react-native-animated-ptr", @@ -20229,8 +20015,7 @@ "isPrivate": false, "description": "an easy-to-create custom animated pull to refresh component", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "animated", @@ -20246,12 +20031,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-ptr", "npm": { - "downloads": 11, - "weekDownloads": 0, + "downloads": 38, + "weekDownloads": 4, "latestRelease": "1.1.1", "latestReleaseDate": "2017-01-31T17:40:04.522Z" }, @@ -20260,8 +20046,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native react-component ios android animated pull-to-refresh" + "popularity": -1.4, + "topicSearchString": "component ios android animated pull-to-refresh" }, { "githubUrl": "https://github.com/siuying/react-native-htmltext", @@ -20285,7 +20071,7 @@ "pushedAt": "2015-03-30T14:33:47Z", "forks": 38, "issues": 4, - "subscribers": 2, + "subscribers": 1, "stars": 138, "dependencies": 2 }, @@ -20298,12 +20084,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-htmltext", "npm": { - "downloads": 31, - "weekDownloads": 6, + "downloads": 43, + "weekDownloads": 7, "latestRelease": "0.1.2", "latestReleaseDate": "2015-03-31T16:54:50.830Z" }, @@ -20313,7 +20100,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.329, + "popularity": -1.36, "topicSearchString": "" }, { @@ -20337,7 +20124,7 @@ "pushedAt": "2018-02-06T16:45:32Z", "forks": 8, "issues": 4, - "subscribers": 2, + "subscribers": 1, "stars": 90, "dependencies": 1 }, @@ -20346,8 +20133,7 @@ "isPrivate": false, "description": "iOS-style listitem component for React Native", "topics": [ - "react-native", - "react-component", + "component", "ios", "listitem", "swipe", @@ -20363,12 +20149,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-listitem", "npm": { - "downloads": 65, - "weekDownloads": 4, + "downloads": 118, + "weekDownloads": 11, "latestRelease": "1.0.5", "latestReleaseDate": "2015-09-09T23:33:57.330Z" }, @@ -20377,14 +20164,15 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.447, - "topicSearchString": "react-native react-component ios listitem swipe ui" + "popularity": -1.419, + "topicSearchString": "component ios listitem swipe ui" }, { "githubUrl": "https://github.com/Polidea/react-native-ble-plx", "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/dotintent/react-native-ble-plx", @@ -20399,10 +20187,10 @@ "updatedAt": "2025-04-03T08:01:11Z", "createdAt": "2016-07-27T10:57:27Z", "pushedAt": "2025-04-03T08:01:11Z", - "forks": 517, - "issues": 28, + "forks": 521, + "issues": 33, "subscribers": 74, - "stars": 3293, + "stars": 3308, "dependencies": 0 }, "name": "react-native-ble-plx", @@ -20411,11 +20199,8 @@ "registry": "https://registry.npmjs.org/", "description": "React Native BLE library", "topics": [ - "react-native", "ios", "android", - "react", - "native", "bluetooth", "low", "energy", @@ -20431,25 +20216,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-ble-plx", "npm": { - "downloads": 309897, - "weekDownloads": 39143, + "downloads": 396807, + "weekDownloads": 96976, "size": 813892, "latestRelease": "3.5.0", "latestReleaseDate": "2025-02-11T18:07:03.350Z" }, - "score": 92, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.107, - "topicSearchString": "react-native ios android react native bluetooth low energy ble" + "popularity": 0.208, + "topicSearchString": "ios android bluetooth low energy ble" }, { "githubUrl": "https://github.com/mfrachet/rn-placeholder", @@ -20479,7 +20266,7 @@ "forks": 181, "issues": 7, "subscribers": 12, - "stars": 2131, + "stars": 2130, "dependencies": 0 }, "name": "rn-placeholder", @@ -20487,11 +20274,9 @@ "isPrivate": false, "description": "🏖️ Display some placeholder stuff before rendering your text or media content in React Native", "topics": [ - "react-native", "ios", "android", "expo", - "react", "ux", "placeholder" ], @@ -20505,13 +20290,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-placeholder", "npm": { - "downloads": 127271, - "weekDownloads": 23740, + "downloads": 86785, + "weekDownloads": 21314, "size": 49819, "latestRelease": "3.0.3", "latestReleaseDate": "2020-09-18T13:37:56.094Z" @@ -20523,8 +20309,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, - "topicSearchString": "react-native ios android expo react ux placeholder" + "popularity": -0.541, + "topicSearchString": "ios android expo ux placeholder" }, { "githubUrl": "https://github.com/mfrachet/rn-displayable", @@ -20557,7 +20343,6 @@ "isPrivate": false, "description": ":computer: :dash: Make your component visible with animations and a set of rules or simple props", "topics": [ - "react-native", "ios", "android", "expo" @@ -20566,11 +20351,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-displayable", "npm": { - "downloads": 5, + "downloads": 15, "weekDownloads": 0, "size": 220546, "latestRelease": "1.0.1", @@ -20583,7 +20369,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android expo" + "topicSearchString": "ios android expo" }, { "githubUrl": "https://github.com/tipsi/tipsi-stripe", @@ -20605,7 +20391,7 @@ "pushedAt": "2023-04-13T16:08:20Z", "forks": 485, "issues": 2, - "subscribers": 26, + "subscribers": 25, "stars": 1137, "dependencies": 0 }, @@ -20614,8 +20400,6 @@ "isPrivate": false, "description": "React Native Stripe binding for iOS/Android platforms", "topics": [ - "react", - "react-native", "stripe", "ios", "android", @@ -20631,13 +20415,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "tipsi-stripe", "npm": { - "downloads": 5332, - "weekDownloads": 1239, + "downloads": 6742, + "weekDownloads": 1111, "size": 343380, "latestRelease": "11.0.1", "latestReleaseDate": "2023-04-13T16:08:35.170Z" @@ -20649,8 +20434,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.552, - "topicSearchString": "react react-native stripe ios android apple-pay" + "popularity": -0.61, + "topicSearchString": "stripe ios android apple-pay" }, { "githubUrl": "https://github.com/awesomejerry/react-native-qrcode-svg", @@ -20675,7 +20460,7 @@ "forks": 208, "issues": 39, "subscribers": 44, - "stars": 1129, + "stars": 1133, "dependencies": 3 }, "name": "react-native-qrcode-svg", @@ -20683,7 +20468,6 @@ "isPrivate": false, "description": "A QR Code generator for React Native based on react-native-svg and node-qrcode.", "topics": [ - "react-native", "qrcode", "svg", "node-qrcode" @@ -20698,12 +20482,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-qrcode-svg", "npm": { - "downloads": 1054207, - "weekDownloads": 164966, + "downloads": 1192745, + "weekDownloads": 280358, "size": 958130, "latestRelease": "6.3.15", "latestReleaseDate": "2025-02-21T05:44:01.802Z" @@ -20715,8 +20500,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.133, - "topicSearchString": "react-native qrcode svg node-qrcode" + "popularity": 0.2, + "topicSearchString": "qrcode svg node-qrcode" }, { "githubUrl": "https://github.com/invertase/react-native-google-mobile-ads", @@ -20726,6 +20511,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-google-mobile-ads", @@ -20737,13 +20523,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-27T07:13:09Z", + "updatedAt": "2025-10-21T12:10:44Z", "createdAt": "2021-04-20T12:33:05Z", - "pushedAt": "2025-08-27T07:13:09Z", - "forks": 182, - "issues": 13, - "subscribers": 19, - "stars": 893, + "pushedAt": "2025-10-21T12:10:44Z", + "forks": 191, + "issues": 12, + "subscribers": 18, + "stars": 914, "dependencies": 2 }, "name": "react-native-google-mobile-ads", @@ -20751,8 +20537,6 @@ "isPrivate": false, "description": "React Native Google Mobile Ads enables you to monetize your app with AdMob.", "topics": [ - "react", - "react-native", "admob", "mobile-ads", "google-ads", @@ -20775,15 +20559,17 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-google-mobile-ads", "npm": { - "downloads": 162313, - "weekDownloads": 28496, - "size": 1229445, - "latestRelease": "15.7.0", - "latestReleaseDate": "2025-08-27T07:13:19.024Z" + "downloads": 163838, + "weekDownloads": 35959, + "size": 1230295, + "latestRelease": "15.8.3", + "latestReleaseDate": "2025-10-21T12:10:58.259Z" }, "score": 76, "matchingScoreModifiers": [ @@ -20791,8 +20577,8 @@ "Known", "Recently updated" ], - "popularity": 0.149, - "topicSearchString": "react react-native admob mobile-ads google-ads gdpr banner-ad rewarded-ad interstitial ad-consent android ios google" + "popularity": 0.187, + "topicSearchString": "admob mobile-ads google-ads gdpr banner-ad rewarded-ad interstitial ad-consent android ios google" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/analytics", @@ -20812,13 +20598,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 1 }, "name": "@react-native-firebase/analytics", @@ -20826,8 +20612,6 @@ "isPrivate": false, "description": "React Native Firebase - The analytics module provides out of the box support with Google Analytics for Firebase. Integration with the Android & iOS allows for in-depth analytical insight reporting, such as device information, location, user actions and more.", "topics": [ - "react", - "react-native", "firebase", "analytics" ], @@ -20841,25 +20625,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1755280, - "weekDownloads": 281348, - "size": 289221, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:43.634Z" + "downloads": 1738437, + "weekDownloads": 412270, + "size": 289577, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:50.949Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.136, - "topicSearchString": "react react-native firebase analytics" + "popularity": 0.202, + "topicSearchString": "firebase analytics" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/app-check", @@ -20868,6 +20652,7 @@ "tvos": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -20879,13 +20664,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 0 }, "name": "@react-native-firebase/app-check", @@ -20893,8 +20678,6 @@ "isPrivate": false, "description": "React Native Firebase - App Check", "topics": [ - "react", - "react-native", "firebase", "app-check", "appcheck" @@ -20909,25 +20692,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 85507, - "weekDownloads": 14269, - "size": 144964, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:43.848Z" + "downloads": 94400, + "weekDownloads": 21110, + "size": 145320, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:50.694Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.142, - "topicSearchString": "react react-native firebase app-check appcheck" + "popularity": 0.19, + "topicSearchString": "firebase app-check appcheck" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/app-distribution", @@ -20935,6 +20718,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -20946,13 +20730,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 0 }, "name": "@react-native-firebase/app-distribution", @@ -20960,8 +20744,6 @@ "isPrivate": false, "description": "React Native Firebase - App Distribution", "topics": [ - "react", - "react-native", "firebase", "app-distribution" ], @@ -20975,25 +20757,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 38955, - "weekDownloads": 5986, - "size": 85949, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:45.691Z" + "downloads": 38289, + "weekDownloads": 9134, + "size": 86319, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:53.114Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.131, - "topicSearchString": "react react-native firebase app-distribution" + "popularity": 0.203, + "topicSearchString": "firebase app-distribution" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/app", @@ -21002,6 +20784,7 @@ "tvos": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -21013,13 +20796,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 1 }, "name": "@react-native-firebase/app", @@ -21027,7 +20810,6 @@ "isPrivate": false, "description": "A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Storage and more.", "topics": [ - "react", "admob", "auth", "config", @@ -21041,7 +20823,6 @@ "datastore", "remote-config", "transactions", - "react-native", "firebase", "firebase", "fcm", @@ -21069,25 +20850,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 2957753, - "weekDownloads": 474558, - "size": 565593, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:43.578Z" + "downloads": 2956590, + "weekDownloads": 682470, + "size": 566327, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:50.778Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.136, - "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" + "popularity": 0.196, + "topicSearchString": "admob auth config digits fabric functions phone-auth sms firestore cloud-firestore datastore remote-config transactions firebase firebase fcm apn gcm analytics messaging database android ios crash firestack performance firestore dynamic-links crashlytics" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/auth", @@ -21096,6 +20877,7 @@ "tvos": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -21107,13 +20889,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 1 }, "name": "@react-native-firebase/auth", @@ -21121,8 +20903,6 @@ "isPrivate": false, "description": "React Native Firebase - The authentication module provides an easy-to-use API to integrate an authentication workflow into new and existing applications. React Native Firebase provides access to all Firebase authentication methods and identity providers.", "topics": [ - "react", - "react-native", "firebase", "auth" ], @@ -21136,25 +20916,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 595367, - "weekDownloads": 100775, - "size": 556720, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:45.817Z" + "downloads": 580950, + "weekDownloads": 126276, + "size": 557066, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:53.374Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.144, - "topicSearchString": "react react-native firebase auth" + "popularity": 0.185, + "topicSearchString": "firebase auth" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/crashlytics", @@ -21163,6 +20943,7 @@ "tvos": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -21174,13 +20955,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 1 }, "name": "@react-native-firebase/crashlytics", @@ -21188,8 +20969,6 @@ "isPrivate": false, "description": "React Native Firebase - Firebase Crashlytics is a lightweight, realtime crash reporter that helps you track, prioritize, and fix stability issues that erode your app quality. React Native Firebase provides automatic crash reporting for both native and JavaScript errors, including unhandled promise rejections.", "topics": [ - "react", - "react-native", "firebase", "fabric", "crash", @@ -21208,25 +20987,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 1129573, - "weekDownloads": 185015, - "size": 164873, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:46.163Z" + "downloads": 1071553, + "weekDownloads": 249697, + "size": 165233, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:53.563Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.139, - "topicSearchString": "react react-native firebase fabric crash bug error reporting crashlytics" + "popularity": 0.198, + "topicSearchString": "firebase fabric crash bug error reporting crashlytics" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/database", @@ -21246,13 +21025,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 0 }, "name": "@react-native-firebase/database", @@ -21260,8 +21039,6 @@ "isPrivate": false, "description": "React Native Firebase - The Firebase Realtime Database is a cloud-hosted database. Data is stored as JSON and synchronized in realtime to every connected client. React Native Firebase provides native integration with the Android & iOS Firebase SDKs, supporting both realtime data sync and offline capabilities.", "topics": [ - "react", - "react-native", "firebase", "realtime", "database", @@ -21278,25 +21055,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 89211, - "weekDownloads": 15160, - "size": 424657, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:46.358Z" + "downloads": 91691, + "weekDownloads": 20009, + "size": 425011, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:53.720Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.144, - "topicSearchString": "react react-native firebase realtime database synchronized realtome-database" + "popularity": 0.185, + "topicSearchString": "firebase realtime database synchronized realtome-database" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/firestore", @@ -21316,13 +21093,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 1 }, "name": "@react-native-firebase/firestore", @@ -21330,8 +21107,6 @@ "isPrivate": false, "description": "React Native Firebase - Cloud Firestore is a NoSQL cloud database to store and sync data between your React Native application and Firebase's database. The API matches the Firebase Web SDK whilst taking advantage of the native SDKs performance and offline capabilities.", "topics": [ - "react", - "react-native", "firebase", "cloud-firestore", "database", @@ -21350,25 +21125,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 400977, - "weekDownloads": 65306, - "size": 613236, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:48.297Z" + "downloads": 358288, + "weekDownloads": 80087, + "size": 613592, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:55.847Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.138, - "topicSearchString": "react react-native firebase cloud-firestore database nosql query realtime firestore" + "popularity": 0.19, + "topicSearchString": "firebase cloud-firestore database nosql query realtime firestore" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/functions", @@ -21388,13 +21163,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 0 }, "name": "@react-native-firebase/functions", @@ -21402,8 +21177,6 @@ "isPrivate": false, "description": "React Native Firebase - Cloud Functions for Firebase lets you automatically run backend code in response to events triggered by Firebase features and HTTPS requests. React Native Firebase supports integration with production and locally emulated Cloud Functions with a simple API interface.\n\n", "topics": [ - "react", - "react-native", "firebase", "https", "callable", @@ -21419,25 +21192,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 123393, - "weekDownloads": 22755, - "size": 126069, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:48.329Z" + "downloads": 91024, + "weekDownloads": 19971, + "size": 126543, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:55.999Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.157, - "topicSearchString": "react react-native firebase https callable functions" + "popularity": 0.186, + "topicSearchString": "firebase https callable functions" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/in-app-messaging", @@ -21457,13 +21230,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 0 }, "name": "@react-native-firebase/in-app-messaging", @@ -21471,8 +21244,6 @@ "isPrivate": false, "description": "React Native Firebase - Firebase In-App Messaging helps you engage your app's active users by sending them targeted, contextual messages that encourage them to use key app features. React Native Firebase provides support for both native Android & iOS integration with a simple JavaScript API.", "topics": [ - "react", - "react-native", "firebase", "in-app-messaging", "analytics", @@ -21491,25 +21262,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 73704, - "weekDownloads": 11251, - "size": 95666, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:48.440Z" + "downloads": 74059, + "weekDownloads": 15939, + "size": 96036, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:56.347Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.13, - "topicSearchString": "react react-native firebase in-app-messaging analytics predictions engage active-users inappmessaging" + "popularity": 0.183, + "topicSearchString": "firebase in-app-messaging analytics predictions engage active-users inappmessaging" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/messaging", @@ -21518,6 +21289,7 @@ "tvos": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -21529,13 +21301,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 0 }, "name": "@react-native-firebase/messaging", @@ -21543,8 +21315,6 @@ "isPrivate": false, "description": "React Native Firebase - React Native Firebase provides native integration of Firebase Cloud Messaging (FCM) for both Android & iOS. FCM is a cost free service, allowing for server-device and device-device communication. The React Native Firebase Messaging module provides a simple JavaScript API to interact with FCM.", "topics": [ - "react", - "react-native", "firebase", "messaging" ], @@ -21558,25 +21328,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 1768874, - "weekDownloads": 282170, - "size": 298494, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:51.052Z" + "downloads": 1803480, + "weekDownloads": 421641, + "size": 298850, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:58.440Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.136, - "topicSearchString": "react react-native firebase messaging" + "popularity": 0.199, + "topicSearchString": "firebase messaging" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/ml", @@ -21596,13 +21366,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 0 }, "name": "@react-native-firebase/ml", @@ -21610,8 +21380,6 @@ "isPrivate": false, "description": "React Native Firebase - Firebase ML brings the power of machine learning vision to your React Native application, supporting both Android & iOS.", "topics": [ - "react", - "react-native", "firebase", "ml", "machine-learning", @@ -21629,25 +21397,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 3524, - "weekDownloads": 444, - "size": 86278, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:51.600Z" + "downloads": 3090, + "weekDownloads": 482, + "size": 86620, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:58.753Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.107, - "topicSearchString": "react react-native firebase ml machine-learning text-recognition landmark-recognition image-labeler" + "popularity": 0.133, + "topicSearchString": "firebase ml machine-learning text-recognition landmark-recognition image-labeler" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/perf", @@ -21656,6 +21424,7 @@ "tvos": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/invertase/react-native-firebase", @@ -21667,13 +21436,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 0 }, "name": "@react-native-firebase/perf", @@ -21681,8 +21450,6 @@ "isPrivate": false, "description": "React Native Firebase - React Native Firebase provides native integration with Performance Monitoring to gain insight into key performance characteristics within your React Native application.", "topics": [ - "react", - "react-native", "firebase", "perf", "trace", @@ -21701,25 +21468,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 496595, - "weekDownloads": 86294, - "size": 146978, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:50.740Z" + "downloads": 473897, + "weekDownloads": 107167, + "size": 147324, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:58.637Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.148, - "topicSearchString": "react react-native firebase perf trace insight http latency performance-monitoring" + "popularity": 0.192, + "topicSearchString": "firebase perf trace insight http latency performance-monitoring" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/remote-config", @@ -21739,22 +21506,20 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-20T16:55:37Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, - "dependencies": 0 + "pushedAt": "2025-10-20T16:55:37Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, + "dependencies": 3 }, "name": "@react-native-firebase/remote-config", "fullName": "invertase/react-native-firebase", "isPrivate": false, "description": "React Native Firebase - React Native Firebase provides native integration with Remote Config, allowing you to change the appearance and/or functionality of your app without requiring an app update.", "topics": [ - "react", - "react-native", "firebase", "config", "remote", @@ -21770,25 +21535,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 593673, - "weekDownloads": 94687, - "size": 166522, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:50.967Z" + "downloads": 560425, + "weekDownloads": 125526, + "size": 168186, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:59.031Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.136, - "topicSearchString": "react react-native firebase config remote remote-config" + "popularity": 0.19, + "topicSearchString": "firebase config remote remote-config" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/storage", @@ -21808,13 +21573,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 0 }, "name": "@react-native-firebase/storage", @@ -21822,8 +21587,6 @@ "isPrivate": false, "description": "React Native Firebase - React Native Firebase provides native integration with Cloud Storage, providing support to upload and download files directly from your device and from your Firebase Cloud Storage bucket.", "topics": [ - "react", - "react-native", "firebase", "images", "audio", @@ -21844,25 +21607,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 181930, - "weekDownloads": 33144, - "size": 285728, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:53.259Z" + "downloads": 150338, + "weekDownloads": 33384, + "size": 286080, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:33:00.909Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.155, - "topicSearchString": "react react-native firebase images audio video json cloud-storage storage upload download" + "popularity": 0.189, + "topicSearchString": "firebase images audio video json cloud-storage storage upload download" }, { "githubUrl": "https://github.com/itinance/react-native-fs", @@ -21888,10 +21651,10 @@ "updatedAt": "2023-04-12T21:30:13Z", "createdAt": "2015-05-08T17:04:15Z", "pushedAt": "2023-04-12T21:30:13Z", - "forks": 882, + "forks": 883, "issues": 555, - "subscribers": 44, - "stars": 5027, + "subscribers": 43, + "stars": 5036, "dependencies": 2 }, "name": "react-native-fs", @@ -21899,8 +21662,7 @@ "isPrivate": false, "description": "Native filesystem access for react-native", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "fs", @@ -21919,12 +21681,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fs", "npm": { - "downloads": 1589626, - "weekDownloads": 249502, + "downloads": 1543107, + "weekDownloads": 366245, "size": 570292, "latestRelease": "2.20.0", "latestReleaseDate": "2022-05-04T16:06:26.809Z" @@ -21938,8 +21701,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, - "topicSearchString": "react-component react-native ios android fs filesystem download upload file-transfer" + "popularity": -0.548, + "topicSearchString": "component ios android fs filesystem download upload file-transfer" }, { "githubUrl": "https://github.com/lodev09/react-native-cell-components", @@ -21962,7 +21725,7 @@ "pushedAt": "2020-01-01T15:12:48Z", "forks": 14, "issues": 0, - "subscribers": 6, + "subscribers": 5, "stars": 177, "dependencies": 1 }, @@ -21971,7 +21734,6 @@ "isPrivate": false, "description": "Awesome react-native cell components! From a Cell to more complex & awesome components.", "topics": [ - "react-native", "cell", "components", "ios", @@ -21988,13 +21750,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-cell-components", "npm": { - "downloads": 7, - "weekDownloads": 2, + "downloads": 741, + "weekDownloads": 3, "size": 65287, "latestRelease": "0.7.9", "latestReleaseDate": "2019-12-27T14:47:36.759Z" @@ -22004,8 +21767,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.1, - "topicSearchString": "react-native cell components ios listview tableview" + "popularity": -1.497, + "topicSearchString": "cell components ios listview tableview" }, { "githubUrl": "https://github.com/malsapp/react-native-photo-upload", @@ -22038,8 +21801,6 @@ "description": "Cross platform photo upload component for react native", "topics": [ "photo", - "react", - "react-native", "resizer", "image", "picker", @@ -22062,12 +21823,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-photo-upload", "npm": { - "downloads": 1258, - "weekDownloads": 469, + "downloads": 809, + "weekDownloads": 135, "size": 55942, "latestRelease": "1.3.0", "latestReleaseDate": "2018-08-31T20:33:32.975Z" @@ -22078,8 +21840,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.433, - "topicSearchString": "photo react react-native resizer image picker base64 ios android photos reactjs image-picker fs image-resizer" + "popularity": -1.358, + "topicSearchString": "photo resizer image picker base64 ios android photos reactjs image-picker fs image-resizer" }, { "githubUrl": "https://github.com/peggyrayzis/react-native-create-bridge", @@ -22110,9 +21872,6 @@ "isPrivate": false, "description": "A CLI tool that bridges React Native modules & UI components with ease 🎉", "topics": [ - "react", - "native", - "react-native", "bridge", "cli", "swift", @@ -22130,13 +21889,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-create-bridge", "npm": { - "downloads": 2451, - "weekDownloads": 186, + "downloads": 1806, + "weekDownloads": 458, "latestRelease": "2.0.1", "latestReleaseDate": "2018-01-29T03:30:07.772Z" }, @@ -22147,8 +21907,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.685, - "topicSearchString": "react native react-native bridge cli swift java objective-c kotlin" + "popularity": -0.534, + "topicSearchString": "bridge cli swift java objective-c kotlin" }, { "githubUrl": "https://github.com/uxxman/react-native-fa-icons", @@ -22180,7 +21940,6 @@ "isPrivate": false, "description": "Font Awesome Icons for React Native", "topics": [ - "react-native", "fonts", "font-awesome", "fontawesome", @@ -22198,13 +21957,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-fa-icons", "npm": { - "downloads": 37, - "weekDownloads": 3, + "downloads": 99, + "weekDownloads": 5, "size": 190457, "latestRelease": "4.1.1", "latestReleaseDate": "2019-04-21T14:52:25.198Z" @@ -22214,8 +21974,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.675, - "topicSearchString": "react-native fonts font-awesome fontawesome icon icons-fontawesome icons" + "popularity": -1.707, + "topicSearchString": "fonts font-awesome fontawesome icon icons-fontawesome icons" }, { "githubUrl": "https://github.com/material-native/material-native", @@ -22247,9 +22007,7 @@ "isPrivate": false, "description": "Material Design components for React Native", "topics": [ - "react", - "react-component", - "react-native", + "component", "material", "material-design", "android", @@ -22265,13 +22023,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "material-native", "npm": { - "downloads": 17, - "weekDownloads": 2, + "downloads": 163, + "weekDownloads": 4, "latestRelease": "0.0.0-alpha.16", "latestReleaseDate": "2017-11-22T11:06:54.322Z" }, @@ -22280,8 +22039,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, - "topicSearchString": "react react-component react-native material material-design android ios" + "popularity": -1.479, + "topicSearchString": "component material material-design android ios" }, { "githubUrl": "https://github.com/ronak301/react-native-submit-button", @@ -22313,15 +22072,12 @@ "isPrivate": false, "description": "Animated Submit button. Works on both android and ios.", "topics": [ - "react", - "native", "animated", "component", "button", "submit", "android", "ios", - "react-native", "submit-button" ], "license": { @@ -22334,12 +22090,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-submit-button", "npm": { - "downloads": 18, - "weekDownloads": 0, + "downloads": 89, + "weekDownloads": 2, "latestRelease": "1.0.5", "latestReleaseDate": "2017-01-19T19:50:24.058Z" }, @@ -22348,8 +22105,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react native animated component button submit android ios react-native submit-button" + "popularity": -1.48, + "topicSearchString": "animated component button submit android ios submit-button" }, { "githubUrl": "https://github.com/mockingbot/react-native-zip-archive", @@ -22369,10 +22126,10 @@ "updatedAt": "2025-06-15T10:41:32Z", "createdAt": "2015-08-26T09:06:18Z", "pushedAt": "2025-06-15T10:41:32Z", - "forks": 152, + "forks": 153, "issues": 15, "subscribers": 12, - "stars": 450, + "stars": 454, "dependencies": 0 }, "name": "react-native-zip-archive", @@ -22380,7 +22137,6 @@ "isPrivate": false, "description": "Zip archive utility for react-native", "topics": [ - "react-native", "ios", "android", "zip", @@ -22399,12 +22155,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-zip-archive", "npm": { - "downloads": 152374, - "weekDownloads": 25248, + "downloads": 137978, + "weekDownloads": 33184, "size": 51330, "latestRelease": "7.0.2", "latestReleaseDate": "2025-06-15T10:42:34.957Z" @@ -22415,8 +22172,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.141, - "topicSearchString": "react-native ios android zip archive zip-archive unzip zip-assets" + "popularity": 0.204, + "topicSearchString": "ios android zip archive zip-archive unzip zip-assets" }, { "githubUrl": "https://github.com/beefe/react-native-actionsheet", @@ -22440,7 +22197,7 @@ "forks": 284, "issues": 50, "subscribers": 13, - "stars": 1357, + "stars": 1356, "dependencies": 0 }, "name": "react-native-actionsheet", @@ -22450,7 +22207,6 @@ "topics": [ "actionsheet", "action-sheet", - "react-native", "custom-action-sheet" ], "license": { @@ -22463,12 +22219,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-actionsheet", "npm": { - "downloads": 63859, - "weekDownloads": 10688, + "downloads": 64979, + "weekDownloads": 15355, "size": 15598, "latestRelease": "2.4.2", "latestReleaseDate": "2018-04-23T01:06:55.589Z" @@ -22480,8 +22237,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, - "topicSearchString": "actionsheet action-sheet react-native custom-action-sheet" + "popularity": -0.549, + "topicSearchString": "actionsheet action-sheet custom-action-sheet" }, { "githubUrl": "https://github.com/Michaelvilleneuve/react-native-document-scanner", @@ -22500,10 +22257,10 @@ "updatedAt": "2020-01-22T08:41:43Z", "createdAt": "2017-06-23T07:11:35Z", "pushedAt": "2020-01-22T08:41:43Z", - "forks": 200, + "forks": 202, "issues": 45, - "subscribers": 28, - "stars": 872, + "subscribers": 27, + "stars": 873, "dependencies": 1 }, "name": "react-native-document-scanner", @@ -22511,7 +22268,6 @@ "isPrivate": false, "description": "Document scanner, features live border detection, perspective correction, image filters and more ! 📲📸", "topics": [ - "react-native", "scanner", "ios", "document" @@ -22526,13 +22282,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-document-scanner", "npm": { - "downloads": 67, - "weekDownloads": 18, + "downloads": 205, + "weekDownloads": 62, "latestRelease": "1.4.2", "latestReleaseDate": "2017-11-09T14:30:29.256Z" }, @@ -22543,8 +22300,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.26, - "topicSearchString": "react-native scanner ios document" + "popularity": -1.242, + "topicSearchString": "scanner ios document" }, { "githubUrl": "https://github.com/Michaelvilleneuve/react-native-perspective-image-cropper", @@ -22574,10 +22331,8 @@ "isPrivate": false, "description": "Perform custom crop, resizing and perspective correction 📐🖼", "topics": [ - "react-native", "scanner", "crop", - "react", "image", "custom", "perspective" @@ -22592,13 +22347,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-perspective-image-cropper", "npm": { - "downloads": 508, - "weekDownloads": 38, + "downloads": 321, + "weekDownloads": 67, "size": 2063941, "latestRelease": "0.4.4", "latestReleaseDate": "2019-12-16T14:30:54.783Z" @@ -22609,8 +22365,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.436, - "topicSearchString": "react-native scanner crop react image custom perspective" + "popularity": -1.321, + "topicSearchString": "scanner crop image custom perspective" }, { "githubUrl": "https://github.com/zeljkoX/react-native-loading-placeholder", @@ -22641,8 +22397,7 @@ "isPrivate": false, "description": "React Native Loading Placeholder", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "placeholder", @@ -22660,13 +22415,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-loading-placeholder", "npm": { - "downloads": 1345, - "weekDownloads": 440, + "downloads": 2284, + "weekDownloads": 124, "latestRelease": "0.0.6", "latestReleaseDate": "2017-11-11T22:41:00.452Z" }, @@ -22675,8 +22431,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.472, - "topicSearchString": "react-native react-component ios android placeholder loading loader skeletor" + "popularity": -0.704, + "topicSearchString": "component ios android placeholder loading loader skeletor" }, { "githubUrl": "https://github.com/bamlab/react-native-batch-push", @@ -22687,6 +22443,7 @@ "ios": true, "android": true, "unmaintained": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/bamlab/react-native-batch-push", @@ -22703,7 +22460,7 @@ "pushedAt": "2022-07-28T09:37:00Z", "forks": 22, "issues": 0, - "subscribers": 19, + "subscribers": 18, "stars": 40, "dependencies": 0 }, @@ -22712,7 +22469,6 @@ "isPrivate": false, "description": "⛔️ DEPRECATED : React Native integration of Batch.com push notifications SDK", "topics": [ - "react-native", "batch", "push", "notifications", @@ -22732,11 +22488,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 84, - "weekDownloads": 0, + "downloads": 281, + "weekDownloads": 41, "size": 292353, "latestRelease": "7.0.3", "latestReleaseDate": "2022-01-25T17:08:00.197Z" @@ -22746,8 +22504,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native batch push notifications library push-notifications archived deprecated obsolete" + "popularity": -1.376, + "topicSearchString": "batch push notifications library push-notifications archived deprecated obsolete" }, { "githubUrl": "https://github.com/SoftZen/react-native-bouncy-drawer", @@ -22780,7 +22538,6 @@ "description": "Bouncy drawer for React Native", "topics": [ "drawer", - "react-native", "bouncy" ], "license": { @@ -22793,13 +22550,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bouncy-drawer", "npm": { - "downloads": 11, - "weekDownloads": 1, + "downloads": 5, + "weekDownloads": 0, "size": 2169349, "latestRelease": "1.0.1", "latestReleaseDate": "2018-04-23T19:28:37.640Z" @@ -22809,8 +22567,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, - "topicSearchString": "drawer react-native bouncy" + "popularity": -1, + "topicSearchString": "drawer bouncy" }, { "githubUrl": "https://github.com/matt-oakes/react-native-ios-drag-drop", @@ -22841,10 +22599,8 @@ "isPrivate": false, "description": "Support for the iOS 11+ inter-app drag and drop", "topics": [ - "react-native", "drag-and-drop", "ios", - "react", "component" ], "license": { @@ -22857,12 +22613,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-ios-drag-drop", "npm": { - "downloads": 29, - "weekDownloads": 7, + "downloads": 48, + "weekDownloads": 6, "latestRelease": "0.1.2", "latestReleaseDate": "2017-10-13T11:41:09.150Z" }, @@ -22871,8 +22628,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.267, - "topicSearchString": "react-native drag-and-drop ios react component" + "popularity": -1.391, + "topicSearchString": "drag-and-drop ios component" }, { "githubUrl": "https://github.com/callstack/react-native-material-palette", @@ -22895,7 +22652,7 @@ "pushedAt": "2018-06-28T13:36:16Z", "forks": 8, "issues": 6, - "subscribers": 7, + "subscribers": 6, "stars": 104, "dependencies": 3 }, @@ -22904,8 +22661,6 @@ "isPrivate": false, "description": "Bringing Material Palette API to React Native", "topics": [ - "react-native", - "react", "material-design", "material-ui" ], @@ -22919,12 +22674,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-material-palette", "npm": { - "downloads": 20, - "weekDownloads": 4, + "downloads": 782, + "weekDownloads": 16, "latestRelease": "0.1.0", "latestReleaseDate": "2017-08-21T09:51:40.749Z" }, @@ -22933,8 +22689,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "react-native react material-design material-ui" + "popularity": -1.483, + "topicSearchString": "material-design material-ui" }, { "githubUrl": "https://github.com/jfilter/react-native-onboarding-swiper", @@ -22960,10 +22716,10 @@ "updatedAt": "2024-07-29T15:02:28Z", "createdAt": "2017-10-12T20:02:23Z", "pushedAt": "2024-07-29T15:02:28Z", - "forks": 168, + "forks": 167, "issues": 33, - "subscribers": 12, - "stars": 1058, + "subscribers": 11, + "stars": 1060, "dependencies": 1 }, "name": "react-native-onboarding-swiper", @@ -22971,9 +22727,6 @@ "isPrivate": false, "description": "🛳 Delightful onboarding for your React-Native app", "topics": [ - "react", - "native", - "react-native", "component", "onboarding", "tutorial", @@ -22994,12 +22747,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-onboarding-swiper", "npm": { - "downloads": 23421, - "weekDownloads": 4030, + "downloads": 25289, + "weekDownloads": 5738, "size": 32469, "latestRelease": "1.3.0", "latestReleaseDate": "2024-07-27T22:10:10.335Z" @@ -23011,8 +22765,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.146, - "topicSearchString": "react native react-native component onboarding tutorial intro swiper welcome introduction instructions slider" + "popularity": 0.193, + "topicSearchString": "component onboarding tutorial intro swiper welcome introduction instructions slider" }, { "githubUrl": "https://github.com/xotahal/react-native-material-ui", @@ -23036,8 +22790,8 @@ "pushedAt": "2019-04-19T21:39:12Z", "forks": 578, "issues": 172, - "subscribers": 85, - "stars": 3782, + "subscribers": 84, + "stars": 3784, "dependencies": 5 }, "name": "react-native-material-ui", @@ -23045,12 +22799,11 @@ "isPrivate": false, "description": "Highly customizable material design components for React Native", "topics": [ - "react-native", "material", "design", "ui", "components", - "react-component", + "component", "android", "material-design", "ui-kit", @@ -23066,13 +22819,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-ui", "npm": { - "downloads": 2844, - "weekDownloads": 678, + "downloads": 8878, + "weekDownloads": 336, "size": 281224, "latestRelease": "1.30.1", "latestReleaseDate": "2018-07-02T11:37:51.541Z" @@ -23086,8 +22840,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.547, - "topicSearchString": "react-native material design ui components react-component android material-design ui-kit ios" + "popularity": -0.718, + "topicSearchString": "material design ui components component android material-design ui-kit ios" }, { "githubUrl": "https://github.com/SoftZen/react-native-falling-drawer", @@ -23135,13 +22889,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-falling-drawer", "npm": { - "downloads": 29, - "weekDownloads": 5, + "downloads": 69, + "weekDownloads": 18, "latestRelease": "1.0.2", "latestReleaseDate": "2017-10-14T18:54:20.705Z" }, @@ -23150,7 +22905,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.333, + "popularity": -1.275, "topicSearchString": "drawer falling customizable collapsible" }, { @@ -23194,11 +22949,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-render-perfs", "npm": { - "downloads": 3, + "downloads": 5, "weekDownloads": 0, "latestRelease": "0.0.1", "latestReleaseDate": "2017-11-06T07:33:02.599Z" @@ -23232,7 +22988,7 @@ "forks": 57, "issues": 12, "subscribers": 5, - "stars": 398, + "stars": 397, "dependencies": 6 }, "name": "react-native-schemes-manager", @@ -23240,15 +22996,12 @@ "isPrivate": false, "description": "Helps you manage React Native projects that have multiple schemes.", "topics": [ - "react", - "native", "xcode", "scheme", "build", "configuration", "environment", - "variables", - "react-native" + "variables" ], "license": { "key": "mit", @@ -23260,13 +23013,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-schemes-manager", "npm": { - "downloads": 9214, - "weekDownloads": 1352, + "downloads": 7486, + "weekDownloads": 1771, "size": 27857, "latestRelease": "2.0.0", "latestReleaseDate": "2019-04-03T00:00:54.186Z" @@ -23277,8 +23031,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.625, - "topicSearchString": "react native xcode scheme build configuration environment variables react-native" + "popularity": -0.549, + "topicSearchString": "xcode scheme build configuration environment variables" }, { "githubUrl": "https://github.com/akveo/react-native-ui-kitten/tree/master/src/components", @@ -23305,10 +23059,10 @@ "updatedAt": "2023-06-12T07:52:42Z", "createdAt": "2016-12-20T08:22:38Z", "pushedAt": "2023-06-12T07:52:42Z", - "forks": 956, - "issues": 175, - "subscribers": 125, - "stars": 10601, + "forks": 953, + "issues": 177, + "subscribers": 123, + "stars": 10618, "dependencies": 5 }, "name": "@ui-kitten/components", @@ -23316,7 +23070,6 @@ "isPrivate": false, "description": "React Native components based on Eva Design System", "topics": [ - "react-native", "ui-kitten", "ui-kit" ], @@ -23330,20 +23083,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, - "npm": { - "size": 1471259 - }, - "score": 22, + "npm": {}, + "score": 70, "matchingScoreModifiers": [ + "Very popular", + "Popular", + "Known", "Lots of open issues", "Not updated recently", "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ui-kitten ui-kit" + "topicSearchString": "ui-kitten ui-kit" }, { "githubUrl": "https://github.com/lopespm/react-native-offscreen-toolbar", @@ -23371,7 +23126,7 @@ "pushedAt": "2018-01-26T01:59:19Z", "forks": 1, "issues": 1, - "subscribers": 2, + "subscribers": 1, "stars": 22, "dependencies": 1 }, @@ -23380,10 +23135,7 @@ "isPrivate": false, "description": "Component which animates the toolbar off-screen while scrolling, a material design pattern. ", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ui", "toolbar", @@ -23402,12 +23154,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-offscreen-toolbar", "npm": { - "downloads": 15, - "weekDownloads": 0, + "downloads": 60, + "weekDownloads": 1, "latestRelease": "1.0.10", "latestReleaseDate": "2018-01-26T01:59:32.021Z" }, @@ -23416,8 +23169,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native react-component component react mobile ui toolbar navbar header material material-design" + "popularity": -1.736, + "topicSearchString": "component mobile ui toolbar navbar header material material-design" }, { "githubUrl": "https://github.com/bamlab/react-native-braintree-payments-drop-in", @@ -23439,7 +23192,7 @@ "pushedAt": "2019-10-28T11:18:23Z", "forks": 24, "issues": 10, - "subscribers": 6, + "subscribers": 5, "stars": 35, "dependencies": 0 }, @@ -23448,7 +23201,6 @@ "isPrivate": false, "description": "React Native integration of Braintree Drop-in", "topics": [ - "react-native", "braintree", "payments", "drop-in" @@ -23463,13 +23215,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-braintree-payments-drop-in", "npm": { - "downloads": 94, - "weekDownloads": 23, + "downloads": 181, + "weekDownloads": 16, "size": 66831, "latestRelease": "1.2.0", "latestReleaseDate": "2019-10-28T11:18:21.016Z" @@ -23479,8 +23232,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.291, - "topicSearchString": "react-native braintree payments drop-in" + "popularity": -1.424, + "topicSearchString": "braintree payments drop-in" }, { "githubUrl": "https://github.com/jaredpalmer/formik/tree/main/packages/formik", @@ -23503,10 +23256,10 @@ "updatedAt": "2024-08-30T21:17:50Z", "createdAt": "2017-06-14T19:50:59Z", "pushedAt": "2024-08-30T21:17:50Z", - "forks": 2751, - "issues": 702, - "subscribers": 229, - "stars": 34308, + "forks": 2748, + "issues": 703, + "subscribers": 227, + "stars": 34325, "dependencies": 8 }, "name": "formik", @@ -23517,10 +23270,9 @@ "formik", "form", "forms", - "react", - "react-dom", + "dom", + "hooks", "hooks", - "react-hooks", "validation", "render-props", "validation", @@ -23537,12 +23289,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "formik", "npm": { - "downloads": 13458541, - "weekDownloads": 2254939, + "downloads": 12910702, + "weekDownloads": 2931814, "size": 583234, "latestRelease": "2.4.6", "latestReleaseDate": "2024-04-24T22:22:59.781Z" @@ -23556,8 +23309,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "formik form forms react react-dom hooks react-hooks validation render-props validation higher-order-component hoc" + "popularity": 0.193, + "topicSearchString": "formik form forms dom hooks hooks validation render-props validation higher-order-component hoc" }, { "githubUrl": "https://github.com/shokimble/react-native-google-play-game-services", @@ -23588,7 +23341,6 @@ "isPrivate": false, "description": "Google Play Game Services Bindings for React Native on Android", "topics": [ - "react-native", "google-play", "google-play-game-services", "android", @@ -23605,12 +23357,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-google-play-game-services", "npm": { - "downloads": 379, - "weekDownloads": 5, + "downloads": 669, + "weekDownloads": 115, "size": 29935053, "latestRelease": "1.0.0", "latestReleaseDate": "2018-03-12T01:19:43.981Z" @@ -23620,8 +23373,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.739, - "topicSearchString": "react-native google-play google-play-game-services android google-play-games google-play-service" + "popularity": -1.604, + "topicSearchString": "google-play google-play-game-services android google-play-games google-play-service" }, { "githubUrl": "https://github.com/Noitidart/react-native-popup-menu-android", @@ -23652,17 +23405,15 @@ "isPrivate": false, "description": "Native Module - Show the native Android material style popup menu on press of an element.", "topics": [ - "react-native", "android", "popup", "popover", "menu", "overlay", - "native-native", - "native", "material" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -23671,13 +23422,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-popup-menu-android", "npm": { - "downloads": 323, - "weekDownloads": 30, + "downloads": 925, + "weekDownloads": 162, "size": 636653, "latestRelease": "1.0.3", "latestReleaseDate": "2018-05-22T08:08:18.606Z" @@ -23687,8 +23439,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.671, - "topicSearchString": "react-native android popup popover menu overlay native-native native material" + "popularity": -1.601, + "topicSearchString": "android popup popover menu overlay material" }, { "githubUrl": "https://github.com/TaumuLu/react-scroll-paged-view", @@ -23720,8 +23472,6 @@ "isPrivate": false, "description": "Inside scroll, Full page scroll", "topics": [ - "react", - "react-native", "scrollview", "full-page-scroll", "full-screen-scroll", @@ -23739,13 +23489,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-scroll-paged-view", "npm": { - "downloads": 127, - "weekDownloads": 9, + "downloads": 357, + "weekDownloads": 13, "size": 151639, "latestRelease": "2.2.6", "latestReleaseDate": "2019-04-21T15:09:27.178Z" @@ -23755,8 +23506,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.438, - "topicSearchString": "react react-native scrollview full-page-scroll full-screen-scroll scroll paged view" + "popularity": -1.469, + "topicSearchString": "scrollview full-page-scroll full-screen-scroll scroll paged view" }, { "githubUrl": "https://github.com/vmurin/react-native-azure-auth", @@ -23776,8 +23527,8 @@ "updatedAt": "2025-09-09T11:49:32Z", "createdAt": "2018-02-23T08:03:13Z", "pushedAt": "2025-09-09T11:49:32Z", - "forks": 69, - "issues": 19, + "forks": 70, + "issues": 20, "subscribers": 6, "stars": 86, "dependencies": 6 @@ -23791,7 +23542,6 @@ "azuread", "authentication", "active-directory", - "react-native", "oauth", "oauth2" ], @@ -23805,24 +23555,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-azure-auth", "npm": { - "downloads": 11562, - "weekDownloads": 2134, + "downloads": 10401, + "weekDownloads": 2257, "size": 1887213, "latestRelease": "1.9.0", "latestReleaseDate": "2025-09-09T11:53:42.389Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, - "topicSearchString": "azure azuread authentication active-directory react-native oauth oauth2" + "popularity": 0.184, + "topicSearchString": "azure azuread authentication active-directory oauth oauth2" }, { "githubUrl": "https://github.com/doomsower/react-native-modal-popover", @@ -23854,8 +23604,6 @@ "isPrivate": false, "description": "React-Native pure JS popover that uses Modal", "topics": [ - "react", - "react-native", "popover", "modal" ], @@ -23869,13 +23617,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modal-popover", "npm": { - "downloads": 32048, - "weekDownloads": 5679, + "downloads": 31181, + "weekDownloads": 7229, "size": 98527, "latestRelease": "2.1.3", "latestReleaseDate": "2022-12-30T12:05:28.732Z" @@ -23886,8 +23635,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, - "topicSearchString": "react react-native popover modal" + "popularity": -0.553, + "topicSearchString": "popover modal" }, { "githubUrl": "https://github.com/doomsower/react-native-vkontakte-login", @@ -23907,9 +23656,9 @@ "updatedAt": "2020-07-20T06:56:26Z", "createdAt": "2016-06-22T15:00:01Z", "pushedAt": "2020-07-20T06:56:26Z", - "forks": 39, + "forks": 40, "issues": 16, - "subscribers": 4, + "subscribers": 5, "stars": 97, "dependencies": 0 }, @@ -23918,8 +23667,6 @@ "isPrivate": false, "description": "React native wrapper around VK iOS/Adnroid SDK", "topics": [ - "react", - "react-native", "vk", "vkontakte", "sdk", @@ -23936,13 +23683,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-vkontakte-login", "npm": { - "downloads": 355, - "weekDownloads": 83, + "downloads": 665, + "weekDownloads": 112, "size": 70666, "latestRelease": "1.0.1", "latestReleaseDate": "2020-07-20T06:56:43.137Z" @@ -23952,8 +23700,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "react react-native vk vkontakte sdk login share" + "popularity": -1.356, + "topicSearchString": "vk vkontakte sdk login share" }, { "githubUrl": "https://github.com/lawnstarter/react-native-picker-select", @@ -23971,13 +23719,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T22:48:41Z", + "updatedAt": "2025-10-13T15:00:25Z", "createdAt": "2018-02-11T22:31:55Z", - "pushedAt": "2025-09-08T22:48:41Z", - "forks": 463, - "issues": 86, - "subscribers": 20, - "stars": 1837, + "pushedAt": "2025-10-13T15:00:25Z", + "forks": 462, + "issues": 87, + "subscribers": 19, + "stars": 1838, "dependencies": 2 }, "name": "react-native-picker-select", @@ -23988,8 +23736,6 @@ "dropdown", "picker", "select", - "react", - "react-native", "expo", "items", "frontend", @@ -24008,12 +23754,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-picker-select", "npm": { - "downloads": 553311, - "weekDownloads": 97796, + "downloads": 534090, + "weekDownloads": 120261, "size": 45794, "latestRelease": "9.3.1", "latestReleaseDate": "2024-08-12T17:35:26.682Z" @@ -24026,8 +23773,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.15, - "topicSearchString": "dropdown picker select react react-native expo items frontend javascript library npm npm-package" + "popularity": 0.191, + "topicSearchString": "dropdown picker select expo items frontend javascript library npm npm-package" }, { "githubUrl": "https://github.com/NishanthShankar/react-native-keyguard", @@ -24059,8 +23806,7 @@ "isPrivate": false, "description": "A react native module to access the keyguard feature in android", "topics": [ - "react-component", - "react-native", + "component", "android", "lock-screen" ], @@ -24074,12 +23820,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-keyguard", "npm": { - "downloads": 28, - "weekDownloads": 3, + "downloads": 19, + "weekDownloads": 2, "size": 72049, "latestRelease": "0.1.4", "latestReleaseDate": "2018-03-28T12:42:33.821Z" @@ -24090,7 +23837,7 @@ "Not supporting New Architecture" ], "popularity": -1.65, - "topicSearchString": "react-component react-native android lock-screen" + "topicSearchString": "component android lock-screen" }, { "githubUrl": "https://github.com/gusgard/react-native-swiper-flatlist", @@ -24118,10 +23865,10 @@ "updatedAt": "2024-09-16T10:39:08Z", "createdAt": "2017-11-19T21:58:25Z", "pushedAt": "2024-09-16T10:39:08Z", - "forks": 100, + "forks": 101, "issues": 8, "subscribers": 10, - "stars": 593, + "stars": 594, "dependencies": 0 }, "name": "react-native-swiper-flatlist", @@ -24134,11 +23881,8 @@ "hooks", "typescript", "component", - "react-native", "flatlist", "flatlist-swiper", - "react", - "native", "carousel", "slider", "scrollview", @@ -24164,12 +23908,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-swiper-flatlist", "npm": { - "downloads": 67722, - "weekDownloads": 11647, + "downloads": 62075, + "weekDownloads": 15319, "size": 72808, "latestRelease": "3.2.5", "latestReleaseDate": "2024-09-10T17:12:49.737Z" @@ -24180,8 +23925,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.146, - "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" + "popularity": 0.21, + "topicSearchString": "swiper swiper-flatlist hooks typescript component flatlist flatlist-swiper carousel slider scrollview images infinite scroll scrolling cards stack android ios swipeview swipe expo" }, { "githubUrl": "https://github.com/gusgard/react-native-grid-list", @@ -24221,8 +23966,6 @@ "grid-view", "grid-component", "grid-layout", - "react-native", - "react", "flatlist", "flatlist-grid" ], @@ -24236,13 +23979,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-grid-list", "npm": { - "downloads": 180, - "weekDownloads": 39, + "downloads": 190, + "weekDownloads": 38, "size": 1057645, "latestRelease": "1.1.0", "latestReleaseDate": "2019-10-01T14:44:52.319Z" @@ -24252,8 +23996,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.314, - "topicSearchString": "grid-list grid grid-view grid-component grid-layout react-native react flatlist flatlist-grid" + "popularity": -1.327, + "topicSearchString": "grid-list grid grid-view grid-component grid-layout flatlist flatlist-grid" }, { "githubUrl": "https://github.com/JimmyDaddy/react-native-image-marker", @@ -24270,6 +24014,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", @@ -24284,10 +24029,10 @@ "updatedAt": "2024-02-04T13:21:23Z", "createdAt": "2017-03-04T16:33:14Z", "pushedAt": "2024-02-04T13:21:23Z", - "forks": 101, + "forks": 103, "issues": 16, - "subscribers": 4, - "stars": 345, + "subscribers": 3, + "stars": 348, "dependencies": 2 }, "name": "react-native-image-marker", @@ -24296,7 +24041,6 @@ "registry": "https://registry.npmjs.org/", "description": "🙈Adding text or icon watermark to your image using React Native👀👀", "topics": [ - "react-native", "ios", "android", "image", @@ -24319,12 +24063,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-image-marker", "npm": { - "downloads": 16852, - "weekDownloads": 2746, + "downloads": 16648, + "weekDownloads": 3865, "size": 291612, "latestRelease": "1.2.6", "latestReleaseDate": "2024-02-04T13:25:06.282Z" @@ -24335,8 +24080,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.139, - "topicSearchString": "react-native ios android image marker text watermark icon mark photo reactnative icon-watermark" + "popularity": 0.197, + "topicSearchString": "ios android image marker text watermark icon mark photo reactnative icon-watermark" }, { "githubUrl": "https://github.com/CompanyCam/react-native-walkthrough-tooltip", @@ -24361,9 +24106,9 @@ "createdAt": "2018-04-18T05:50:46Z", "pushedAt": "2024-01-09T16:09:55Z", "forks": 169, - "issues": 53, + "issues": 54, "subscribers": 7, - "stars": 668, + "stars": 670, "dependencies": 2 }, "name": "react-native-walkthrough-tooltip", @@ -24371,8 +24116,6 @@ "isPrivate": false, "description": "An inline wrapper for calling out React Native components via tooltip", "topics": [ - "react", - "react-native", "walkthrough", "tooltip", "popover", @@ -24388,12 +24131,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-walkthrough-tooltip", "npm": { - "downloads": 277982, - "weekDownloads": 48146, + "downloads": 269178, + "weekDownloads": 65235, "size": 49891, "latestRelease": "1.6.0", "latestReleaseDate": "2024-01-09T16:28:39.537Z" @@ -24405,8 +24149,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.147, - "topicSearchString": "react react-native walkthrough tooltip popover highlighting" + "popularity": 0.206, + "topicSearchString": "walkthrough tooltip popover highlighting" }, { "githubUrl": "https://github.com/iddan/react-native-canvas", @@ -24429,8 +24173,8 @@ "pushedAt": "2024-06-02T10:23:45Z", "forks": 162, "issues": 26, - "subscribers": 23, - "stars": 1016, + "subscribers": 22, + "stars": 1017, "dependencies": 1 }, "name": "react-native-canvas", @@ -24438,9 +24182,7 @@ "isPrivate": false, "description": "A Canvas component for React Native", "topics": [ - "react", "canvas", - "native", "javascript", "graphics" ], @@ -24454,12 +24196,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-canvas", "npm": { - "downloads": 35491, - "weekDownloads": 6036, + "downloads": 44203, + "weekDownloads": 8850, "size": 71319, "latestRelease": "0.1.40", "latestReleaseDate": "2024-06-02T10:21:56.140Z" @@ -24471,8 +24214,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "react canvas native javascript graphics" + "popularity": 0.17, + "topicSearchString": "canvas javascript graphics" }, { "githubUrl": "https://github.com/SmallStoneSK/react-native-draggable-calendar", @@ -24507,7 +24250,6 @@ "isPrivate": false, "description": "A calendar component supporting dragging.", "topics": [ - "react-native", "calendar", "drag", "draggable", @@ -24523,13 +24265,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-draggable-calendar", "npm": { - "downloads": 22, - "weekDownloads": 1, + "downloads": 26, + "weekDownloads": 2, "size": 647560, "latestRelease": "1.0.2", "latestReleaseDate": "2018-09-27T01:07:49.524Z" @@ -24539,8 +24282,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.46, - "topicSearchString": "react-native calendar drag draggable draggable-calendar" + "popularity": -1.433, + "topicSearchString": "calendar drag draggable draggable-calendar" }, { "githubUrl": "https://github.com/xcarpentier/rn-pdf-reader-js", @@ -24563,7 +24306,7 @@ "pushedAt": "2021-04-12T19:22:08Z", "forks": 134, "issues": 15, - "subscribers": 5, + "subscribers": 4, "stars": 395, "dependencies": 3 }, @@ -24572,13 +24315,11 @@ "isPrivate": false, "description": "📄 PDF reader in JavaScript only for Expo - Android & iOS capable", "topics": [ - "react-native", "pdf", "pdfjs", "reader", "pdf-reader", "pdf-viewer", - "react-pdf", "expo" ], "license": { @@ -24591,13 +24332,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-pdf-reader-js", "npm": { - "downloads": 21439, - "weekDownloads": 3598, + "downloads": 21510, + "weekDownloads": 5103, "size": 112060, "latestRelease": "4.1.1", "latestReleaseDate": "2020-07-14T14:39:09.885Z" @@ -24608,8 +24350,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, - "topicSearchString": "react-native pdf pdfjs reader pdf-reader pdf-viewer react-pdf expo" + "popularity": -0.548, + "topicSearchString": "pdf pdfjs reader pdf-reader pdf-viewer expo" }, { "githubUrl": "https://github.com/cooperka/react-native-snackbar", @@ -24637,7 +24379,7 @@ "pushedAt": "2025-03-29T21:34:40Z", "forks": 141, "issues": 23, - "subscribers": 11, + "subscribers": 10, "stars": 863, "dependencies": 0 }, @@ -24646,7 +24388,6 @@ "isPrivate": false, "description": ":candy: Material Design \"Snackbar\" component for Android and iOS.", "topics": [ - "react-native", "component", "ios", "android", @@ -24665,24 +24406,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-snackbar", "npm": { - "downloads": 60508, - "weekDownloads": 10024, + "downloads": 57508, + "weekDownloads": 12702, "size": 178467, "latestRelease": "2.9.0", "latestReleaseDate": "2025-03-29T21:30:01.555Z" }, - "score": 68, + "score": 57, "matchingScoreModifiers": [ "Popular", "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.141, - "topicSearchString": "react-native component ios android material-design snackbar snack-bar material" + "popularity": 0.188, + "topicSearchString": "component ios android material-design snackbar snack-bar material" }, { "githubUrl": "https://github.com/zeljkoX/react-native-pseudo-localization", @@ -24725,7 +24468,6 @@ "psuedo", "translation", "i10n", - "react-native", "pseudo" ], "license": { @@ -24738,13 +24480,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-pseudo-localization", "npm": { - "downloads": 24, - "weekDownloads": 1, + "downloads": 26, + "weekDownloads": 7, "size": 9389, "latestRelease": "0.0.2", "latestReleaseDate": "2018-08-21T09:57:50.826Z" @@ -24754,8 +24497,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.71, - "topicSearchString": "chaos-engineering i18n internationalization l10n language localization pseudo-localization psuedo-localize psuedo translation i10n react-native pseudo" + "popularity": -1.517, + "topicSearchString": "chaos-engineering i18n internationalization l10n language localization pseudo-localization psuedo-localize psuedo translation i10n pseudo" }, { "githubUrl": "https://github.com/ardaogulcan/react-native-keyboard-accessory", @@ -24794,13 +24537,11 @@ "isPrivate": false, "description": "A React Native Keyboard Accessory (View, Navigation) Component. Sticky views on keyboard.", "topics": [ - "react", - "react-native", "keyboard-accessory", "keyboard", "ios", "android", - "react-component", + "component", "input-accessory", "sticky-views" ], @@ -24814,13 +24555,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-keyboard-accessory", "npm": { - "downloads": 61925, - "weekDownloads": 11955, + "downloads": 48538, + "weekDownloads": 11199, "size": 30087, "latestRelease": "0.1.16", "latestReleaseDate": "2021-11-29T19:12:30.426Z" @@ -24831,8 +24573,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, - "topicSearchString": "react react-native keyboard-accessory keyboard ios android react-component input-accessory sticky-views" + "popularity": -0.554, + "topicSearchString": "keyboard-accessory keyboard ios android component input-accessory sticky-views" }, { "githubUrl": "https://github.com/henninghall/react-native-date-picker", @@ -24860,10 +24602,10 @@ "updatedAt": "2025-06-05T18:26:24Z", "createdAt": "2018-04-08T18:31:00Z", "pushedAt": "2025-06-05T18:26:24Z", - "forks": 352, - "issues": 46, + "forks": 355, + "issues": 48, "subscribers": 8, - "stars": 2436, + "stars": 2452, "dependencies": 0 }, "name": "react-native-date-picker", @@ -24873,7 +24615,6 @@ "topics": [ "datepicker", "date-picker", - "react-native", "datetimepicker", "date-time-picker", "datepicker-component", @@ -24891,24 +24632,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-date-picker", "npm": { - "downloads": 837753, - "weekDownloads": 144559, + "downloads": 844447, + "weekDownloads": 197397, "size": 3974706, "latestRelease": "5.0.13", "latestReleaseDate": "2025-06-05T18:32:24.047Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.147, - "topicSearchString": "datepicker date-picker react-native datetimepicker date-time-picker datepicker-component time-picker timepicker datetime" + "popularity": 0.199, + "topicSearchString": "datepicker date-picker datetimepicker date-time-picker datepicker-component time-picker timepicker datetime" }, { "githubUrl": "https://github.com/FriendsOfReact/react-native-gradients", @@ -24937,7 +24679,7 @@ "forks": 11, "issues": 3, "subscribers": 1, - "stars": 61, + "stars": 62, "dependencies": 1 }, "name": "react-native-gradients", @@ -24945,14 +24687,12 @@ "isPrivate": false, "description": "A simple gradient library for React Native.", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "linear-gradient", "radial-gradient", "gradient", - "react", "javascript", "es6" ], @@ -24966,12 +24706,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gradients", "npm": { - "downloads": 9916, - "weekDownloads": 1598, + "downloads": 13659, + "weekDownloads": 2745, "size": 32964, "latestRelease": "2.1.1", "latestReleaseDate": "2023-11-03T13:59:48.339Z" @@ -24981,8 +24722,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.137, - "topicSearchString": "react-component react-native ios android linear-gradient radial-gradient gradient react javascript es6" + "popularity": 0.171, + "topicSearchString": "component ios android linear-gradient radial-gradient gradient javascript es6" }, { "githubUrl": "https://github.com/Nozbe/WatermelonDB", @@ -25007,10 +24748,10 @@ "updatedAt": "2025-08-10T16:48:57Z", "createdAt": "2018-08-28T15:32:05Z", "pushedAt": "2025-08-10T16:48:57Z", - "forks": 603, - "issues": 259, - "subscribers": 107, - "stars": 11222, + "forks": 606, + "issues": 262, + "subscribers": 106, + "stars": 11290, "dependencies": 7 }, "name": "@nozbe/watermelondb", @@ -25020,8 +24761,6 @@ "topics": [ "database", "sqlite", - "react", - "react-native", "indexeddb", "lokijs", "watermelon", @@ -25045,11 +24784,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 69586, - "weekDownloads": 11837, + "downloads": 70204, + "weekDownloads": 14617, "size": 1301865, "latestRelease": "0.28.0", "latestReleaseDate": "2025-04-07T12:41:08.478Z" @@ -25062,8 +24802,8 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "database sqlite react react-native indexeddb lokijs watermelon watermelondb offline offline-first persistence reactive rxjs better-sqlite3 db hacktoberfest" + "popularity": 0.177, + "topicSearchString": "database sqlite indexeddb lokijs watermelon watermelondb offline offline-first persistence reactive rxjs better-sqlite3 db hacktoberfest" }, { "githubUrl": "https://github.com/tessus/react-native-version-info", @@ -25081,12 +24821,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2024-03-10T06:33:32Z", + "updatedAt": "2025-10-15T21:10:18Z", "createdAt": "2018-10-22T21:50:18Z", - "pushedAt": "2024-03-10T06:33:32Z", + "pushedAt": "2025-10-15T21:10:18Z", "forks": 8, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 46, "dependencies": 0 }, @@ -25095,14 +24835,10 @@ "isPrivate": false, "description": "Version Information for React Native Android, iOS, and Windows ", "topics": [ - "react", - "react-native", "android", "ios", - "react-component", - "react-android", - "react-ios", - "react-windows" + "component", + "windows" ], "license": { "key": "mit", @@ -25114,23 +24850,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-version-info", "npm": { - "downloads": 36118, - "weekDownloads": 6953, + "downloads": 34797, + "weekDownloads": 8055, "size": 43322, "latestRelease": "1.1.1", "latestReleaseDate": "2021-09-28T22:52:58.444Z" }, - "score": 32, + "score": 49, "matchingScoreModifiers": [ - "Not updated recently", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.164, - "topicSearchString": "react react-native android ios react-component react-android react-ios react-windows" + "popularity": 0.197, + "topicSearchString": "android ios component windows" }, { "githubUrl": "https://github.com/doublesymmetry/react-native-track-player", @@ -25159,13 +24896,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-03T10:23:44Z", + "updatedAt": "2025-09-23T14:13:54Z", "createdAt": "2017-03-16T20:18:39Z", - "pushedAt": "2025-09-03T10:23:44Z", - "forks": 968, - "issues": 6, - "subscribers": 50, - "stars": 3568, + "pushedAt": "2025-09-23T14:13:54Z", + "forks": 973, + "issues": 16, + "subscribers": 51, + "stars": 3600, "dependencies": 0 }, "name": "react-native-track-player", @@ -25174,8 +24911,6 @@ "registry": "https://registry.npmjs.org/", "description": "A fully fledged audio module created for music apps. Provides audio playback, external media controls, background mode and more!", "topics": [ - "react", - "react-native", "track-player", "audio-player", "audio", @@ -25202,26 +24937,27 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-track-player", "npm": { - "downloads": 138270, - "weekDownloads": 22804, + "downloads": 133043, + "weekDownloads": 30173, "size": 386892, "latestRelease": "4.1.2", "latestReleaseDate": "2025-08-12T12:59:09.329Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.14, - "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" + "popularity": 0.193, + "topicSearchString": "track-player audio-player audio player music controls chromecast android ios windows hooks music-player music-library media-control audio-library" }, { "githubUrl": "https://github.com/lawnstarter/react-native-hotspot", @@ -25248,7 +24984,7 @@ "pushedAt": "2024-09-27T20:45:33Z", "forks": 3, "issues": 0, - "subscribers": 4, + "subscribers": 3, "stars": 33, "dependencies": 0 }, @@ -25260,8 +24996,6 @@ "hotspot", "tutorial", "onboarding", - "react", - "react-native", "expo", "frontend" ], @@ -25275,12 +25009,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-hotspot", "npm": { - "downloads": 54, - "weekDownloads": 5, + "downloads": 53, + "weekDownloads": 11, "size": 12154, "latestRelease": "0.0.6", "latestReleaseDate": "2019-01-06T00:29:02.304Z" @@ -25290,8 +25025,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.667, - "topicSearchString": "hotspot tutorial onboarding react react-native expo frontend" + "popularity": -0.567, + "topicSearchString": "hotspot tutorial onboarding expo frontend" }, { "githubUrl": "https://github.com/hicay/react-native-text-avatar", @@ -25323,7 +25058,6 @@ "isPrivate": false, "description": "React Native component for a text avatar", "topics": [ - "react-native", "component", "avatar", "text", @@ -25332,6 +25066,7 @@ "letter-avatar" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -25340,13 +25075,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-text-avatar", "npm": { - "downloads": 369, - "weekDownloads": 28, + "downloads": 233, + "weekDownloads": 69, "size": 81573, "latestRelease": "1.0.7", "latestReleaseDate": "2019-06-06T15:33:24.369Z" @@ -25356,8 +25092,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.435, - "topicSearchString": "react-native component avatar text letter text-avatar letter-avatar" + "popularity": -1.244, + "topicSearchString": "component avatar text letter text-avatar letter-avatar" }, { "githubUrl": "https://github.com/Buglife/react-native-buglife", @@ -25379,7 +25115,7 @@ "pushedAt": "2019-03-18T10:01:38Z", "forks": 11, "issues": 6, - "subscribers": 2, + "subscribers": 1, "stars": 12, "dependencies": 0 }, @@ -25388,10 +25124,7 @@ "isPrivate": false, "description": "A React Native wrapper for Buglife", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -25409,13 +25142,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-buglife", "npm": { - "downloads": 91, - "weekDownloads": 12, + "downloads": 610, + "weekDownloads": 14, "latestRelease": "0.1.13", "latestReleaseDate": "2018-01-30T02:04:41.106Z" }, @@ -25424,8 +25158,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.636, - "topicSearchString": "react-native react-component component react mobile ios android buglife bug-reporting bug-reporter" + "popularity": -1.73, + "topicSearchString": "component mobile ios android buglife bug-reporting bug-reporter" }, { "githubUrl": "https://github.com/hungdev/react-native-customize-selected-date", @@ -25463,7 +25197,6 @@ "calendar", "event", "customize-event", - "react-native", "customize-date" ], "license": { @@ -25476,13 +25209,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-customize-selected-date", "npm": { - "downloads": 65, - "weekDownloads": 17, + "downloads": 55, + "weekDownloads": 16, "size": 2649648, "latestRelease": "1.0.1", "latestReleaseDate": "2018-12-30T10:00:36.854Z" @@ -25492,8 +25226,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.523, - "topicSearchString": "customize selected date calendar event customize-event react-native customize-date" + "popularity": -1.483, + "topicSearchString": "customize selected date calendar event customize-event customize-date" }, { "githubUrl": "https://github.com/xcarpentier/react-native-suggester", @@ -25515,7 +25249,7 @@ "pushedAt": "2023-12-15T17:47:39Z", "forks": 4, "issues": 2, - "subscribers": 4, + "subscribers": 3, "stars": 59, "dependencies": 3 }, @@ -25524,7 +25258,6 @@ "isPrivate": false, "description": "🔎 React-Native package to decorate TextInput and get suggestions with good UX", "topics": [ - "react-native", "textinput", "autocompletion" ], @@ -25538,11 +25271,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-suggester", "npm": { - "downloads": 42, + "downloads": 19, "weekDownloads": 0, "size": 46034, "latestRelease": "0.1.4", @@ -25554,7 +25288,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native textinput autocompletion" + "topicSearchString": "textinput autocompletion" }, { "githubUrl": "https://github.com/AndreYonadam/react-native-scrolling-images", @@ -25602,13 +25336,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-scrolling-images", "npm": { - "downloads": 25, - "weekDownloads": 7, + "downloads": 124, + "weekDownloads": 5, "size": 4412552, "latestRelease": "1.0.6", "latestReleaseDate": "2022-06-28T23:16:07.401Z" @@ -25618,7 +25353,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.47, + "popularity": -1.716, "topicSearchString": "animated scrolling image background parallax" }, { @@ -25639,7 +25374,7 @@ "updatedAt": "2024-06-29T13:46:27Z", "createdAt": "2017-06-22T07:27:48Z", "pushedAt": "2024-06-29T13:46:27Z", - "forks": 99, + "forks": 100, "issues": 21, "subscribers": 7, "stars": 190, @@ -25653,7 +25388,6 @@ "instagram", "login", "auth", - "react-native", "ios", "android", "instagram-login", @@ -25672,12 +25406,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-instagram-login", "npm": { - "downloads": 1046, - "weekDownloads": 165, + "downloads": 1819, + "weekDownloads": 262, "size": 454488, "latestRelease": "2.0.6", "latestReleaseDate": "2023-06-26T11:15:21.365Z" @@ -25688,8 +25423,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.134, - "topicSearchString": "instagram login auth react-native ios android instagram-login instagram-api instagram-oauth authentication oauth" + "popularity": 0.122, + "topicSearchString": "instagram login auth ios android instagram-login instagram-api instagram-oauth authentication oauth" }, { "githubUrl": "https://github.com/lfkwtz/react-native-ruler", @@ -25724,8 +25459,6 @@ "devtools", "measure", "ruler", - "react", - "react-native", "expo" ], "license": { @@ -25738,13 +25471,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ruler", "npm": { - "downloads": 75, - "weekDownloads": 4, + "downloads": 96, + "weekDownloads": 2, "size": 722087, "latestRelease": "0.1.0", "latestReleaseDate": "2019-05-24T17:09:43.770Z" @@ -25754,8 +25488,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.453, - "topicSearchString": "devtools measure ruler react react-native expo" + "popularity": -1.482, + "topicSearchString": "devtools measure ruler expo" }, { "githubUrl": "https://github.com/xcarpentier/react-native-safe-image", @@ -25778,7 +25512,7 @@ "pushedAt": "2019-11-20T17:02:25Z", "forks": 1, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 28, "dependencies": 0 }, @@ -25787,7 +25521,6 @@ "isPrivate": false, "description": "Really light React-Native package to handle fallback when image is on error", "topics": [ - "react-native", "image", "fallback", "typescript" @@ -25802,13 +25535,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-safe-image", "npm": { - "downloads": 57, - "weekDownloads": 4, + "downloads": 49, + "weekDownloads": 2, "size": 6685, "latestRelease": "1.2.0", "latestReleaseDate": "2019-11-07T11:11:53.761Z" @@ -25818,8 +25552,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.438, - "topicSearchString": "react-native image fallback typescript" + "popularity": -1.464, + "topicSearchString": "image fallback typescript" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-apple-authentication", @@ -25830,6 +25564,7 @@ "tvos": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -25844,10 +25579,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-apple-authentication", @@ -25855,7 +25590,6 @@ "isPrivate": false, "description": "A package that provides 'Sign in with Apple' capability for Expo and React Native apps.", "topics": [ - "react-native", "expo", "expo-apple-authentiocation", "apple-authentication", @@ -25871,27 +25605,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-apple-authentication", "npm": { - "downloads": 835980, - "weekDownloads": 125243, + "downloads": 927757, + "weekDownloads": 211648, "size": 116964, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-11T20:26:55.303Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.127, - "topicSearchString": "react-native expo expo-apple-authentiocation apple-authentication sign-in-with-apple" + "popularity": 0.194, + "topicSearchString": "expo expo-apple-authentiocation apple-authentication sign-in-with-apple" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-application", @@ -25912,13 +25646,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-03T11:06:24Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-03T11:06:24Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-application", @@ -25926,7 +25660,6 @@ "isPrivate": false, "description": "A universal module that gets native application information such as its ID, app name, and build version at runtime", "topics": [ - "react-native", "expo", "expo-application" ], @@ -25940,27 +25673,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-application", "npm": { - "downloads": 4014148, - "weekDownloads": 707513, + "downloads": 4304267, + "weekDownloads": 941449, "size": 99150, "latestRelease": "7.0.7", "latestReleaseDate": "2025-09-11T20:26:58.712Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.15, - "topicSearchString": "react-native expo expo-application" + "popularity": 0.186, + "topicSearchString": "expo expo-application" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-asset", @@ -25971,6 +25705,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -25982,13 +25717,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T22:17:44Z", + "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-10T22:17:44Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-01T01:01:24Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 2 }, "name": "expo-asset", @@ -25996,7 +25731,6 @@ "isPrivate": false, "description": "An Expo universal module to download assets and pass them into other APIs", "topics": [ - "react-native", "expo", "asset" ], @@ -26010,27 +25744,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-asset", "npm": { - "downloads": 6977699, - "weekDownloads": 1198846, - "size": 234483, - "latestRelease": "12.0.8", - "latestReleaseDate": "2025-09-10T22:18:27.915Z" + "downloads": 7380931, + "weekDownloads": 1636203, + "size": 234569, + "latestRelease": "12.0.9", + "latestReleaseDate": "2025-09-18T21:33:34.428Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.146, - "topicSearchString": "react-native expo asset" + "popularity": 0.188, + "topicSearchString": "expo asset" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-av", @@ -26047,6 +25782,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26058,13 +25794,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-27T16:55:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-av", @@ -26073,7 +25809,6 @@ "description": "Expo universal module for Audio and Video playback", "topics": [ "expo", - "react-native", "audio", "video" ], @@ -26087,27 +25822,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-av", "npm": { - "downloads": 1643559, - "weekDownloads": 319141, + "downloads": 1613611, + "weekDownloads": 349583, "size": 1298055, "latestRelease": "16.0.7", "latestReleaseDate": "2025-09-11T20:26:40.031Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.165, - "topicSearchString": "expo react-native audio video" + "popularity": 0.184, + "topicSearchString": "expo audio video" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-background-fetch", @@ -26117,6 +25853,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26131,10 +25868,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-background-fetch", @@ -26143,7 +25880,6 @@ "description": "Expo universal module for BackgroundFetch API", "topics": [ "expo", - "react-native", "fetch", "background", "background-fetch" @@ -26158,27 +25894,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-background-fetch", "npm": { - "downloads": 158923, - "weekDownloads": 30438, + "downloads": 179343, + "weekDownloads": 36209, "size": 89627, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:26:33.758Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.163, - "topicSearchString": "expo react-native fetch background background-fetch" + "popularity": 0.172, + "topicSearchString": "expo fetch background background-fetch" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-battery", @@ -26202,13 +25938,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-27T16:55:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-battery", @@ -26216,7 +25952,6 @@ "isPrivate": false, "description": "Provides battery information for the physical device, as well as corresponding event listeners.", "topics": [ - "react-native", "expo", "expo-battery" ], @@ -26230,27 +25965,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-battery", "npm": { - "downloads": 138871, - "weekDownloads": 21371, + "downloads": 89526, + "weekDownloads": 20380, "size": 123826, "latestRelease": "10.0.7", "latestReleaseDate": "2025-09-11T20:26:16.986Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.131, - "topicSearchString": "react-native expo expo-battery" + "popularity": 0.194, + "topicSearchString": "expo expo-battery" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-blur", @@ -26275,13 +26011,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-09T13:21:16Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-09T13:21:16Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-blur", @@ -26289,7 +26025,6 @@ "isPrivate": false, "description": "A component that renders a native blur view on iOS and falls back to a semi-transparent view on Android. A common usage of this is for navigation bars, tab bars, and modals.", "topics": [ - "react-native", "expo", "expo-blur" ], @@ -26303,27 +26038,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-blur", "npm": { - "downloads": 2521830, - "weekDownloads": 430267, + "downloads": 2366259, + "weekDownloads": 521302, "size": 96655, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:26:27.502Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.145, - "topicSearchString": "react-native expo expo-blur" + "popularity": 0.187, + "topicSearchString": "expo expo-blur" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-brightness", @@ -26335,6 +26071,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26346,13 +26083,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-05T16:45:15Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-05T16:45:15Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-brightness", @@ -26360,7 +26097,6 @@ "isPrivate": false, "description": "Provides an API to get and set screen brightness.", "topics": [ - "react-native", "expo", "expo-brightness", "brightness" @@ -26375,27 +26111,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-brightness", "npm": { - "downloads": 88961, - "weekDownloads": 15189, + "downloads": 88070, + "weekDownloads": 19483, "size": 105332, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:26:13.824Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.145, - "topicSearchString": "react-native expo expo-brightness brightness" + "popularity": 0.188, + "topicSearchString": "expo expo-brightness brightness" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-calendar", @@ -26406,6 +26143,7 @@ "android": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26417,13 +26155,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-27T16:55:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-calendar", @@ -26431,7 +26169,6 @@ "isPrivate": false, "description": "Provides an API for interacting with the device's system calendars, events, reminders, and associated records.", "topics": [ - "react-native", "expo", "calendar", "reminders" @@ -26446,27 +26183,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-calendar", "npm": { - "downloads": 285249, - "weekDownloads": 49958, + "downloads": 288296, + "weekDownloads": 64334, "size": 496894, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:26:06.728Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.149, - "topicSearchString": "react-native expo calendar reminders" + "popularity": 0.19, + "topicSearchString": "expo calendar reminders" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-camera", @@ -26480,6 +26218,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26491,13 +26230,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T18:37:51Z", + "updatedAt": "2025-10-17T13:35:40Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-10T18:37:51Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-17T13:35:40Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-camera", @@ -26505,7 +26244,6 @@ "isPrivate": false, "description": "A React component that renders a preview for the device's either front or back camera. Camera's parameters like zoom, auto focus, white balance and flash mode are adjustable. With expo-camera, one can also take photos and record videos that are saved to the app's cache. Morever, the component is also capable of detecting faces and bar codes appearing on the preview.", "topics": [ - "react-native", "expo", "camera" ], @@ -26519,27 +26257,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-camera", "npm": { - "downloads": 1670878, - "weekDownloads": 277779, - "size": 856313, - "latestRelease": "17.0.7", - "latestReleaseDate": "2025-09-10T18:41:50.066Z" + "downloads": 1836023, + "weekDownloads": 398790, + "size": 856717, + "latestRelease": "17.0.8", + "latestReleaseDate": "2025-09-16T01:55:35.365Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.141, - "topicSearchString": "react-native expo camera" + "popularity": 0.185, + "topicSearchString": "expo camera" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-cellular", @@ -26548,6 +26287,7 @@ "web": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26562,10 +26302,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-cellular", @@ -26573,7 +26313,6 @@ "isPrivate": false, "description": "Provides information about the user’s cellular service provider", "topics": [ - "react-native", "expo", "expo-cellular" ], @@ -26587,27 +26326,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-cellular", "npm": { - "downloads": 45129, - "weekDownloads": 7308, + "downloads": 39513, + "weekDownloads": 8275, "size": 120223, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-11T20:26:02.035Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.138, - "topicSearchString": "react-native expo expo-cellular" + "popularity": 0.178, + "topicSearchString": "expo expo-cellular" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-constants", @@ -26629,13 +26368,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T15:41:57Z", + "updatedAt": "2025-09-24T16:46:32Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-12T15:41:57Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-24T16:46:32Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 2 }, "name": "expo-constants", @@ -26643,7 +26382,6 @@ "isPrivate": false, "description": "Provides system information that remains constant throughout the lifetime of your app.", "topics": [ - "react-native", "expo", "constants" ], @@ -26657,27 +26395,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-constants", "npm": { - "downloads": 7912256, - "weekDownloads": 1354586, - "size": 128338, - "latestRelease": "18.0.8", - "latestReleaseDate": "2025-09-10T22:18:32.004Z" + "downloads": 8351885, + "weekDownloads": 1880483, + "size": 128424, + "latestRelease": "18.0.9", + "latestReleaseDate": "2025-09-16T20:36:29.256Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.146, - "topicSearchString": "react-native expo constants" + "popularity": 0.191, + "topicSearchString": "expo constants" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-contacts", @@ -26685,6 +26424,7 @@ "android": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26696,13 +26436,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T18:37:51Z", + "updatedAt": "2025-10-17T09:55:16Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-10T18:37:51Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-17T09:55:16Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-contacts", @@ -26710,7 +26450,6 @@ "isPrivate": false, "description": "Provides access to the phone's system contacts.", "topics": [ - "react-native", "expo", "contacts" ], @@ -26724,27 +26463,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-contacts", "npm": { - "downloads": 281313, - "weekDownloads": 45648, - "size": 382624, - "latestRelease": "15.0.8", - "latestReleaseDate": "2025-09-10T18:41:45.676Z" + "downloads": 338773, + "weekDownloads": 75619, + "size": 386011, + "latestRelease": "15.0.10", + "latestReleaseDate": "2025-10-20T23:27:36.920Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.138, - "topicSearchString": "react-native expo contacts" + "popularity": 0.19, + "topicSearchString": "expo contacts" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-crypto", @@ -26769,13 +26509,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-27T16:55:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-crypto", @@ -26783,14 +26523,12 @@ "isPrivate": false, "description": "Provides cryptography primitives for Android, iOS and web.", "topics": [ - "react-native", "web", "expo", "crypto", "ios", "android", - "web", - "native" + "web" ], "license": { "name": "MIT License", @@ -26802,27 +26540,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-crypto", "npm": { - "downloads": 2705960, - "weekDownloads": 486023, + "downloads": 2717592, + "weekDownloads": 602393, "size": 113953, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:25:44.611Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.153, - "topicSearchString": "react-native web expo crypto ios android web native" + "popularity": 0.188, + "topicSearchString": "web expo crypto ios android web" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-device", @@ -26847,13 +26586,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-01T01:01:24Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-device", @@ -26861,7 +26600,6 @@ "isPrivate": false, "description": "A universal module that gets physical information about the device running the application", "topics": [ - "react-native", "expo", "expo-device" ], @@ -26875,27 +26613,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-device", "npm": { - "downloads": 2362455, - "weekDownloads": 394145, - "size": 167313, - "latestRelease": "8.0.7", - "latestReleaseDate": "2025-09-11T20:25:41.699Z" + "downloads": 2538970, + "weekDownloads": 566865, + "size": 168182, + "latestRelease": "8.0.9", + "latestReleaseDate": "2025-10-01T00:23:01.101Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.142, - "topicSearchString": "react-native expo expo-device" + "popularity": 0.19, + "topicSearchString": "expo expo-device" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-document-picker", @@ -26905,6 +26644,7 @@ "expoGo": true, "newArchitecture": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26916,13 +26656,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-17T16:20:32Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-17T16:20:32Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-document-picker", @@ -26930,7 +26670,6 @@ "isPrivate": false, "description": "Provides access to the system's UI for selecting documents from the available providers on the user's device.", "topics": [ - "react-native", "expo", "expo-document-picker", "document-picker" @@ -26945,27 +26684,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-document-picker", "npm": { - "downloads": 1278209, - "weekDownloads": 255316, + "downloads": 1360840, + "weekDownloads": 299324, "size": 105965, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:25:27.742Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.17, - "topicSearchString": "react-native expo expo-document-picker document-picker" + "popularity": 0.187, + "topicSearchString": "expo expo-document-picker document-picker" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-file-system", @@ -26978,6 +26717,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -26989,13 +26729,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-13T00:45:26Z", + "updatedAt": "2025-10-21T09:09:10Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-13T00:45:26Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-21T09:09:10Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-file-system", @@ -27003,7 +26743,6 @@ "isPrivate": false, "description": "Provides access to the local file system on the device.", "topics": [ - "react-native", "expo", "file-system", "file" @@ -27018,27 +26757,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-file-system", "npm": { - "downloads": 7393343, - "weekDownloads": 1260476, - "size": 816916, - "latestRelease": "19.0.14", - "latestReleaseDate": "2025-09-13T00:45:42.976Z" + "downloads": 8200793, + "weekDownloads": 1782243, + "size": 826832, + "latestRelease": "19.0.17", + "latestReleaseDate": "2025-10-09T19:33:35.051Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.145, - "topicSearchString": "react-native expo file-system file" + "popularity": 0.185, + "topicSearchString": "expo file-system file" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-font", @@ -27052,6 +26792,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -27063,13 +26804,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-03T11:02:07Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-03T11:02:07Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-font", @@ -27077,7 +26818,6 @@ "isPrivate": false, "description": "Load fonts at runtime and use them in React Native components.", "topics": [ - "react-native", "expo", "font" ], @@ -27091,27 +26831,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-font", "npm": { - "downloads": 7121697, - "weekDownloads": 1220409, - "size": 220399, - "latestRelease": "14.0.8", - "latestReleaseDate": "2025-09-11T20:25:19.569Z" + "downloads": 7567945, + "weekDownloads": 1601214, + "size": 221886, + "latestRelease": "14.0.9", + "latestReleaseDate": "2025-10-09T19:33:30.236Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.146, - "topicSearchString": "react-native expo font" + "popularity": 0.18, + "topicSearchString": "expo font" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-gl", @@ -27134,13 +26875,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-24T22:46:28Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-24T22:46:28Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-gl", @@ -27148,7 +26889,6 @@ "isPrivate": false, "description": "Provides GLView that acts as OpenGL ES render target and gives GL context object implementing WebGL 2.0 specification.", "topics": [ - "react-native", "expo", "gl", "glview", @@ -27164,27 +26904,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-gl", "npm": { - "downloads": 116410, - "weekDownloads": 20599, + "downloads": 130019, + "weekDownloads": 25209, "size": 1677281, "latestRelease": "16.0.7", "latestReleaseDate": "2025-09-11T20:25:07.882Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.15, - "topicSearchString": "react-native expo gl glview webgl" + "popularity": 0.165, + "topicSearchString": "expo gl glview webgl" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-haptics", @@ -27207,13 +26948,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-18T10:09:58Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-18T10:09:58Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-haptics", @@ -27221,7 +26962,6 @@ "isPrivate": false, "description": "Provides access to the system's haptics engine on iOS, vibration effects on Android, and Web Vibration API on web.", "topics": [ - "react-native", "expo", "expo-haptics", "haptics" @@ -27236,27 +26976,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-haptics", "npm": { - "downloads": 2628998, - "weekDownloads": 443794, + "downloads": 3012904, + "weekDownloads": 663394, "size": 79943, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:24:59.272Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.143, - "topicSearchString": "react-native expo expo-haptics haptics" + "popularity": 0.187, + "topicSearchString": "expo expo-haptics haptics" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-image-manipulator", @@ -27280,13 +27020,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T18:37:51Z", + "updatedAt": "2025-09-17T15:06:11Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-10T18:37:51Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-17T15:06:11Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-image-manipulator", @@ -27294,7 +27034,6 @@ "isPrivate": false, "description": "Provides functions that let you manipulation images on the local file system, eg: resize, crop.", "topics": [ - "react-native", "expo", "expo-image-manipulator" ], @@ -27308,27 +27047,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-image-manipulator", "npm": { - "downloads": 1035178, - "weekDownloads": 165976, + "downloads": 1070344, + "weekDownloads": 227023, "size": 194010, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-10T18:41:16.637Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.136, - "topicSearchString": "react-native expo expo-image-manipulator" + "popularity": 0.18, + "topicSearchString": "expo expo-image-manipulator" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-image-picker", @@ -27341,6 +27080,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -27352,13 +27092,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-27T16:55:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-image-picker", @@ -27366,7 +27106,6 @@ "isPrivate": false, "description": "Provides access to the system's UI for selecting images and videos from the phone's library or taking a photo with the camera.", "topics": [ - "react-native", "expo", "image", "picker", @@ -27382,27 +27121,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-image-picker", "npm": { - "downloads": 2253268, - "weekDownloads": 426524, + "downloads": 2374875, + "weekDownloads": 504688, "size": 514405, "latestRelease": "17.0.8", "latestReleaseDate": "2025-09-11T20:24:50.405Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.161, - "topicSearchString": "react-native expo image picker image-picker" + "popularity": 0.181, + "topicSearchString": "expo image picker image-picker" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-intent-launcher", @@ -27421,13 +27161,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-17T15:06:39Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-17T15:06:39Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-intent-launcher", @@ -27435,7 +27175,6 @@ "isPrivate": false, "description": "Provides a way to launch Android intents, e.g. opening a specific activity.", "topics": [ - "react-native", "expo", "expo-intent-launcher", "intent", @@ -27451,27 +27190,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-intent-launcher", "npm": { - "downloads": 302893, - "weekDownloads": 51487, + "downloads": 315492, + "weekDownloads": 68368, "size": 153498, "latestRelease": "13.0.7", "latestReleaseDate": "2025-09-11T20:24:53.583Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.144, - "topicSearchString": "react-native expo expo-intent-launcher intent launcher" + "popularity": 0.184, + "topicSearchString": "expo expo-intent-launcher intent launcher" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-keep-awake", @@ -27498,10 +27237,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-keep-awake", @@ -27509,7 +27248,6 @@ "isPrivate": false, "description": "Provides a React component that prevents the screen sleeping when rendered. It also exposes static methods to control the behavior imperatively.", "topics": [ - "react-native", "expo", "awake", "keep-awake" @@ -27524,27 +27262,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-keep-awake", "npm": { - "downloads": 6767685, - "weekDownloads": 1158505, + "downloads": 7104808, + "weekDownloads": 1542163, "size": 59680, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:24:45.573Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.146, - "topicSearchString": "react-native expo awake keep-awake" + "popularity": 0.185, + "topicSearchString": "expo awake keep-awake" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-linear-gradient", @@ -27572,10 +27310,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-linear-gradient", @@ -27583,7 +27321,6 @@ "isPrivate": false, "description": "Provides a React component that renders a gradient view.", "topics": [ - "react-native", "expo", "gradient" ], @@ -27597,27 +27334,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-linear-gradient", "npm": { - "downloads": 3474171, - "weekDownloads": 612375, + "downloads": 3445092, + "weekDownloads": 805867, "size": 102960, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:24:39.486Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.15, - "topicSearchString": "react-native expo gradient" + "popularity": 0.199, + "topicSearchString": "expo gradient" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-local-authentication", @@ -27627,6 +27364,7 @@ "expoGo": true, "newArchitecture": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -27641,10 +27379,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-local-authentication", @@ -27652,7 +27390,6 @@ "isPrivate": false, "description": "Provides an API for FaceID and TouchID (iOS) or the Fingerprint API (Android) to authenticate the user with a face or fingerprint scan.", "topics": [ - "react-native", "expo", "authentication", "auth", @@ -27670,27 +27407,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-local-authentication", "npm": { - "downloads": 815220, - "weekDownloads": 137577, + "downloads": 906684, + "weekDownloads": 202591, "size": 128326, "latestRelease": "17.0.7", "latestReleaseDate": "2025-09-11T20:24:30.286Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.143, - "topicSearchString": "react-native expo authentication auth touchid faceid fingerprint" + "popularity": 0.19, + "topicSearchString": "expo authentication auth touchid faceid fingerprint" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-localization", @@ -27701,6 +27438,7 @@ "expoGo": true, "newArchitecture": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -27712,13 +27450,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-27T16:55:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-localization", @@ -27726,7 +27464,6 @@ "isPrivate": false, "description": "Provides an interface for native user localization information.", "topics": [ - "react-native", "expo", "localization", "locales", @@ -27742,27 +27479,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-localization", "npm": { - "downloads": 1880733, - "weekDownloads": 353989, + "downloads": 1866919, + "weekDownloads": 413037, "size": 146564, "latestRelease": "17.0.7", "latestReleaseDate": "2025-09-11T20:24:25.960Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.16, - "topicSearchString": "react-native expo localization locales l10n" + "popularity": 0.188, + "topicSearchString": "expo localization locales l10n" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-location", @@ -27775,6 +27513,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -27786,13 +27525,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-18T10:10:25Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-18T10:10:25Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-location", @@ -27800,7 +27539,6 @@ "isPrivate": false, "description": "Allows reading geolocation information from the device. Your app can poll for the current location or subscribe to location update events.", "topics": [ - "react-native", "expo", "location", "geolocation", @@ -27819,27 +27557,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-location", "npm": { - "downloads": 1603125, - "weekDownloads": 274651, + "downloads": 1697216, + "weekDownloads": 377161, "size": 572754, "latestRelease": "19.0.7", "latestReleaseDate": "2025-09-11T20:24:20.842Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.146, - "topicSearchString": "react-native expo location geolocation coords geocoding compass heading" + "popularity": 0.189, + "topicSearchString": "expo location geolocation coords geocoding compass heading" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-mail-composer", @@ -27848,6 +27586,7 @@ "web": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -27859,13 +27598,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-27T16:55:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-mail-composer", @@ -27873,7 +27612,6 @@ "isPrivate": false, "description": "Provides an API to compose mails using OS specific UI", "topics": [ - "react-native", "expo", "mail", "composer" @@ -27888,27 +27626,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-mail-composer", "npm": { - "downloads": 166282, - "weekDownloads": 27884, + "downloads": 197170, + "weekDownloads": 41809, "size": 93038, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:24:12.666Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.143, - "topicSearchString": "react-native expo mail composer" + "popularity": 0.18, + "topicSearchString": "expo mail composer" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-media-library", @@ -27921,6 +27660,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -27932,13 +27672,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T18:37:51Z", + "updatedAt": "2025-10-02T09:11:23Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-10T18:37:51Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-02T09:11:23Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-media-library", @@ -27946,7 +27686,6 @@ "isPrivate": false, "description": "Provides access to user's media library.", "topics": [ - "react-native", "expo", "media", "library", @@ -27964,15 +27703,17 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-media-library", "npm": { - "downloads": 848653, - "weekDownloads": 139671, - "size": 964872, - "latestRelease": "18.1.1", - "latestReleaseDate": "2025-09-10T18:41:12.862Z" + "downloads": 850689, + "weekDownloads": 185997, + "size": 1093857, + "latestRelease": "18.2.0", + "latestReleaseDate": "2025-09-16T20:35:47.752Z" }, "score": 89, "matchingScoreModifiers": [ @@ -27982,8 +27723,8 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.14, - "topicSearchString": "react-native expo media library cameraroll photos videos" + "popularity": 0.186, + "topicSearchString": "expo media library cameraroll photos videos" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-network", @@ -28007,10 +27748,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-network", @@ -28018,7 +27759,6 @@ "isPrivate": false, "description": "Provides useful information about the device's network such as its IP address, MAC address, and airplane mode status", "topics": [ - "react-native", "expo", "expo-network" ], @@ -28032,27 +27772,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-network", "npm": { - "downloads": 474889, - "weekDownloads": 74278, + "downloads": 498813, + "weekDownloads": 107782, "size": 89966, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-11T20:23:58.047Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.133, - "topicSearchString": "react-native expo expo-network" + "popularity": 0.184, + "topicSearchString": "expo expo-network" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-notifications", @@ -28063,6 +27803,7 @@ "android": true, "expoGo": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28074,13 +27815,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-01T01:01:24Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 7 }, "name": "expo-notifications", @@ -28088,7 +27829,6 @@ "isPrivate": false, "description": "Provides an API to fetch push notification tokens and to present, schedule, receive, and respond to notifications.", "topics": [ - "react-native", "expo", "notifications", "expo-notifications", @@ -28104,15 +27844,17 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-notifications", "npm": { - "downloads": 2393404, - "weekDownloads": 402120, - "size": 1546566, - "latestRelease": "0.32.11", - "latestReleaseDate": "2025-09-11T20:23:50.902Z" + "downloads": 2606749, + "weekDownloads": 565204, + "size": 1547675, + "latestRelease": "0.32.12", + "latestReleaseDate": "2025-10-01T00:22:29.226Z" }, "score": 86, "matchingScoreModifiers": [ @@ -28123,8 +27865,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.143, - "topicSearchString": "react-native expo notifications expo-notifications push-nofifications" + "popularity": 0.184, + "topicSearchString": "expo notifications expo-notifications push-nofifications" }, { "githubUrl": "https://github.com/expo/expo-pixi", @@ -28147,10 +27889,10 @@ "updatedAt": "2022-05-16T16:19:09Z", "createdAt": "2017-12-13T22:39:37Z", "pushedAt": "2022-05-16T16:19:09Z", - "forks": 109, + "forks": 110, "issues": 75, - "subscribers": 11, - "stars": 301, + "subscribers": 10, + "stars": 300, "dependencies": 8 }, "name": "expo-pixi", @@ -28158,8 +27900,6 @@ "isPrivate": false, "description": "Tools for using pixi.js in Expo", "topics": [ - "react", - "native", "expo", "exponent", "game", @@ -28184,12 +27924,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-pixi", "npm": { - "downloads": 440, - "weekDownloads": 45, + "downloads": 522, + "weekDownloads": 102, "size": 42398, "latestRelease": "2.1.1", "latestReleaseDate": "2022-05-16T16:19:00.766Z" @@ -28201,8 +27942,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.413, - "topicSearchString": "react native expo exponent game gl graphics opengl 2d pixi pixi.js sprite webgl cross-platform signature" + "popularity": -1.333, + "topicSearchString": "expo exponent game gl graphics opengl 2d pixi pixi.js sprite webgl cross-platform signature" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-print", @@ -28225,10 +27966,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-print", @@ -28236,7 +27977,6 @@ "isPrivate": false, "description": "Provides an API for Android and iOS (AirPrint) printing functionality.", "topics": [ - "react-native", "expo", "print", "android", @@ -28253,27 +27993,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-print", "npm": { - "downloads": 301222, - "weekDownloads": 49773, + "downloads": 336585, + "weekDownloads": 72675, "size": 148779, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:23:54.845Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.14, - "topicSearchString": "react-native expo print android ios airprint" + "popularity": 0.184, + "topicSearchString": "expo print android ios airprint" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-processing", @@ -28292,13 +28032,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-16T20:34:34Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-16T20:34:34Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-processing", @@ -28322,26 +28062,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-processing", "npm": { - "downloads": 931, - "weekDownloads": 131, + "downloads": 1262, + "weekDownloads": 102, "size": 5371, - "latestRelease": "3.0.4", - "latestReleaseDate": "2025-09-02T17:53:27.578Z" + "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.63, + "popularity": 0.069, "topicSearchString": "expo processing.js graphics opengl gl" }, { @@ -28355,6 +28095,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28366,13 +28107,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-09T17:48:51Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-09T17:48:51Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-secure-store", @@ -28380,7 +28121,6 @@ "isPrivate": false, "description": "Provides a way to encrypt and securely store key-value pairs locally on the device.", "topics": [ - "react-native", "expo", "expo-secure-store", "secure", @@ -28396,27 +28136,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-secure-store", "npm": { - "downloads": 2511792, - "weekDownloads": 460886, + "downloads": 2644647, + "weekDownloads": 561095, "size": 212953, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:23:31.069Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.156, - "topicSearchString": "react-native expo expo-secure-store secure store" + "popularity": 0.18, + "topicSearchString": "expo expo-secure-store secure store" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-sensors", @@ -28434,6 +28175,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28448,10 +28190,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-sensors", @@ -28459,7 +28201,6 @@ "isPrivate": false, "description": "Provides access to a hardware device's accelerometer, gyroscope, magnetometer, and pedometer.", "topics": [ - "react-native", "expo", "sensors", "accelerometer", @@ -28480,27 +28221,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-sensors", "npm": { - "downloads": 388734, - "weekDownloads": 47125, + "downloads": 448183, + "weekDownloads": 111152, "size": 341443, "latestRelease": "15.0.7", "latestReleaseDate": "2025-09-11T20:23:23.611Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.103, - "topicSearchString": "react-native expo sensors accelerometer devicemotion gyroscope lightsensor magnetometer pedometer barometer" + "popularity": 0.211, + "topicSearchString": "expo sensors accelerometer devicemotion gyroscope lightsensor magnetometer pedometer barometer" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-sms", @@ -28519,13 +28260,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-27T16:55:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-sms", @@ -28533,7 +28274,6 @@ "isPrivate": false, "description": "Provides access to the system's UI/app for sending SMS messages.", "topics": [ - "react-native", "expo", "sms" ], @@ -28547,27 +28287,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-sms", "npm": { - "downloads": 141190, - "weekDownloads": 23605, + "downloads": 167370, + "weekDownloads": 34571, "size": 70119, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:23:27.085Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.142, - "topicSearchString": "react-native expo sms" + "popularity": 0.176, + "topicSearchString": "expo sms" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-speech", @@ -28593,10 +28334,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-speech", @@ -28604,7 +28345,6 @@ "isPrivate": false, "description": "Provides text-to-speech functionality.", "topics": [ - "react-native", "expo", "expo-speech", "speech", @@ -28620,27 +28360,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-speech", "npm": { - "downloads": 179771, - "weekDownloads": 27896, + "downloads": 223907, + "weekDownloads": 44883, "size": 124755, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-11T20:23:34.287Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.132, - "topicSearchString": "react-native expo expo-speech speech voice" + "popularity": 0.17, + "topicSearchString": "expo expo-speech speech voice" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-sqlite", @@ -28654,6 +28394,7 @@ "tvos": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28668,10 +28409,10 @@ "updatedAt": "2025-09-10T18:37:51Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-10T18:37:51Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-sqlite", @@ -28679,7 +28420,6 @@ "isPrivate": false, "description": "Provides access to a database using SQLite (https://www.sqlite.org/). The database is persisted across restarts of your app.", "topics": [ - "react-native", "expo", "sqlite", "sql", @@ -28696,27 +28436,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-sqlite", "npm": { - "downloads": 454116, - "weekDownloads": 81455, + "downloads": 525154, + "weekDownloads": 105163, "size": 74309093, "latestRelease": "16.0.8", "latestReleaseDate": "2025-09-10T18:40:43.856Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.152, - "topicSearchString": "react-native expo sqlite sql storage async-storage" + "popularity": 0.17, + "topicSearchString": "expo sqlite sql storage async-storage" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-store-review", @@ -28739,13 +28479,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-01T01:01:24Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-store-review", @@ -28753,7 +28493,6 @@ "isPrivate": false, "description": "Provides access to native APIs for in-app reviews.", "topics": [ - "react-native", "expo", "expo-store-review", "reviews", @@ -28770,27 +28509,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-store-review", "npm": { - "downloads": 705344, - "weekDownloads": 115948, - "size": 53844, - "latestRelease": "9.0.7", - "latestReleaseDate": "2025-09-11T20:23:06.943Z" + "downloads": 710088, + "weekDownloads": 150703, + "size": 54769, + "latestRelease": "9.0.8", + "latestReleaseDate": "2025-10-01T00:22:23.965Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.14, - "topicSearchString": "react-native expo expo-store-review reviews app-store google-play-store" + "popularity": 0.18, + "topicSearchString": "expo expo-store-review reviews app-store google-play-store" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-task-manager", @@ -28801,6 +28541,7 @@ "android": true, "tvos": true, "expoGo": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -28812,13 +28553,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-20T23:23:27Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-20T23:23:27Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-task-manager", @@ -28827,7 +28568,6 @@ "description": "Expo module that provides support for tasks that can run in the background.", "topics": [ "expo", - "react-native", "task-manager", "task", "background" @@ -28842,15 +28582,17 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-task-manager", "npm": { - "downloads": 589668, - "weekDownloads": 105137, - "size": 260128, - "latestRelease": "14.0.7", - "latestReleaseDate": "2025-09-11T20:22:53.498Z" + "downloads": 615676, + "weekDownloads": 131887, + "size": 260974, + "latestRelease": "14.0.8", + "latestReleaseDate": "2025-10-20T23:27:04.137Z" }, "score": 86, "matchingScoreModifiers": [ @@ -28861,8 +28603,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, - "topicSearchString": "expo react-native task-manager task background" + "popularity": 0.182, + "topicSearchString": "expo task-manager task background" }, { "githubUrl": "https://github.com/expo/expo-three", @@ -28888,9 +28630,9 @@ "createdAt": "2017-05-31T23:34:03Z", "pushedAt": "2024-07-28T18:21:03Z", "forks": 89, - "issues": 82, - "subscribers": 22, - "stars": 824, + "issues": 84, + "subscribers": 20, + "stars": 829, "dependencies": 2 }, "name": "expo-three", @@ -28907,8 +28649,6 @@ "expo", "arkit", "expo-web", - "react", - "react-native", "web", "threejs", "ar-session", @@ -28925,12 +28665,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-three", "npm": { - "downloads": 71854, - "weekDownloads": 14163, + "downloads": 67033, + "weekDownloads": 13934, "size": 126395, "latestRelease": "8.0.0", "latestReleaseDate": "2024-07-28T18:03:20.616Z" @@ -28943,8 +28685,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.168, - "topicSearchString": "three.js three gaming graphics opengl gl expo arkit expo-web react react-native web threejs ar-session javascript javascript-game" + "popularity": 0.177, + "topicSearchString": "three.js three gaming graphics opengl gl expo arkit expo-web web threejs ar-session javascript javascript-game" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-video-thumbnails", @@ -28967,13 +28709,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T18:37:51Z", + "updatedAt": "2025-09-18T10:10:06Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-10T18:37:51Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-18T10:10:06Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-video-thumbnails", @@ -28981,7 +28723,6 @@ "isPrivate": false, "description": "Provides function that let you generate an image from video.", "topics": [ - "react-native", "expo", "expo-video-thumbnails", "thumbnail", @@ -28998,27 +28739,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-video-thumbnails", "npm": { - "downloads": 229697, - "weekDownloads": 36501, + "downloads": 200903, + "weekDownloads": 44025, "size": 65536, "latestRelease": "10.0.7", "latestReleaseDate": "2025-09-10T18:40:05.356Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.135, - "topicSearchString": "react-native expo expo-video-thumbnails thumbnail android ios" + "popularity": 0.186, + "topicSearchString": "expo expo-video-thumbnails thumbnail android ios" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-web-browser", @@ -29031,6 +28772,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -29042,13 +28784,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-01T01:01:24Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-web-browser", @@ -29056,7 +28798,6 @@ "isPrivate": false, "description": "Provides access to the system's web browser and supports handling redirects. On iOS, it uses SFSafariViewController or ASWebAuthenticationSession, depending on the method you call, and on Android it uses ChromeCustomTabs. As of iOS 11, SFSafariViewController no longer shares cookies with Safari, so if you are using WebBrowser for authentication you will want to use WebBrowser.openAuthSessionAsync, and if you just want to open a webpage (such as your app privacy policy), then use WebBrowser.openBrowserAsync.", "topics": [ - "react-native", "expo", "expo-web-browser", "web", @@ -29072,27 +28813,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-web-browser", "npm": { - "downloads": 4866926, - "weekDownloads": 698873, - "size": 267467, - "latestRelease": "15.0.7", - "latestReleaseDate": "2025-09-11T20:22:41.465Z" + "downloads": 6104664, + "weekDownloads": 1314311, + "size": 268368, + "latestRelease": "15.0.8", + "latestReleaseDate": "2025-10-01T00:22:10.507Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.122, - "topicSearchString": "react-native expo expo-web-browser web browser" + "popularity": 0.183, + "topicSearchString": "expo expo-web-browser web browser" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/jest-expo", @@ -29113,13 +28855,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-12T15:41:57Z", + "updatedAt": "2025-10-15T18:17:51Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-12T15:41:57Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-15T18:17:51Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 15 }, "name": "jest-expo", @@ -29137,15 +28879,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "jest-expo", "npm": { - "downloads": 2861926, - "weekDownloads": 524379, - "size": 121853, - "latestRelease": "54.0.11", - "latestReleaseDate": "2025-09-12T15:42:30.058Z" + "downloads": 2872659, + "weekDownloads": 638499, + "size": 121978, + "latestRelease": "54.0.12", + "latestReleaseDate": "2025-09-18T21:32:10.473Z" }, "score": 86, "matchingScoreModifiers": [ @@ -29156,7 +28899,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.189, "topicSearchString": "" }, { @@ -29180,7 +28923,7 @@ "pushedAt": "2023-12-15T17:44:54Z", "forks": 2, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 25, "dependencies": 2 }, @@ -29189,7 +28932,6 @@ "isPrivate": false, "description": "🔢 React-Native component to input confirmation code for both Android and IOS", "topics": [ - "react-native", "textinput", "sms-code", "verification", @@ -29205,11 +28947,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-verifcode", "npm": { - "downloads": 3, + "downloads": 7, "weekDownloads": 0, "size": 17449, "latestRelease": "0.0.1", @@ -29221,7 +28964,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native textinput sms-code verification verification-code" + "topicSearchString": "textinput sms-code verification verification-code" }, { "githubUrl": "https://github.com/matei-radu/react-native-in-app-browser", @@ -29256,7 +28999,6 @@ "topics": [ "in-app", "browser", - "react-native", "custom-tabs", "tabs", "chrome", @@ -29278,11 +29020,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 267, - "weekDownloads": 39, + "downloads": 1919, + "weekDownloads": 76, "size": 128960, "latestRelease": "3.2.2", "latestReleaseDate": "2020-09-30T11:58:24.477Z" @@ -29292,8 +29035,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.374, - "topicSearchString": "in-app browser react-native custom-tabs tabs chrome chrome-custom-tabs safari-view-controller sfsafariviewcontroller kotlin swift typescript flow" + "popularity": -0.716, + "topicSearchString": "in-app browser custom-tabs tabs chrome chrome-custom-tabs safari-view-controller sfsafariviewcontroller kotlin swift typescript flow" }, { "githubUrl": "https://github.com/greenfrvr/react-native-window-guard", @@ -29327,7 +29070,6 @@ "isPrivate": false, "description": "SafeAreaView alternative for React Native which provides relevant window insets for both iOS and Android.", "topics": [ - "react-native", "component", "safearea", "ios", @@ -29343,13 +29085,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-window-guard", "npm": { - "downloads": 372, - "weekDownloads": 74, + "downloads": 439, + "weekDownloads": 105, "size": 423025, "latestRelease": "1.0.6", "latestReleaseDate": "2020-01-24T10:00:33.996Z" @@ -29359,8 +29102,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.33, - "topicSearchString": "react-native component safearea ios android" + "popularity": -1.296, + "topicSearchString": "component safearea ios android" }, { "githubUrl": "https://github.com/tableau/react-native-dns-lookup", @@ -29383,7 +29126,7 @@ "pushedAt": "2022-10-06T18:27:00Z", "forks": 11, "issues": 5, - "subscribers": 8, + "subscribers": 7, "stars": 33, "dependencies": 0 }, @@ -29404,13 +29147,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-dns-lookup", "npm": { - "downloads": 5838, - "weekDownloads": 1269, + "downloads": 3957, + "weekDownloads": 854, "size": 18220, "latestRelease": "1.0.6", "latestReleaseDate": "2022-10-06T19:49:26.758Z" @@ -29420,7 +29164,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.565, + "popularity": -0.567, "topicSearchString": "dns" }, { @@ -29446,11 +29190,11 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2023-04-19T05:52:26Z", + "updatedAt": "2025-10-07T21:53:30Z", "createdAt": "2019-06-06T19:30:24Z", - "pushedAt": "2023-04-19T05:52:26Z", + "pushedAt": "2025-10-07T21:53:30Z", "forks": 32, - "issues": 18, + "issues": 17, "subscribers": 1, "stars": 413, "dependencies": 1 @@ -29462,8 +29206,6 @@ "description": "An extensible input number spinner component for react-native highly customizable. This component enhance a text input for entering numeric values, with increase and decrease buttons.", "topics": [ "component", - "react-component", - "react-native", "android", "ios", "windows", @@ -29488,26 +29230,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, - "unmaintained": true, "npmPkg": "react-native-input-spinner", "npm": { - "downloads": 8246, - "weekDownloads": 1663, + "downloads": 7452, + "weekDownloads": 1071, "size": 464934, "latestRelease": "1.8.1", "latestReleaseDate": "2023-04-25T15:29:36.778Z" }, - "score": 30, + "score": 46, "matchingScoreModifiers": [ "Known", "GPL license", - "Not updated recently", + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.579, - "topicSearchString": "component react-component react-native android ios windows reactnative spinner number input float real integer decimal int selector" + "popularity": 0.122, + "topicSearchString": "component android ios windows reactnative spinner number input float real integer decimal int selector" }, { "githubUrl": "https://github.com/pietile/pietile-native-kit/tree/master/packages/keyboard-aware-scrollview", @@ -29531,7 +29273,7 @@ "pushedAt": "2022-08-01T10:57:41Z", "forks": 9, "issues": 3, - "subscribers": 2, + "subscribers": 1, "stars": 190, "dependencies": 0 }, @@ -29540,7 +29282,6 @@ "isPrivate": false, "description": "ScrollView that moves child input just above the keyboard when later gets focus", "topics": [ - "react-native", "keyboard", "input", "keyboard-aware", @@ -29556,12 +29297,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 1241, - "weekDownloads": 206, + "downloads": 1763, + "weekDownloads": 339, "size": 30714, "latestRelease": "1.5.0", "latestReleaseDate": "2022-08-02T20:30:04.704Z" @@ -29571,8 +29313,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, - "topicSearchString": "react-native keyboard input keyboard-aware keyboardavoid" + "popularity": -0.586, + "topicSearchString": "keyboard input keyboard-aware keyboardavoid" }, { "githubUrl": "https://github.com/pietile/pietile-native-kit/tree/master/packages/expandable-view", @@ -29596,7 +29338,7 @@ "pushedAt": "2022-08-01T10:57:41Z", "forks": 9, "issues": 3, - "subscribers": 2, + "subscribers": 1, "stars": 190, "dependencies": 0 }, @@ -29605,7 +29347,6 @@ "isPrivate": false, "description": "View that changes its height with nice animation", "topics": [ - "react-native", "expandable", "accordion" ], @@ -29619,12 +29360,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 418, - "weekDownloads": 51, + "downloads": 299, + "weekDownloads": 32, "size": 16898, "latestRelease": "1.2.0", "latestReleaseDate": "2022-08-02T20:29:36.447Z" @@ -29634,8 +29376,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.396, - "topicSearchString": "react-native expandable accordion" + "popularity": -1.409, + "topicSearchString": "expandable accordion" }, { "githubUrl": "https://github.com/pietile/pietile-native-kit/tree/master/packages/fade-view", @@ -29659,7 +29401,7 @@ "pushedAt": "2022-08-01T10:57:41Z", "forks": 9, "issues": 3, - "subscribers": 2, + "subscribers": 1, "stars": 190, "dependencies": 1 }, @@ -29668,7 +29410,6 @@ "isPrivate": false, "description": "View that changes content gracefully", "topics": [ - "react-native", "fadein", "fadeout" ], @@ -29682,12 +29423,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 130, - "weekDownloads": 15, + "downloads": 189, + "weekDownloads": 30, "size": 9146, "latestRelease": "2.1.0", "latestReleaseDate": "2022-08-02T20:29:57.380Z" @@ -29697,8 +29439,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, - "topicSearchString": "react-native fadein fadeout" + "popularity": -1.364, + "topicSearchString": "fadein fadeout" }, { "githubUrl": "https://github.com/pietile/pietile-native-kit/tree/master/packages/page-slider", @@ -29722,7 +29464,7 @@ "pushedAt": "2022-08-01T10:57:41Z", "forks": 9, "issues": 3, - "subscribers": 2, + "subscribers": 1, "stars": 190, "dependencies": 0 }, @@ -29731,7 +29473,6 @@ "isPrivate": false, "description": "Simple page slider", "topics": [ - "react-native", "slider", "swiper", "gallery" @@ -29746,12 +29487,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 3839, - "weekDownloads": 622, + "downloads": 3607, + "weekDownloads": 842, "size": 15925, "latestRelease": "1.2.0", "latestReleaseDate": "2022-08-02T20:30:11.410Z" @@ -29761,8 +29503,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, - "topicSearchString": "react-native slider swiper gallery" + "popularity": -0.551, + "topicSearchString": "slider swiper gallery" }, { "githubUrl": "https://github.com/artyorsh/react-native-eva-icons", @@ -29789,7 +29531,7 @@ "pushedAt": "2023-04-28T13:26:50Z", "forks": 18, "issues": 5, - "subscribers": 11, + "subscribers": 10, "stars": 206, "dependencies": 0 }, @@ -29798,7 +29540,6 @@ "isPrivate": true, "description": "⭐Eva Icons for React Native", "topics": [ - "react-native", "eva-icons", "svg", "icons-source" @@ -29813,13 +29554,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-eva-icons", "npm": { - "downloads": 23630, - "weekDownloads": 4054, + "downloads": 20717, + "weekDownloads": 4577, "size": 1162020, "latestRelease": "1.3.1", "latestReleaseDate": "2020-04-08T11:12:49.822Z" @@ -29830,8 +29572,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, - "topicSearchString": "react-native eva-icons svg icons-source" + "popularity": -0.562, + "topicSearchString": "eva-icons svg icons-source" }, { "githubUrl": "https://github.com/fjmorant/react-native-nested-listview", @@ -29862,16 +29604,13 @@ "isPrivate": false, "description": "Display nested arrays of N levels with this React Native library.", "topics": [ - "react", - "native", "list", "nested", - "react-native", "listview", "nested-structures", "nested-objects", "reactjs", - "react-component", + "component", "tree", "treeview", "android" @@ -29886,13 +29625,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-nested-listview", "npm": { - "downloads": 1412, - "weekDownloads": 189, + "downloads": 2300, + "weekDownloads": 389, "size": 479208, "latestRelease": "0.14.2", "latestReleaseDate": "2022-10-14T16:56:40.784Z" @@ -29903,8 +29643,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.636, - "topicSearchString": "react native list nested react-native listview nested-structures nested-objects reactjs react-component tree treeview android" + "popularity": -0.606, + "topicSearchString": "list nested listview nested-structures nested-objects reactjs component tree treeview android" }, { "githubUrl": "https://github.com/kirillzyusko/react-native-wifi-p2p", @@ -29926,7 +29666,7 @@ "forks": 29, "issues": 24, "subscribers": 5, - "stars": 191, + "stars": 192, "dependencies": 0 }, "name": "react-native-wifi-p2p", @@ -29934,7 +29674,6 @@ "isPrivate": false, "description": "Library that provide access for working with wi-fi direct (p2p) module in android.", "topics": [ - "react-native", "android", "p2p", "peer-to-peer", @@ -29944,6 +29683,7 @@ "wifi" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -29952,13 +29692,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-wifi-p2p", "npm": { - "downloads": 1258, - "weekDownloads": 135, + "downloads": 955, + "weekDownloads": 244, "size": 73291, "latestRelease": "3.6.0", "latestReleaseDate": "2023-08-21T07:46:34.867Z" @@ -29969,8 +29710,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.659, - "topicSearchString": "react-native android p2p peer-to-peer wifi-direct wi-fi-direct wifi-p2p-manager wifi" + "popularity": -1.282, + "topicSearchString": "android p2p peer-to-peer wifi-direct wi-fi-direct wifi-p2p-manager wifi" }, { "githubUrl": "https://github.com/kirillzyusko/react-native-bundle-splitter", @@ -29991,9 +29732,9 @@ "createdAt": "2019-07-19T15:19:09Z", "pushedAt": "2025-03-12T13:22:41Z", "forks": 22, - "issues": 4, + "issues": 5, "subscribers": 5, - "stars": 468, + "stars": 469, "dependencies": 0 }, "name": "react-native-bundle-splitter", @@ -30001,9 +29742,6 @@ "isPrivate": false, "description": "HOC for lazy components loading", "topics": [ - "react", - "native", - "react-native", "web", "bundle", "bundles", @@ -30034,12 +29772,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-bundle-splitter", "npm": { - "downloads": 8599, - "weekDownloads": 1171, + "downloads": 8198, + "weekDownloads": 1806, "size": 20497, "latestRelease": "3.0.1", "latestReleaseDate": "2024-07-22T10:46:38.811Z" @@ -30050,8 +29789,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.116, - "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" + "popularity": 0.187, + "topicSearchString": "web bundle bundles separate separator split splitter splitting inline require ram js-bundle lazy loading loadable unbundle ios android ram-bundle" }, { "githubUrl": "https://github.com/mxmzb/react-native-gesture-detector", @@ -30087,7 +29826,6 @@ "registry": "https://registry.npmjs.org/", "description": "Create and detect custom, complex gestures in React Native. 🍭", "topics": [ - "react-native", "gesture", "custom-gestures", "detection", @@ -30103,13 +29841,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-gesture-detector", "npm": { - "downloads": 22, - "weekDownloads": 4, + "downloads": 68, + "weekDownloads": 1, "size": 48992, "latestRelease": "1.1.2", "latestReleaseDate": "2020-07-06T00:34:02.005Z" @@ -30119,8 +29858,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.34, - "topicSearchString": "react-native gesture custom-gestures detection component" + "popularity": -1.488, + "topicSearchString": "gesture custom-gestures detection component" }, { "githubUrl": "https://github.com/n4kz/react-native-indicators", @@ -30147,10 +29886,10 @@ "updatedAt": "2019-10-15T21:32:50Z", "createdAt": "2017-04-20T08:24:52Z", "pushedAt": "2019-10-15T21:32:50Z", - "forks": 123, + "forks": 122, "issues": 11, "subscribers": 12, - "stars": 947, + "stars": 952, "dependencies": 1 }, "name": "react-native-indicators", @@ -30158,9 +29897,7 @@ "isPrivate": false, "description": "Activity indicator collection for React Native", "topics": [ - "react", - "react-component", - "react-native", + "component", "ios", "android", "activity", @@ -30179,13 +29916,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-indicators", "npm": { - "downloads": 71964, - "weekDownloads": 11602, + "downloads": 68167, + "weekDownloads": 16479, "size": 36294, "latestRelease": "0.17.0", "latestReleaseDate": "2019-10-15T21:33:58.446Z" @@ -30197,14 +29935,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, - "topicSearchString": "react react-component react-native ios android activity indicator spinner pacman material" + "popularity": -0.545, + "topicSearchString": "component ios android activity indicator spinner pacman material" }, { "githubUrl": "https://github.com/react-native-documents/document-picker/tree/main/packages/document-picker", "npmPkg": "@react-native-documents/picker", "examples": [ - "https://github.com/react-native-documents/document-picker/tree/main/packages/example" + "https://github.com/react-native-documents/document-picker/tree/main/example" ], "images": [ "https://raw.githubusercontent.com/rnmods/react-native-document-picker/master/docs/android_screenshot.jpg", @@ -30225,13 +29963,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-07-10T22:26:36Z", + "updatedAt": "2025-09-20T20:09:15Z", "createdAt": "2016-06-28T14:58:12Z", - "pushedAt": "2025-07-10T22:26:36Z", - "forks": 423, - "issues": 11, + "pushedAt": "2025-09-20T20:09:15Z", + "forks": 429, + "issues": 10, "subscribers": 10, - "stars": 1459, + "stars": 1470, "dependencies": 0 }, "name": "@react-native-documents/picker", @@ -30239,7 +29977,6 @@ "isPrivate": false, "description": "A react native interface to access documents from dropbox, google drive, iCloud...", "topics": [ - "react-native", "document", "picker", "uidocumentmenuviewcontroller", @@ -30257,23 +29994,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 419833, - "weekDownloads": 69781, - "size": 206836, - "latestRelease": "10.1.5", - "latestReleaseDate": "2025-07-10T22:27:59.811Z" + "downloads": 460713, + "weekDownloads": 105238, + "size": 206250, + "latestRelease": "10.1.7", + "latestReleaseDate": "2025-09-20T20:10:54.000Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.141, - "topicSearchString": "react-native document picker uidocumentmenuviewcontroller dropbox google-drive icloud" + "popularity": 0.194, + "topicSearchString": "document picker uidocumentmenuviewcontroller dropbox google-drive icloud" }, { "githubUrl": "https://github.com/HosseinShabani/react-native-modern-datepicker", @@ -30303,9 +30041,9 @@ "createdAt": "2019-10-06T15:38:33Z", "pushedAt": "2020-07-23T15:32:39Z", "forks": 161, - "issues": 55, + "issues": 56, "subscribers": 10, - "stars": 685, + "stars": 690, "dependencies": 2 }, "name": "react-native-modern-datepicker", @@ -30313,8 +30051,6 @@ "isPrivate": false, "description": "A customizable calendar, time & month picker for React Native (including Persian Jalaali calendar & locale)", "topics": [ - "react", - "react-native", "datepicker", "calendar", "calendars", @@ -30336,13 +30072,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modern-datepicker", "npm": { - "downloads": 12749, - "weekDownloads": 2226, + "downloads": 13746, + "weekDownloads": 3327, "size": 42809, "latestRelease": "1.0.0-beta.91", "latestReleaseDate": "2020-07-23T15:33:00.852Z" @@ -30354,8 +30091,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, - "topicSearchString": "react react-native datepicker calendar calendars persian-calendar jalaali-calendar time-picker month-picker persian jalaali customizable-datepicker" + "popularity": -0.544, + "topicSearchString": "datepicker calendar calendars persian-calendar jalaali-calendar time-picker month-picker persian jalaali customizable-datepicker" }, { "githubUrl": "https://github.com/ptomasroos/react-native-multi-slider", @@ -30383,8 +30120,8 @@ "pushedAt": "2024-11-09T11:44:13Z", "forks": 383, "issues": 77, - "subscribers": 9, - "stars": 787, + "subscribers": 8, + "stars": 790, "dependencies": 0 }, "name": "@ptomasroos/react-native-multi-slider", @@ -30393,14 +30130,10 @@ "description": "Android and iOS Pure JS react native multi slider ", "topics": [ "multi-slider", - "react-component", - "react-components", - "react", - "native", + "component", + "components", "slider", "multiple", - "react-native", - "component", "ios", "android" ], @@ -30414,11 +30147,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 188390, - "weekDownloads": 31576, + "downloads": 194280, + "weekDownloads": 44918, "size": 34660, "latestRelease": "2.2.2", "latestReleaseDate": "2020-03-27T09:10:27.540Z" @@ -30431,8 +30165,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "multi-slider react-component react-components react native slider multiple react-native component ios android" + "popularity": 0.197, + "topicSearchString": "multi-slider component components slider multiple ios android" }, { "githubUrl": "https://github.com/react-native-cookies/cookies", @@ -30455,10 +30189,10 @@ "updatedAt": "2022-06-06T15:35:55Z", "createdAt": "2020-01-09T22:51:10Z", "pushedAt": "2022-06-06T15:35:55Z", - "forks": 100, + "forks": 101, "issues": 62, "subscribers": 5, - "stars": 514, + "stars": 520, "dependencies": 1 }, "name": "@react-native-cookies/cookies", @@ -30466,7 +30200,6 @@ "isPrivate": false, "description": "🍪 Cookie Manager for React Native", "topics": [ - "react-native", "component", "android", "ios", @@ -30483,25 +30216,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 779891, - "weekDownloads": 116476, + "downloads": 807218, + "weekDownloads": 201731, "size": 121198, "latestRelease": "6.2.1", "latestReleaseDate": "2022-05-11T17:05:28.532Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.623, - "topicSearchString": "react-native component android ios cookies webview" + "popularity": -0.538, + "topicSearchString": "component android ios cookies webview" }, { "githubUrl": "https://github.com/souvik-ghosh/react-native-create-thumbnail", @@ -30521,10 +30254,10 @@ "updatedAt": "2025-05-02T20:47:09Z", "createdAt": "2019-12-08T14:43:48Z", "pushedAt": "2025-05-02T20:47:09Z", - "forks": 98, - "issues": 13, + "forks": 99, + "issues": 14, "subscribers": 4, - "stars": 288, + "stars": 290, "dependencies": 0 }, "name": "react-native-create-thumbnail", @@ -30532,7 +30265,6 @@ "isPrivate": false, "description": "iOS/Android thumbnail generator with support for both local and remote videos", "topics": [ - "react-native", "thumbnails", "video", "android", @@ -30548,12 +30280,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-create-thumbnail", "npm": { - "downloads": 129044, - "weekDownloads": 24112, + "downloads": 93008, + "weekDownloads": 24649, "size": 47131, "latestRelease": "2.1.1", "latestReleaseDate": "2025-03-25T18:27:50.211Z" @@ -30563,8 +30296,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, - "topicSearchString": "react-native thumbnails video android ios" + "popularity": 0.225, + "topicSearchString": "thumbnails video android ios" }, { "githubUrl": "https://github.com/software-mansion/react-native-reanimated/tree/main/packages/react-native-reanimated", @@ -30595,13 +30328,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T14:15:42Z", + "updatedAt": "2025-10-21T09:31:54Z", "createdAt": "2018-04-25T06:35:29Z", - "pushedAt": "2025-09-11T14:15:42Z", - "forks": 1363, - "issues": 196, + "pushedAt": "2025-10-21T09:31:54Z", + "forks": 1372, + "issues": 204, "subscribers": 80, - "stars": 10236, + "stars": 10347, "dependencies": 2 }, "name": "react-native-reanimated", @@ -30609,9 +30342,6 @@ "isPrivate": false, "description": "More powerful alternative to Animated library for React Native.", "topics": [ - "react-native", - "react", - "native", "reanimated" ], "license": { @@ -30624,15 +30354,17 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-reanimated", "npm": { - "downloads": 7777973, - "weekDownloads": 1331257, - "size": 3593614, - "latestRelease": "4.1.0", - "latestReleaseDate": "2025-08-29T14:30:25.299Z" + "downloads": 8224177, + "weekDownloads": 1852333, + "size": 3600558, + "latestRelease": "4.1.3", + "latestReleaseDate": "2025-10-09T14:02:39.807Z" }, "score": 89, "matchingScoreModifiers": [ @@ -30642,8 +30374,8 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.145, - "topicSearchString": "react-native react native reanimated" + "popularity": 0.191, + "topicSearchString": "reanimated" }, { "githubUrl": "https://github.com/osdnk/react-native-reanimated-bottom-sheet", @@ -30675,7 +30407,7 @@ "forks": 318, "issues": 179, "subscribers": 24, - "stars": 3342, + "stars": 3343, "dependencies": 0 }, "name": "reanimated-bottom-sheet", @@ -30683,7 +30415,6 @@ "isPrivate": false, "description": "Highly configurable bottom sheet component made with react-native-reanimated and react-native-gesture-handler", "topics": [ - "react-native", "bottom-sheet", "reanimated", "gesture", @@ -30699,12 +30430,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 25303, - "weekDownloads": 4874, + "downloads": 20952, + "weekDownloads": 4568, "size": 210832, "latestRelease": "1.0.0-alpha.22", "latestReleaseDate": "2020-08-14T13:47:41.291Z" @@ -30717,8 +30449,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, - "topicSearchString": "react-native bottom-sheet reanimated gesture handler" + "popularity": -0.565, + "topicSearchString": "bottom-sheet reanimated gesture handler" }, { "githubUrl": "https://github.com/DuDigital/react-native-zoomable-view", @@ -30751,21 +30483,17 @@ "isPrivate": false, "description": "A view component for react-native with pinch to zoom, tap to move and double tap to zoom capability.", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "pinch-to-zoom", "pinch", "mobile", - "native", - "component", "view", "zoom", "zoomable", "double", "tap", - "react", "reactjs", "double-tap" ], @@ -30779,12 +30507,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 11928, - "weekDownloads": 2531, + "downloads": 15850, + "weekDownloads": 2660, "size": 168050, "latestRelease": "1.1.4", "latestReleaseDate": "2022-07-05T11:14:36.595Z" @@ -30795,8 +30524,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.57, - "topicSearchString": "react-native react-component ios android pinch-to-zoom pinch mobile native component view zoom zoomable double tap react reactjs double-tap" + "popularity": -0.607, + "topicSearchString": "component ios android pinch-to-zoom pinch mobile view zoom zoomable double tap reactjs double-tap" }, { "githubUrl": "https://github.com/Jarred-Sumner/react-native-media-clipboard", @@ -30817,7 +30546,7 @@ "pushedAt": "2020-02-14T12:31:06Z", "forks": 3, "issues": 0, - "subscribers": 3, + "subscribers": 2, "stars": 51, "dependencies": 1 }, @@ -30826,10 +30555,8 @@ "isPrivate": false, "description": "Image support for the clipboard in React Native", "topics": [ - "react-native", "clipboard", - "image", - "react" + "image" ], "license": { "name": "MIT License", @@ -30841,12 +30568,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", @@ -30858,7 +30586,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native clipboard image react" + "topicSearchString": "clipboard image" }, { "githubUrl": "https://github.com/tunoltd/emoji-mart-native", @@ -30893,9 +30621,6 @@ "isPrivate": false, "description": "One component to pick them all 👊🏼", "topics": [ - "react", - "native", - "react-native", "emoji", "picker", "emoji-mart", @@ -30914,13 +30639,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "emoji-mart-native", "npm": { - "downloads": 3309, - "weekDownloads": 685, + "downloads": 3511, + "weekDownloads": 821, "size": 9383079, "latestRelease": "0.6.5-beta", "latestReleaseDate": "2022-12-28T10:46:02.094Z" @@ -30930,8 +30656,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.574, - "topicSearchString": "react native react-native emoji picker emoji-mart emoji-picker emoji-component custom-emojis modalpicker" + "popularity": -0.551, + "topicSearchString": "emoji picker emoji-mart emoji-picker emoji-component custom-emojis modalpicker" }, { "githubUrl": "https://github.com/infinitered/ignite", @@ -30951,14 +30677,14 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-27T12:16:44Z", + "updatedAt": "2025-10-21T12:06:13Z", "createdAt": "2016-02-10T16:06:07Z", - "pushedAt": "2025-08-27T12:16:44Z", - "forks": 1478, - "issues": 24, - "subscribers": 236, - "stars": 19086, - "dependencies": 4 + "pushedAt": "2025-10-21T12:06:13Z", + "forks": 1483, + "issues": 28, + "subscribers": 233, + "stars": 19241, + "dependencies": 6 }, "name": "ignite-cli", "fullName": "infinitered/ignite", @@ -30966,7 +30692,6 @@ "description": "Infinite Red's battle-tested React Native project boilerplate, along with a CLI, component/model generators, and more! 9 years of continuous development and counting.", "topics": [ "cli", - "react-native", "generator", "boilerplate", "expo", @@ -30982,14 +30707,15 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 30313, - "weekDownloads": 3959, - "size": 1878058, - "latestRelease": "11.1.2", - "latestReleaseDate": "2025-08-27T12:16:50.100Z" + "downloads": 31205, + "weekDownloads": 7053, + "size": 1886418, + "latestRelease": "11.3.2", + "latestReleaseDate": "2025-10-09T16:29:36.667Z" }, "score": 97, "matchingScoreModifiers": [ @@ -30999,8 +30725,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.111, - "topicSearchString": "cli react-native generator boilerplate expo mst" + "popularity": 0.192, + "topicSearchString": "cli generator boilerplate expo mst" }, { "githubUrl": "https://github.com/infinitered/reactotron", @@ -31019,13 +30745,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-09T21:05:55Z", + "updatedAt": "2025-10-13T17:13:46Z", "createdAt": "2016-04-15T21:58:32Z", - "pushedAt": "2025-09-09T21:05:55Z", - "forks": 953, - "issues": 129, - "subscribers": 157, - "stars": 15329, + "pushedAt": "2025-10-13T17:13:46Z", + "forks": 955, + "issues": 133, + "subscribers": 156, + "stars": 15383, "dependencies": 0 }, "name": "reactotron", @@ -31033,8 +30759,6 @@ "isPrivate": true, "description": "A desktop app for inspecting your React JS and React Native projects. macOS, Linux, and Windows.", "topics": [ - "react", - "react-native", "reactjs", "reactnative", "debugging", @@ -31053,12 +30777,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "reactotron", "npm": { - "downloads": 1215, - "weekDownloads": 187, + "downloads": 901, + "weekDownloads": 184, "latestRelease": "0.9.0", "latestReleaseDate": "2016-08-09T12:27:37.454Z" }, @@ -31071,8 +30796,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.131, - "topicSearchString": "react react-native reactjs reactnative debugging desktop reactotron redux redux-saga" + "popularity": -0.576, + "topicSearchString": "reactjs reactnative debugging desktop reactotron redux redux-saga" }, { "githubUrl": "https://github.com/infinitered/apisauce", @@ -31090,13 +30815,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-06-19T17:26:55Z", + "updatedAt": "2025-10-14T16:47:12Z", "createdAt": "2016-04-10T00:44:42Z", - "pushedAt": "2025-06-19T17:26:55Z", - "forks": 182, + "pushedAt": "2025-10-14T16:47:12Z", + "forks": 183, "issues": 39, - "subscribers": 35, - "stars": 2851, + "subscribers": 34, + "stars": 2855, "dependencies": 1 }, "name": "apisauce", @@ -31109,7 +30834,6 @@ "network", "http", "promise", - "react-native", "reactjs" ], "license": { @@ -31122,24 +30846,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "apisauce", "npm": { - "downloads": 619963, - "weekDownloads": 108878, - "size": 33052, - "latestRelease": "3.2.0", - "latestReleaseDate": "2025-06-19T17:27:02.160Z" + "downloads": 579018, + "weekDownloads": 129308, + "size": 33143, + "latestRelease": "3.2.1", + "latestReleaseDate": "2025-10-14T16:47:18.238Z" }, - "score": 68, + "score": 73, "matchingScoreModifiers": [ "Popular", "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, - "topicSearchString": "axios api network http promise react-native reactjs" + "popularity": 0.19, + "topicSearchString": "axios api network http promise reactjs" }, { "githubUrl": "https://github.com/transistorsoft/react-native-background-geolocation", @@ -31149,6 +30875,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/transistorsoft/react-native-background-geolocation", @@ -31164,9 +30891,9 @@ "createdAt": "2015-04-19T13:17:30Z", "pushedAt": "2025-09-08T17:45:09Z", "forks": 430, - "issues": 18, - "subscribers": 56, - "stars": 2784, + "issues": 19, + "subscribers": 55, + "stars": 2810, "dependencies": 1 }, "name": "react-native-background-geolocation", @@ -31174,8 +30901,7 @@ "isPrivate": false, "description": "Sophisticated, battery-conscious background-geolocation with motion-detection", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "background", @@ -31197,25 +30923,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-background-geolocation", "npm": { - "downloads": 80442, - "weekDownloads": 12363, + "downloads": 82801, + "weekDownloads": 16966, "size": 41669764, "latestRelease": "4.19.0", "latestReleaseDate": "2025-09-08T17:46:18.451Z" }, - "score": 73, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.131, - "topicSearchString": "react-native react-component ios android background geolocation tracking geofence geofencing background-location background-geolocation location-tracking" + "popularity": 0.174, + "topicSearchString": "component ios android background geolocation tracking geofence geofencing background-location background-geolocation location-tracking" }, { "githubUrl": "https://github.com/nidorx/react-native-ui-blueprint", @@ -31238,7 +30963,7 @@ "pushedAt": "2022-05-24T18:27:19Z", "forks": 1, "issues": 0, - "subscribers": 3, + "subscribers": 2, "stars": 59, "dependencies": 1 }, @@ -31257,7 +30982,6 @@ "ux", "dev-tools", "developer-tools", - "react-native", "pixel" ], "license": { @@ -31270,13 +30994,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ui-blueprint", "npm": { - "downloads": 69, - "weekDownloads": 6, + "downloads": 201, + "weekDownloads": 16, "size": 232638, "latestRelease": "0.2.0-pre.0", "latestReleaseDate": "2019-09-21T02:12:06.475Z" @@ -31286,8 +31011,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.425, - "topicSearchString": "ruler pixel-perfect grid guides designer mobile ui ux dev-tools developer-tools react-native pixel" + "popularity": -1.432, + "topicSearchString": "ruler pixel-perfect grid guides designer mobile ui ux dev-tools developer-tools pixel" }, { "githubUrl": "https://github.com/FormidableLabs/eslint-plugin-react-native-a11y", @@ -31310,10 +31035,10 @@ "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": 47, - "stars": 301, + "subscribers": 46, + "stars": 302, "dependencies": 3 }, "name": "eslint-plugin-react-native-a11y", @@ -31325,8 +31050,7 @@ "eslintplugin", "eslint-plugin", "a11y", - "accessibility", - "react-native" + "accessibility" ], "license": { "key": "mit", @@ -31338,12 +31062,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "eslint-plugin-react-native-a11y", "npm": { - "downloads": 424839, - "weekDownloads": 71953, + "downloads": 420797, + "weekDownloads": 93947, "size": 67659, "latestRelease": "3.5.1", "latestReleaseDate": "2024-11-04T13:43:24.862Z" @@ -31355,8 +31080,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.144, - "topicSearchString": "eslint eslintplugin eslint-plugin a11y accessibility react-native" + "popularity": 0.19, + "topicSearchString": "eslint eslintplugin eslint-plugin a11y accessibility" }, { "githubUrl": "https://github.com/RosterBuster/rn-zendesk", @@ -31388,9 +31113,6 @@ "description": "React Native component for Zendesk", "topics": [ "zendesk", - "react", - "native", - "react-native", "ios", "android", "support", @@ -31408,12 +31130,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-zendesk", "npm": { - "downloads": 257, - "weekDownloads": 43, + "downloads": 321, + "weekDownloads": 66, "size": 91149, "latestRelease": "4.0.0", "latestReleaseDate": "2025-01-30T06:38:24.150Z" @@ -31423,8 +31146,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.857, - "topicSearchString": "zendesk react native react-native ios android support rn-zendesk help-center zendesk-help" + "popularity": -0.824, + "topicSearchString": "zendesk ios android support rn-zendesk help-center zendesk-help" }, { "githubUrl": "https://github.com/react-native-progress-view/progress-bar-android", @@ -31458,7 +31181,6 @@ "isPrivate": false, "description": "ProgressBar Component for react-native Android", "topics": [ - "react-native", "androidprogressbar", "android", "progress-bar", @@ -31475,24 +31197,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "unmaintained": true, "npm": { - "downloads": 69747, - "weekDownloads": 11965, + "downloads": 58911, + "weekDownloads": 13718, "size": 36422, "latestRelease": "1.0.5", "latestReleaseDate": "2022-11-07T02:18:33.161Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.604, - "topicSearchString": "react-native androidprogressbar android progress-bar progressbar hacktoberfest" + "popularity": -0.552, + "topicSearchString": "androidprogressbar android progress-bar progressbar hacktoberfest" }, { "githubUrl": "https://github.com/react-native-progress-view/progress-view", @@ -31518,13 +31241,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-07T22:51:53Z", + "updatedAt": "2025-10-03T01:12:17Z", "createdAt": "2019-02-08T15:43:17Z", - "pushedAt": "2025-08-07T22:51:53Z", + "pushedAt": "2025-10-03T01:12:17Z", "forks": 53, - "issues": 10, - "subscribers": 5, - "stars": 189, + "issues": 9, + "subscribers": 6, + "stars": 191, "dependencies": 0 }, "name": "@react-native-community/progress-view", @@ -31535,7 +31258,6 @@ "progressviewios", "progress", "progress-view", - "react-native", "progress-bar", "ios", "hacktoberfest", @@ -31552,22 +31274,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 63134, - "weekDownloads": 9979, + "downloads": 57360, + "weekDownloads": 14009, "size": 530736, "latestRelease": "1.5.0", "latestReleaseDate": "2024-11-15T03:21:39.570Z" }, - "score": 51, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.134, - "topicSearchString": "progressviewios progress progress-view react-native progress-bar ios hacktoberfest windows macos" + "popularity": 0.208, + "topicSearchString": "progressviewios progress progress-view progress-bar ios hacktoberfest windows macos" }, { "githubUrl": "https://github.com/react-native-clipboard/clipboard", @@ -31591,10 +31315,10 @@ "updatedAt": "2025-07-31T23:37:44Z", "createdAt": "2019-02-07T10:53:29Z", "pushedAt": "2025-07-31T23:37:44Z", - "forks": 134, + "forks": 135, "issues": 72, "subscribers": 7, - "stars": 744, + "stars": 746, "dependencies": 0 }, "name": "@react-native-clipboard/clipboard", @@ -31604,7 +31328,6 @@ "topics": [ "clipboard", "getstring", - "react-native", "setstring", "hacktoberfest" ], @@ -31618,23 +31341,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 1712187, - "weekDownloads": 274416, + "downloads": 1744408, + "weekDownloads": 406880, "size": 203745, "latestRelease": "1.16.3", "latestReleaseDate": "2025-06-28T05:00:24.469Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.136, - "topicSearchString": "clipboard getstring react-native setstring hacktoberfest" + "popularity": 0.198, + "topicSearchString": "clipboard getstring setstring hacktoberfest" }, { "githubUrl": "https://github.com/react-native-segmented-control/segmented-control", @@ -31660,13 +31384,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", - "forks": 84, + "pushedAt": "2025-10-17T06:37:33Z", + "forks": 85, "issues": 40, "subscribers": 3, - "stars": 629, + "stars": 640, "dependencies": 0 }, "name": "@react-native-segmented-control/segmented-control", @@ -31675,7 +31399,6 @@ "description": "React Native SegmentedControl library", "topics": [ "segmentedcontrolios", - "react-native", "segmented-control", "hacktoberfest" ], @@ -31689,29 +31412,31 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 246146, - "weekDownloads": 43057, + "downloads": 216942, + "weekDownloads": 49119, "size": 48092, "latestRelease": "2.5.7", "latestReleaseDate": "2024-12-11T01:38:19.547Z" }, - "score": 68, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.149, - "topicSearchString": "segmentedcontrolios react-native segmented-control hacktoberfest" + "popularity": 0.192, + "topicSearchString": "segmentedcontrolios segmented-control hacktoberfest" }, { "githubUrl": "https://github.com/react-native-voice/voice", "ios": true, "android": true, "npmPkg": "@react-native-voice/voice", + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/react-native-voice/voice", @@ -31726,10 +31451,10 @@ "updatedAt": "2025-05-06T09:53:25Z", "createdAt": "2016-05-06T19:11:39Z", "pushedAt": "2025-05-06T09:53:25Z", - "forks": 536, - "issues": 241, - "subscribers": 35, - "stars": 2048, + "forks": 544, + "issues": 244, + "subscribers": 33, + "stars": 2074, "dependencies": 1 }, "name": "@react-native-voice/voice", @@ -31739,7 +31464,6 @@ "topics": [ "android", "ios", - "react-native", "speech", "voice", "speech-recognition", @@ -31755,24 +31479,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 99979, - "weekDownloads": 17265, + "downloads": 102683, + "weekDownloads": 24488, "size": 608085, "latestRelease": "3.2.4", "latestReleaseDate": "2022-05-11T17:42:24.160Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Lots of open issues", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.147, - "topicSearchString": "android ios react-native speech voice speech-recognition voice-recognition" + "popularity": 0.203, + "topicSearchString": "android ios speech voice speech-recognition voice-recognition" }, { "githubUrl": "https://github.com/tienph6m/react-native-animated-spinkit", @@ -31803,7 +31528,7 @@ "forks": 25, "issues": 0, "subscribers": 6, - "stars": 325, + "stars": 326, "dependencies": 0 }, "name": "react-native-animated-spinkit", @@ -31811,8 +31536,6 @@ "isPrivate": false, "description": "A collection of loading indicators for React Native", "topics": [ - "react", - "react-native", "spinkit", "expo", "loading", @@ -31829,13 +31552,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-animated-spinkit", "npm": { - "downloads": 24114, - "weekDownloads": 4146, + "downloads": 25924, + "weekDownloads": 5659, "size": 270317, "latestRelease": "1.5.2", "latestReleaseDate": "2021-02-18T15:16:36.174Z" @@ -31846,8 +31570,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, - "topicSearchString": "react react-native spinkit expo loading spinners animations" + "popularity": -0.564, + "topicSearchString": "spinkit expo loading spinners animations" }, { "githubUrl": "https://github.com/react-native-webview/react-native-webview", @@ -31872,10 +31596,10 @@ "updatedAt": "2025-08-25T22:29:35Z", "createdAt": "2018-09-09T00:14:44Z", "pushedAt": "2025-08-25T22:29:35Z", - "forks": 2909, - "issues": 49, - "subscribers": 57, - "stars": 6960, + "forks": 2914, + "issues": 45, + "subscribers": 56, + "stars": 6999, "dependencies": 2 }, "name": "react-native-webview", @@ -31893,25 +31617,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-webview", "npm": { - "downloads": 5997268, - "weekDownloads": 1057194, + "downloads": 5422488, + "weekDownloads": 1215670, "size": 660551, "latestRelease": "13.16.0", "latestReleaseDate": "2025-08-25T22:29:42.131Z" }, - "score": 97, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.15, + "popularity": 0.191, "topicSearchString": "" }, { @@ -31936,10 +31660,10 @@ "updatedAt": "2022-01-03T15:22:50Z", "createdAt": "2015-04-01T00:54:40Z", "pushedAt": "2022-01-03T15:22:50Z", - "forks": 3276, + "forks": 3273, "issues": 73, - "subscribers": 167, - "stars": 9645 + "subscribers": 166, + "stars": 9650 }, "name": "react-native-camera", "fullName": "react-native-camera/react-native-camera", @@ -31947,12 +31671,13 @@ "license": null, "hasTypes": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-camera", "npm": { - "downloads": 261929, - "weekDownloads": 51764, + "downloads": 208205, + "weekDownloads": 45134, "size": 1189169, "latestRelease": "4.2.1", "latestReleaseDate": "2021-09-21T19:39:56.664Z" @@ -31966,7 +31691,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, + "popularity": -0.566, "topicSearchString": "" }, { @@ -31996,7 +31721,7 @@ "forks": 63, "issues": 10, "subscribers": 10, - "stars": 1331, + "stars": 1346, "dependencies": 1 }, "name": "react-native-notifier", @@ -32005,7 +31730,6 @@ "registry": "https://registry.npmjs.org/", "description": "Fast and simple in-app notifications for React Native", "topics": [ - "react-native", "ios", "android", "expo", @@ -32023,12 +31747,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-notifier", "npm": { - "downloads": 52746, - "weekDownloads": 9750, + "downloads": 44525, + "weekDownloads": 9024, "size": 141402, "latestRelease": "2.0.0", "latestReleaseDate": "2024-07-21T15:04:56.063Z" @@ -32040,8 +31765,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, - "topicSearchString": "react-native ios android expo animation notification swipeable" + "popularity": 0.172, + "topicSearchString": "ios android expo animation notification swipeable" }, { "githubUrl": "https://github.com/react-ui-kit/expo-ui-kit", @@ -32065,7 +31790,7 @@ "forks": 25, "issues": 6, "subscribers": 3, - "stars": 114, + "stars": 115, "dependencies": 0 }, "name": "expo-ui-kit", @@ -32074,11 +31799,9 @@ "description": "expo-ui-kit - a components based React-Native UI Kit", "topics": [ "expo", - "react-native", - "react-ui-kit", + "ui-kit", "expo-ui-kit", "component", - "ui-kit", "ui-kit-framework", "theme", "predefined-props", @@ -32094,12 +31817,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-ui-kit", "npm": { - "downloads": 53, - "weekDownloads": 2, + "downloads": 237, + "weekDownloads": 14, "size": 53095, "latestRelease": "0.1.6", "latestReleaseDate": "2020-05-09T17:31:39.289Z" @@ -32109,8 +31833,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.717, - "topicSearchString": "expo react-native react-ui-kit expo-ui-kit component ui-kit ui-kit-framework theme predefined-props rgba" + "popularity": -0.699, + "topicSearchString": "expo ui-kit expo-ui-kit component ui-kit-framework theme predefined-props rgba" }, { "githubUrl": "https://github.com/grapp-dev/stacks", @@ -32138,9 +31862,9 @@ "createdAt": "2020-04-05T16:14:50Z", "pushedAt": "2024-05-11T16:38:32Z", "forks": 24, - "issues": 1, - "subscribers": 16, - "stars": 1023, + "issues": 2, + "subscribers": 15, + "stars": 1022, "dependencies": 0 }, "name": "@grapp/stacks", @@ -32148,8 +31872,6 @@ "isPrivate": false, "description": "A set of components for building layouts in React Native. Powered by React Native Unistyles.", "topics": [ - "react", - "react-native", "web", "typescript", "stacks", @@ -32168,11 +31890,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1395, - "weekDownloads": 303, + "downloads": 2144, + "weekDownloads": 527, "size": 140674, "latestRelease": "3.1.0", "latestReleaseDate": "2024-04-11T10:46:53.789Z" @@ -32184,8 +31907,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.185, - "topicSearchString": "react react-native web typescript stacks layout ui view user-interface" + "popularity": 0.209, + "topicSearchString": "web typescript stacks layout ui view user-interface" }, { "githubUrl": "https://github.com/zoontek/react-native-localize", @@ -32195,6 +31918,7 @@ "windows": true, "fireos": true, "macos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/zoontek/react-native-localize", @@ -32206,13 +31930,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-17T06:58:40Z", + "updatedAt": "2025-10-10T11:55:06Z", "createdAt": "2017-08-01T16:38:22Z", - "pushedAt": "2025-08-17T06:58:40Z", - "forks": 206, + "pushedAt": "2025-10-10T11:55:06Z", + "forks": 209, "issues": 5, - "subscribers": 17, - "stars": 2372, + "subscribers": 16, + "stars": 2385, "dependencies": 0 }, "name": "react-native-localize", @@ -32221,7 +31945,6 @@ "description": "🌍 A toolbox for your React Native app localization", "topics": [ "localize", - "react-native", "macos", "localization", "l20n", @@ -32242,24 +31965,26 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-localize", "npm": { - "downloads": 1632764, - "weekDownloads": 266435, - "size": 146102, - "latestRelease": "3.5.2", - "latestReleaseDate": "2025-08-17T06:59:23.919Z" + "downloads": 1622158, + "weekDownloads": 389203, + "size": 146304, + "latestRelease": "3.5.4", + "latestReleaseDate": "2025-10-10T11:55:41.487Z" }, - "score": 68, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.139, - "topicSearchString": "localize react-native macos localization l20n globalization internationalization i18n language-detection ios android" + "popularity": 0.204, + "topicSearchString": "localize macos localization l20n globalization internationalization i18n language-detection ios android" }, { "githubUrl": "https://github.com/react-native-datetimepicker/datetimepicker", @@ -32278,6 +32003,7 @@ "windows": true, "visionos": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/react-native-datetimepicker/datetimepicker", @@ -32292,10 +32018,10 @@ "updatedAt": "2025-09-13T17:23:01Z", "createdAt": "2019-05-17T13:56:57Z", "pushedAt": "2025-09-13T17:23:01Z", - "forks": 427, - "issues": 80, - "subscribers": 20, - "stars": 2740, + "forks": 431, + "issues": 81, + "subscribers": 19, + "stars": 2763, "dependencies": 1 }, "name": "@react-native-community/datetimepicker", @@ -32304,7 +32030,6 @@ "description": "React Native date & time picker component for iOS, Android and Windows", "topics": [ "component", - "react-native", "ios", "android", "windows", @@ -32324,26 +32049,26 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 3490598, - "weekDownloads": 578186, + "downloads": 3681625, + "weekDownloads": 875619, "size": 260968, "latestRelease": "8.4.5", "latestReleaseDate": "2025-09-13T17:23:07.909Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.141, - "topicSearchString": "component react-native ios android windows datepicker timepicker datetime datetimepicker hacktoberfest" + "popularity": 0.202, + "topicSearchString": "component ios android windows datepicker timepicker datetime datetimepicker hacktoberfest" }, { "githubUrl": "https://github.com/microsoft/react-native-dualscreen/tree/master/dualscreeninfo", @@ -32365,7 +32090,7 @@ "pushedAt": "2021-10-10T06:22:16Z", "forks": 23, "issues": 18, - "subscribers": 26, + "subscribers": 25, "stars": 134, "dependencies": 0 }, @@ -32374,7 +32099,6 @@ "isPrivate": false, "description": "React Native package for dual screen devices support (Surface Duo)", "topics": [ - "react-native", "dual-screen" ], "license": { @@ -32387,12 +32111,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 53, - "weekDownloads": 11, + "downloads": 146, + "weekDownloads": 9, "size": 68832, "latestRelease": "0.3.2", "latestReleaseDate": "2021-10-10T06:23:01.002Z" @@ -32403,8 +32128,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.317, - "topicSearchString": "react-native dual-screen" + "popularity": -1.447, + "topicSearchString": "dual-screen" }, { "githubUrl": "https://github.com/microsoft/react-native-dualscreen/tree/master/twopane-navigation", @@ -32426,7 +32151,7 @@ "pushedAt": "2023-02-08T23:54:14Z", "forks": 23, "issues": 18, - "subscribers": 26, + "subscribers": 25, "stars": 134, "dependencies": 4 }, @@ -32435,7 +32160,6 @@ "isPrivate": false, "description": "React Native package for dual screen devices navigation support (Surface Duo)", "topics": [ - "react-native", "dual-screen", "navigation" ], @@ -32449,12 +32173,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 112, - "weekDownloads": 26, + "downloads": 241, + "weekDownloads": 12, "size": 4102131, "latestRelease": "1.3.2", "latestReleaseDate": "2021-12-09T00:35:15.462Z" @@ -32465,8 +32190,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "react-native dual-screen navigation" + "popularity": -1.457, + "topicSearchString": "dual-screen navigation" }, { "githubUrl": "https://github.com/microsoft/react-native-dualscreen/tree/master/twopaneview", @@ -32491,7 +32216,7 @@ "pushedAt": "2022-04-04T18:18:00Z", "forks": 23, "issues": 18, - "subscribers": 26, + "subscribers": 25, "stars": 134, "dependencies": 1 }, @@ -32500,7 +32225,6 @@ "isPrivate": false, "description": "react-native layout control for dual screen devices (Duo)", "topics": [ - "react-native", "dual-screen" ], "license": { @@ -32513,12 +32237,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 26, - "weekDownloads": 8, + "downloads": 27, + "weekDownloads": 5, "size": 38136, "latestRelease": "0.1.0", "latestReleaseDate": "2020-05-18T02:03:57.738Z" @@ -32529,8 +32254,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.233, - "topicSearchString": "react-native dual-screen" + "popularity": -1.333, + "topicSearchString": "dual-screen" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-splash-screen", @@ -32543,6 +32268,7 @@ "tvos": true, "expoGo": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -32554,13 +32280,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T23:15:07Z", + "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-12T23:15:07Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-27T16:55:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-splash-screen", @@ -32568,7 +32294,6 @@ "isPrivate": false, "description": "Provides a module to allow keeping the native Splash Screen visible until you choose to hide it.", "topics": [ - "react-native", "expo", "expo-splash-screen", "splash-screen", @@ -32586,12 +32311,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-splash-screen", "npm": { - "downloads": 4196694, - "weekDownloads": 767423, + "downloads": 4410779, + "weekDownloads": 976557, "size": 118135, "latestRelease": "31.0.10", "latestReleaseDate": "2025-09-12T23:15:40.240Z" @@ -32605,8 +32332,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.155, - "topicSearchString": "react-native expo expo-splash-screen splash-screen splash launch-screen launch" + "popularity": 0.188, + "topicSearchString": "expo expo-splash-screen splash-screen splash launch-screen launch" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-updates", @@ -32615,6 +32342,7 @@ "tvos": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -32626,13 +32354,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-20T07:43:41Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-20T07:43:41Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 14 }, "name": "expo-updates", @@ -32640,7 +32368,6 @@ "isPrivate": false, "description": "Fetches and manages remotely-hosted assets and updates to your app's JS bundle.", "topics": [ - "react-native", "expo", "updates" ], @@ -32654,27 +32381,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-updates", "npm": { - "downloads": 2352364, - "weekDownloads": 409472, - "size": 2468993, - "latestRelease": "29.0.10", - "latestReleaseDate": "2025-09-11T20:22:48.481Z" + "downloads": 2412800, + "weekDownloads": 530718, + "size": 2470270, + "latestRelease": "29.0.12", + "latestReleaseDate": "2025-10-01T00:22:17.670Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.148, - "topicSearchString": "react-native expo updates" + "popularity": 0.187, + "topicSearchString": "expo updates" }, { "githubUrl": "https://github.com/expo/react-native-appearance", @@ -32697,10 +32425,10 @@ "updatedAt": "2021-03-02T22:34:22Z", "createdAt": "2019-08-23T00:32:00Z", "pushedAt": "2021-03-02T22:34:22Z", - "forks": 37, + "forks": 40, "issues": 16, - "subscribers": 2, - "stars": 335, + "subscribers": 1, + "stars": 336, "dependencies": 3 }, "name": "react-native-appearance", @@ -32708,7 +32436,6 @@ "isPrivate": false, "description": "Access operating system appearance information (currently only light/dark mode) on iOS, Android, and web", "topics": [ - "react-native", "web", "expo-web", "appearance" @@ -32723,12 +32450,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-appearance", "npm": { - "downloads": 9383, - "weekDownloads": 1749, + "downloads": 10089, + "weekDownloads": 1667, "size": 90039, "latestRelease": "0.3.4", "latestReleaseDate": "2020-04-25T23:55:14.996Z" @@ -32739,8 +32467,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, - "topicSearchString": "react-native web expo-web appearance" + "popularity": -0.61, + "topicSearchString": "web expo-web appearance" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-auth-session", @@ -32760,13 +32488,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-24T16:46:42Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-24T16:46:42Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 6 }, "name": "expo-auth-session", @@ -32774,7 +32502,6 @@ "isPrivate": false, "description": "Expo module for browser-based authentication", "topics": [ - "react-native", "expo", "expo-auth-session", "auth", @@ -32792,27 +32519,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-auth-session", "npm": { - "downloads": 1404169, - "weekDownloads": 278750, + "downloads": 1456695, + "weekDownloads": 322270, "size": 394529, "latestRelease": "7.0.8", "latestReleaseDate": "2025-09-11T20:26:43.537Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.169, - "topicSearchString": "react-native expo expo-auth-session auth oauth authentication auth-session" + "popularity": 0.188, + "topicSearchString": "expo expo-auth-session auth oauth authentication auth-session" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-linking", @@ -32833,13 +32561,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-09-16T20:34:34Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-16T20:34:34Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 2 }, "name": "expo-linking", @@ -32847,7 +32575,6 @@ "isPrivate": false, "description": "Create and open deep links universally", "topics": [ - "react-native", "expo", "expo-linking" ], @@ -32861,27 +32588,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-linking", "npm": { - "downloads": 4596193, - "weekDownloads": 819352, + "downloads": 4867464, + "weekDownloads": 1050700, "size": 159097, "latestRelease": "8.0.8", "latestReleaseDate": "2025-09-11T20:24:36.440Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.152, - "topicSearchString": "react-native expo expo-linking" + "popularity": 0.183, + "topicSearchString": "expo expo-linking" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-screen-orientation", @@ -32891,6 +32618,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -32905,10 +32633,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-screen-orientation", @@ -32916,7 +32644,6 @@ "isPrivate": false, "description": "Expo universal module for managing device's screen orientation", "topics": [ - "react-native", "expo", "expo-screen-orientation", "orientation", @@ -32932,27 +32659,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-screen-orientation", "npm": { - "downloads": 685466, - "weekDownloads": 119811, + "downloads": 660474, + "weekDownloads": 151623, "size": 204971, "latestRelease": "9.0.7", "latestReleaseDate": "2025-09-11T20:23:38.311Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.149, - "topicSearchString": "react-native expo expo-screen-orientation orientation screen" + "popularity": 0.195, + "topicSearchString": "expo expo-screen-orientation orientation screen" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-sharing", @@ -32973,13 +32700,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T18:37:51Z", + "updatedAt": "2025-09-18T09:37:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-10T18:37:51Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-18T09:37:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-sharing", @@ -32987,7 +32714,6 @@ "isPrivate": false, "description": "Provides a way to share files directly with other compatible applications.", "topics": [ - "react-native", "expo", "expo-sharing", "android", @@ -33004,27 +32730,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-sharing", "npm": { - "downloads": 1263266, - "weekDownloads": 204117, + "downloads": 1471985, + "weekDownloads": 320851, "size": 60294, "latestRelease": "14.0.7", "latestReleaseDate": "2025-09-10T18:40:47.350Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.137, - "topicSearchString": "react-native expo expo-sharing android ios web" + "popularity": 0.185, + "topicSearchString": "expo expo-sharing android ios web" }, { "githubUrl": "https://github.com/th3rdwave/react-native-safe-area-context", @@ -33048,10 +32774,10 @@ "updatedAt": "2025-08-22T16:23:47Z", "createdAt": "2019-08-14T18:26:28Z", "pushedAt": "2025-08-22T16:23:47Z", - "forks": 218, - "issues": 53, + "forks": 223, + "issues": 58, "subscribers": 12, - "stars": 2462, + "stars": 2519, "dependencies": 0 }, "name": "react-native-safe-area-context", @@ -33060,14 +32786,12 @@ "registry": "https://registry.npmjs.org/", "description": "A flexible way to handle safe area insets in JS. Also works on Android and Web! ", "topics": [ - "react-native", "web", "expo-web", "safe-area", "view", "ios", "android", - "react", "safeareainsets" ], "license": { @@ -33080,26 +32804,26 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-safe-area-context", "npm": { - "downloads": 9193878, - "weekDownloads": 1550767, + "downloads": 9429483, + "weekDownloads": 2104942, "size": 230707, "latestRelease": "5.6.1", "latestReleaseDate": "2025-08-19T15:57:18.282Z" }, - "score": 97, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.143, - "topicSearchString": "react-native web expo-web safe-area view ios android react safeareainsets" + "popularity": 0.19, + "topicSearchString": "web expo-web safe-area view ios android safeareainsets" }, { "githubUrl": "https://github.com/software-mansion/react-native-screens", @@ -33125,14 +32849,14 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T05:48:44Z", + "updatedAt": "2025-10-21T13:35:27Z", "createdAt": "2018-08-03T11:36:32Z", - "pushedAt": "2025-09-10T05:48:44Z", - "forks": 545, - "issues": 126, - "subscribers": 41, - "stars": 3414, - "dependencies": 3 + "pushedAt": "2025-10-21T13:35:27Z", + "forks": 555, + "issues": 128, + "subscribers": 40, + "stars": 3472, + "dependencies": 2 }, "name": "react-native-screens", "fullName": "software-mansion/react-native-screens", @@ -33140,8 +32864,7 @@ "description": "Native navigation primitives for your React Native app.", "topics": [ "typescript", - "react-native", - "react-navigation" + "navigation" ], "license": { "key": "mit", @@ -33153,27 +32876,28 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-screens", "npm": { - "downloads": 7932686, - "weekDownloads": 1369354, - "size": 2358169, - "latestRelease": "4.16.0", - "latestReleaseDate": "2025-09-04T13:43:49.895Z" + "downloads": 8166438, + "weekDownloads": 1812731, + "size": 2544218, + "latestRelease": "4.17.1", + "latestReleaseDate": "2025-10-15T22:29:19.033Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.147, - "topicSearchString": "typescript react-native react-navigation" + "popularity": 0.189, + "topicSearchString": "typescript navigation" }, { "githubUrl": "https://github.com/IjzerenHein/react-native-shared-element", @@ -33197,8 +32921,8 @@ "pushedAt": "2025-01-21T16:03:36Z", "forks": 107, "issues": 14, - "subscribers": 28, - "stars": 2297, + "subscribers": 27, + "stars": 2307, "dependencies": 0 }, "name": "react-native-shared-element", @@ -33209,7 +32933,6 @@ "shared-element", "expo", "expo-shared-element", - "react-native", "magic-move", "shared-element-transition", "visual-clone", @@ -33228,12 +32951,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "react-native-shared-element", "npm": { - "downloads": 22699, - "weekDownloads": 3153, + "downloads": 21308, + "weekDownloads": 5202, "size": 1109582, "latestRelease": "0.8.9", "latestReleaseDate": "2023-11-17T13:46:52.364Z" @@ -33245,8 +32970,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.118, - "topicSearchString": "shared-element expo expo-shared-element react-native magic-move shared-element-transition visual-clone visual-standin clone clone-view image-clone" + "popularity": 0.208, + "topicSearchString": "shared-element expo expo-shared-element magic-move shared-element-transition visual-clone visual-standin clone clone-view image-clone" }, { "githubUrl": "https://github.com/callstack/react-native-pager-view", @@ -33276,10 +33001,10 @@ "updatedAt": "2025-09-07T06:27:54Z", "createdAt": "2019-02-06T16:17:45Z", "pushedAt": "2025-09-07T06:27:54Z", - "forks": 441, - "issues": 129, - "subscribers": 25, - "stars": 3085, + "forks": 440, + "issues": 132, + "subscribers": 24, + "stars": 3123, "dependencies": 0 }, "name": "react-native-pager-view", @@ -33288,7 +33013,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native wrapper for the Android ViewPager and iOS UIPageViewController.", "topics": [ - "react-native", "ios", "android", "hacktoberfest" @@ -33303,27 +33027,27 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-pager-view", "npm": { - "downloads": 2491739, - "weekDownloads": 400530, + "downloads": 2526925, + "weekDownloads": 592363, "size": 190940, "latestRelease": "6.9.1", "latestReleaseDate": "2025-08-07T11:47:48.407Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.137, - "topicSearchString": "react-native ios android hacktoberfest" + "popularity": 0.199, + "topicSearchString": "ios android hacktoberfest" }, { "githubUrl": "https://github.com/react-native-netinfo/react-native-netinfo", @@ -33352,10 +33076,10 @@ "updatedAt": "2024-09-20T16:24:41Z", "createdAt": "2019-02-06T15:54:46Z", "pushedAt": "2024-09-20T16:24:41Z", - "forks": 383, - "issues": 140, + "forks": 384, + "issues": 142, "subscribers": 20, - "stars": 2104, + "stars": 2115, "dependencies": 0 }, "name": "@react-native-community/netinfo", @@ -33363,7 +33087,6 @@ "isPrivate": false, "description": "React Native Network Info API for Android & iOS", "topics": [ - "react-native", "netinfo", "networking", "network-info", @@ -33379,26 +33102,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 3902992, - "weekDownloads": 648856, + "downloads": 3832310, + "weekDownloads": 876184, "size": 546659, "latestRelease": "11.4.1", "latestReleaseDate": "2024-09-20T16:19:29.269Z" }, - "score": 70, + "score": 73, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.141, - "topicSearchString": "react-native netinfo networking network-info network" + "popularity": 0.194, + "topicSearchString": "netinfo networking network-info network" }, { "githubUrl": "https://github.com/react-native-text-input-mask/react-native-text-input-mask", @@ -33421,7 +33144,7 @@ "forks": 266, "issues": 56, "subscribers": 14, - "stars": 1201, + "stars": 1202, "dependencies": 0 }, "name": "react-native-text-input-mask", @@ -33429,8 +33152,6 @@ "isPrivate": false, "description": "Text input mask for React Native, Android and iOS", "topics": [ - "react", - "native", "mask", "text-input", "android", @@ -33438,7 +33159,6 @@ "maskedtextfield", "maskededittext", "maskedinput", - "react-native", "mask-android", "mask-ios", "input-mask", @@ -33454,13 +33174,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-text-input-mask", "npm": { - "downloads": 65243, - "weekDownloads": 10565, + "downloads": 74931, + "weekDownloads": 17380, "size": 54388, "latestRelease": "3.2.0", "latestReleaseDate": "2023-06-12T19:41:14.657Z" @@ -33472,8 +33193,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, - "topicSearchString": "react native mask text-input android ios maskedtextfield maskededittext maskedinput react-native mask-android mask-ios input-mask inputmask" + "popularity": -0.553, + "topicSearchString": "mask text-input android ios maskedtextfield maskededittext maskedinput mask-android mask-ios input-mask inputmask" }, { "githubUrl": "https://github.com/react-native-toolbar-android/toolbar-android", @@ -33507,8 +33228,7 @@ "isPrivate": false, "description": "A React Native Component for Android Toolbar", "topics": [ - "toolbar-android", - "react-native" + "toolbar-android" ], "license": { "key": "mit", @@ -33520,12 +33240,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 35354, - "weekDownloads": 5712, + "downloads": 31418, + "weekDownloads": 7871, "size": 68043, "latestRelease": "0.2.1", "latestReleaseDate": "2021-09-03T19:46:31.351Z" @@ -33535,8 +33256,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, - "topicSearchString": "toolbar-android react-native" + "popularity": -0.537, + "topicSearchString": "toolbar-android" }, { "githubUrl": "https://github.com/react-native-art/art", @@ -33569,7 +33290,6 @@ "isPrivate": false, "description": "React Native module that allows you to draw vector graphics.", "topics": [ - "react-native", "art", "community" ], @@ -33583,11 +33303,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 415163, - "weekDownloads": 66866, + "downloads": 388521, + "weekDownloads": 90090, "size": 490851, "latestRelease": "1.2.0", "latestReleaseDate": "2020-03-11T10:13:24.240Z" @@ -33598,8 +33319,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, - "topicSearchString": "react-native art community" + "popularity": -0.553, + "topicSearchString": "art community" }, { "githubUrl": "https://github.com/react-native-push-notification-ios/push-notification-ios", @@ -33621,10 +33342,10 @@ "updatedAt": "2024-04-24T22:21:44Z", "createdAt": "2019-02-08T15:50:15Z", "pushedAt": "2024-04-24T22:21:44Z", - "forks": 262, + "forks": 263, "issues": 173, - "subscribers": 16, - "stars": 802, + "subscribers": 15, + "stars": 807, "dependencies": 1 }, "name": "@react-native-community/push-notification-ios", @@ -33632,7 +33353,6 @@ "isPrivate": false, "description": " React Native Push Notification API for iOS.", "topics": [ - "react-native", "push-notification-ios", "push-notification", "notification-ios", @@ -33651,11 +33371,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 546429, - "weekDownloads": 91710, + "downloads": 534943, + "weekDownloads": 121166, "size": 273019, "latestRelease": "1.11.0", "latestReleaseDate": "2023-04-05T03:09:13.465Z" @@ -33668,8 +33389,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, - "topicSearchString": "react-native push-notification-ios push-notification notification-ios notification hacktoberfest ios push-notifications" + "popularity": -0.557, + "topicSearchString": "push-notification-ios push-notification notification-ios notification hacktoberfest ios push-notifications" }, { "githubUrl": "https://github.com/react-navigation/react-native-safe-area-view", @@ -33698,7 +33419,7 @@ "pushedAt": "2021-01-29T03:46:57Z", "forks": 166, "issues": 0, - "subscribers": 10, + "subscribers": 9, "stars": 659, "dependencies": 1 }, @@ -33707,7 +33428,6 @@ "isPrivate": false, "description": "⚠️ Deprecated: use the successor react-native-safe-area-context instead!", "topics": [ - "react-native", "iphonex", "safeareaview", "safe-area", @@ -33723,12 +33443,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-safe-area-view", "npm": { - "downloads": 344439, - "weekDownloads": 63039, + "downloads": 280849, + "weekDownloads": 61139, "size": 81809, "latestRelease": "1.1.1", "latestReleaseDate": "2020-04-25T23:48:06.599Z" @@ -33740,8 +33461,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, - "topicSearchString": "react-native iphonex safeareaview safe-area notch" + "popularity": -0.565, + "topicSearchString": "iphonex safeareaview safe-area notch" }, { "githubUrl": "https://github.com/Kureev/react-native-blur", @@ -33771,10 +33492,10 @@ "updatedAt": "2024-08-29T14:23:21Z", "createdAt": "2015-04-09T21:49:16Z", "pushedAt": "2024-08-29T14:23:21Z", - "forks": 507, - "issues": 220, - "subscribers": 43, - "stars": 3848, + "forks": 508, + "issues": 222, + "subscribers": 42, + "stars": 3857, "dependencies": 0 }, "name": "@react-native-community/blur", @@ -33783,7 +33504,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Blur component", "topics": [ - "react-native", "ios", "android", "blur", @@ -33799,11 +33519,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 720426, - "weekDownloads": 120018, + "downloads": 717354, + "weekDownloads": 162710, "size": 109474, "latestRelease": "4.4.1", "latestReleaseDate": "2024-08-29T14:23:09.479Z" @@ -33816,8 +33538,8 @@ "Lots of open issues", "Not updated recently" ], - "popularity": 0.142, - "topicSearchString": "react-native ios android blur component" + "popularity": 0.193, + "topicSearchString": "ios android blur component" }, { "githubUrl": "https://github.com/react-native-async-storage/async-storage/tree/main/packages/default-storage", @@ -33849,10 +33571,10 @@ "updatedAt": "2025-06-05T12:14:47Z", "createdAt": "2019-02-06T15:51:20Z", "pushedAt": "2025-06-05T12:14:47Z", - "forks": 454, + "forks": 457, "issues": 16, - "subscribers": 33, - "stars": 4962, + "subscribers": 32, + "stars": 4978, "dependencies": 1 }, "name": "@react-native-async-storage/async-storage", @@ -33860,8 +33582,6 @@ "isPrivate": false, "description": "Asynchronous, persistent, key-value storage system for React Native.", "topics": [ - "react-native", - "react-native", "async-storage", "asyncstorage", "storage" @@ -33876,11 +33596,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 8172637, - "weekDownloads": 1415703, + "downloads": 8541997, + "weekDownloads": 1881419, "size": 380789, "latestRelease": "2.2.0", "latestReleaseDate": "2025-06-05T12:15:48.403Z" @@ -33891,8 +33613,8 @@ "Popular", "Known" ], - "popularity": 0.147, - "topicSearchString": "react-native react-native async-storage asyncstorage storage" + "popularity": 0.187, + "topicSearchString": "async-storage asyncstorage storage" }, { "githubUrl": "https://github.com/react-native-picker/picker", @@ -33923,13 +33645,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T00:04:16Z", + "updatedAt": "2025-10-15T00:49:17Z", "createdAt": "2019-03-01T01:55:16Z", - "pushedAt": "2025-09-10T00:04:16Z", - "forks": 292, - "issues": 234, - "subscribers": 15, - "stars": 1716, + "pushedAt": "2025-10-15T00:49:17Z", + "forks": 296, + "issues": 236, + "subscribers": 14, + "stars": 1723, "dependencies": 0 }, "name": "@react-native-picker/picker", @@ -33937,7 +33659,6 @@ "isPrivate": false, "description": "Picker is a cross-platform UI component for selecting an item from a list of options.", "topics": [ - "react-native", "picker", "dropdown", "select", @@ -33957,14 +33678,16 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 2406330, - "weekDownloads": 415249, - "size": 398724, - "latestRelease": "2.11.2", - "latestReleaseDate": "2025-09-10T00:04:28.756Z" + "downloads": 2348849, + "weekDownloads": 528395, + "size": 398744, + "latestRelease": "2.11.4", + "latestReleaseDate": "2025-10-15T00:49:29.220Z" }, "score": 65, "matchingScoreModifiers": [ @@ -33973,8 +33696,8 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.147, - "topicSearchString": "react-native picker dropdown select ios android macos windows hacktoberfest" + "popularity": 0.191, + "topicSearchString": "picker dropdown select ios android macos windows hacktoberfest" }, { "githubUrl": "https://github.com/react-native-cameraroll/react-native-cameraroll", @@ -33995,10 +33718,10 @@ "updatedAt": "2025-08-06T09:52:07Z", "createdAt": "2019-02-07T10:52:08Z", "pushedAt": "2025-08-06T09:52:07Z", - "forks": 373, - "issues": 9, - "subscribers": 15, - "stars": 1039, + "forks": 375, + "issues": 6, + "subscribers": 14, + "stars": 1049, "dependencies": 0 }, "name": "@react-native-camera-roll/camera-roll", @@ -34006,7 +33729,6 @@ "isPrivate": false, "description": "CameraRoll is a react-native native module that provides access to the local camera roll or photo library.", "topics": [ - "react-native", "cameraroll", "camera", "photo-gallery" @@ -34021,23 +33743,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 515899, - "weekDownloads": 90266, + "downloads": 463413, + "weekDownloads": 105690, "size": 326152, "latestRelease": "7.10.2", "latestReleaseDate": "2025-08-06T09:52:15.832Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.149, - "topicSearchString": "react-native cameraroll camera photo-gallery" + "popularity": 0.194, + "topicSearchString": "cameraroll camera photo-gallery" }, { "githubUrl": "https://github.com/callstack/react-native-image-editor", @@ -34060,8 +33783,8 @@ "pushedAt": "2025-04-02T15:48:31Z", "forks": 112, "issues": 7, - "subscribers": 8, - "stars": 420, + "subscribers": 7, + "stars": 423, "dependencies": 0 }, "name": "@react-native-community/image-editor", @@ -34070,7 +33793,6 @@ "registry": "https://registry.npmjs.org/", "description": "A library providing an API for cropping images from the web and the local file system.", "topics": [ - "react-native", "ios", "android", "image-editor", @@ -34088,22 +33810,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 72963, - "weekDownloads": 12050, + "downloads": 71038, + "weekDownloads": 18332, "size": 98799, "latestRelease": "4.3.0", "latestReleaseDate": "2025-01-22T18:35:28.422Z" }, - "score": 51, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.14, - "topicSearchString": "react-native ios android image-editor imageeditor image web" + "popularity": 0.219, + "topicSearchString": "ios android image-editor imageeditor image web" }, { "githubUrl": "https://github.com/react-native-masked-view/masked-view", @@ -34131,9 +33855,9 @@ "createdAt": "2019-02-07T10:42:47Z", "pushedAt": "2024-11-04T05:19:29Z", "forks": 120, - "issues": 50, + "issues": 51, "subscribers": 10, - "stars": 1092, + "stars": 1110, "dependencies": 0 }, "name": "@react-native-masked-view/masked-view", @@ -34141,7 +33865,6 @@ "isPrivate": false, "description": "React Native Masked View Library", "topics": [ - "react-native", "masked-view", "hacktoberfest" ], @@ -34155,11 +33878,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1831604, - "weekDownloads": 282861, + "downloads": 1874154, + "weekDownloads": 444645, "size": 59004, "latestRelease": "0.3.2", "latestReleaseDate": "2024-11-04T02:52:21.714Z" @@ -34171,8 +33895,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.131, - "topicSearchString": "react-native masked-view hacktoberfest" + "popularity": 0.202, + "topicSearchString": "masked-view hacktoberfest" }, { "githubUrl": "https://github.com/react-native-linear-gradient/react-native-linear-gradient", @@ -34198,10 +33922,10 @@ "updatedAt": "2025-03-04T00:38:15Z", "createdAt": "2015-03-31T17:44:40Z", "pushedAt": "2025-03-04T00:38:15Z", - "forks": 659, + "forks": 660, "issues": 174, - "subscribers": 44, - "stars": 4940, + "subscribers": 43, + "stars": 4948, "dependencies": 0 }, "name": "react-native-linear-gradient", @@ -34219,26 +33943,26 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-linear-gradient", "npm": { - "downloads": 2264178, - "weekDownloads": 362887, + "downloads": 2265490, + "weekDownloads": 535798, "size": 117996, "latestRelease": "2.8.3", "latestReleaseDate": "2023-09-06T04:29:38.236Z" }, - "score": 70, + "score": 73, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.136, + "popularity": 0.201, "topicSearchString": "" }, { @@ -34273,8 +33997,7 @@ "description": "medium clap animation for react-native & react-native-web", "topics": [ "medium-clap", - "react-component", - "react-native", + "component", "web", "ios", "android" @@ -34289,12 +34012,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-medium-clap", "npm": { - "downloads": 12, + "downloads": 49, "weekDownloads": 0, "size": 847438, "latestRelease": "1.0.1", @@ -34306,7 +34030,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "medium-clap react-component react-native web ios android" + "topicSearchString": "medium-clap component web ios android" }, { "githubUrl": "https://github.com/BonnierNews/react-native-audio-session", @@ -34327,8 +34051,8 @@ "pushedAt": "2020-03-17T13:45:50Z", "forks": 13, "issues": 5, - "subscribers": 104, - "stars": 29, + "subscribers": 103, + "stars": 30, "dependencies": 0 }, "name": "react-native-audio-session", @@ -34336,14 +34060,11 @@ "isPrivate": false, "description": "React Native module for handling the AVAudioSession instance on iOS.", "topics": [ - "react", - "native", "ios", "audio", "avfoundation", "avaudiosession", "bridge", - "react-native", "opensource", "javascript", "objective-c" @@ -34358,13 +34079,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-audio-session", "npm": { - "downloads": 7095, - "weekDownloads": 977, + "downloads": 8062, + "weekDownloads": 2008, "size": 27519, "latestRelease": "0.0.6", "latestReleaseDate": "2020-03-17T13:47:02.454Z" @@ -34375,13 +34097,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.633, - "topicSearchString": "react native ios audio avfoundation avaudiosession bridge react-native opensource javascript objective-c" + "popularity": -0.538, + "topicSearchString": "ios audio avfoundation avaudiosession bridge 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", @@ -34397,9 +34120,9 @@ "createdAt": "2016-11-05T16:07:50Z", "pushedAt": "2024-10-24T21:40:19Z", "forks": 377, - "issues": 189, + "issues": 191, "subscribers": 24, - "stars": 630, + "stars": 631, "dependencies": 1 }, "name": "react-native-twilio-video-webrtc", @@ -34407,7 +34130,6 @@ "isPrivate": false, "description": "Twilio Video (WebRTC) for React Native", "topics": [ - "react-native", "webrtc", "twilio-video", "video-streaming", @@ -34428,12 +34150,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-twilio-video-webrtc", "npm": { - "downloads": 22241, - "weekDownloads": 4079, + "downloads": 20113, + "weekDownloads": 3944, "size": 224465, "latestRelease": "3.2.1", "latestReleaseDate": "2024-10-02T15:39:10.044Z" @@ -34446,8 +34170,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, - "topicSearchString": "react-native webrtc twilio-video video-streaming ios android realtime-video twilio video video-call" + "popularity": 0.167, + "topicSearchString": "webrtc twilio-video video-streaming ios android realtime-video twilio video video-call" }, { "githubUrl": "https://github.com/react-native-webrtc/react-native-callkeep", @@ -34460,6 +34184,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", @@ -34474,10 +34199,10 @@ "updatedAt": "2024-11-18T15:23:41Z", "createdAt": "2018-12-07T14:33:26Z", "pushedAt": "2024-11-18T15:23:41Z", - "forks": 447, - "issues": 307, + "forks": 453, + "issues": 309, "subscribers": 27, - "stars": 1002, + "stars": 1014, "dependencies": 0 }, "name": "react-native-callkeep", @@ -34489,7 +34214,6 @@ "connectionservice", "ios", "android", - "react-native", "voip", "webrtc", "connection-service", @@ -34505,12 +34229,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-callkeep", "npm": { - "downloads": 36233, - "weekDownloads": 5736, + "downloads": 40730, + "weekDownloads": 8050, "size": 262079, "latestRelease": "4.3.16", "latestReleaseDate": "2024-11-18T15:23:52.404Z" @@ -34523,13 +34248,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.135, - "topicSearchString": "callkit connectionservice ios android react-native voip webrtc connection-service call-kit" + "popularity": 0.168, + "topicSearchString": "callkit connectionservice ios android 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", @@ -34541,13 +34267,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-05T10:02:43Z", + "updatedAt": "2025-10-09T14:48:21Z", "createdAt": "2015-09-27T10:57:30Z", - "pushedAt": "2025-09-05T10:02:43Z", - "forks": 1100, - "issues": 32, - "subscribers": 122, - "stars": 4860, + "pushedAt": "2025-10-09T14:48:21Z", + "forks": 1105, + "issues": 28, + "subscribers": 120, + "stars": 4886, "dependencies": 3 }, "name": "react-native-webrtc", @@ -34555,12 +34281,10 @@ "isPrivate": false, "description": "The WebRTC module for React Native", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", - "webrtc", - "react" + "webrtc" ], "license": { "key": "mit", @@ -34572,15 +34296,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-webrtc", "npm": { - "downloads": 194154, - "weekDownloads": 36312, - "size": 1161321, - "latestRelease": "124.0.6", - "latestReleaseDate": "2025-07-28T09:19:01.854Z" + "downloads": 176992, + "weekDownloads": 39165, + "size": 1161750, + "latestRelease": "124.0.7", + "latestReleaseDate": "2025-10-09T14:50:48.961Z" }, "score": 97, "matchingScoreModifiers": [ @@ -34590,8 +34315,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.159, - "topicSearchString": "react-component react-native ios android webrtc react" + "popularity": 0.188, + "topicSearchString": "component ios android webrtc" }, { "githubUrl": "https://github.com/react-native-webrtc/react-native-incall-manager", @@ -34611,10 +34336,10 @@ "updatedAt": "2025-04-30T16:01:47Z", "createdAt": "2016-04-12T08:56:36Z", "pushedAt": "2025-04-30T16:01:47Z", - "forks": 186, - "issues": 96, - "subscribers": 16, - "stars": 583, + "forks": 187, + "issues": 98, + "subscribers": 15, + "stars": 586, "dependencies": 0 }, "name": "react-native-incall-manager", @@ -34622,7 +34347,6 @@ "isPrivate": false, "description": "Handling media-routes/sensors/events during a audio/video chat on React Native", "topics": [ - "react", "reactnative", "webrtc", "phone", @@ -34642,12 +34366,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-incall-manager", "npm": { - "downloads": 117868, - "weekDownloads": 22391, + "downloads": 84764, + "weekDownloads": 19877, "size": 221900, "latestRelease": "4.2.1", "latestReleaseDate": "2025-04-30T16:05:34.429Z" @@ -34659,8 +34384,8 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.161, - "topicSearchString": "react reactnative webrtc phone call incall talk sip voip" + "popularity": 0.199, + "topicSearchString": "reactnative webrtc phone call incall talk sip voip" }, { "githubUrl": "https://github.com/react-native-webrtc/react-native-voip-push-notification", @@ -34680,9 +34405,9 @@ "createdAt": "2016-04-20T10:38:44Z", "pushedAt": "2025-04-30T16:22:34Z", "forks": 82, - "issues": 15, - "subscribers": 12, - "stars": 228, + "issues": 16, + "subscribers": 11, + "stars": 232, "dependencies": 0 }, "name": "react-native-voip-push-notification", @@ -34700,12 +34425,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-voip-push-notification", "npm": { - "downloads": 31796, - "weekDownloads": 5150, + "downloads": 30638, + "weekDownloads": 6959, "size": 37297, "latestRelease": "3.3.3", "latestReleaseDate": "2025-04-30T16:24:49.512Z" @@ -34715,7 +34441,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.138, + "popularity": 0.193, "topicSearchString": "" }, { @@ -34726,6 +34452,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/zoontek/react-native-bootsplash", @@ -34737,13 +34464,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-07T14:49:08Z", + "updatedAt": "2025-09-27T06:12:50Z", "createdAt": "2019-07-02T10:45:52Z", - "pushedAt": "2025-09-07T14:49:08Z", - "forks": 269, - "issues": 7, - "subscribers": 18, - "stars": 4027, + "pushedAt": "2025-09-27T06:12:50Z", + "forks": 270, + "issues": 6, + "subscribers": 17, + "stars": 4051, "dependencies": 14 }, "name": "react-native-bootsplash", @@ -34752,15 +34479,13 @@ "description": "🚀 Show a splash screen during app startup. Hide it when you are ready.", "topics": [ "bootsplash", - "react-native", "boot-splash", "boot-screen", "bootscreen", "splash-screen", "splashscreen", "launch-screen", - "launchscreen", - "react" + "launchscreen" ], "license": { "key": "mit", @@ -34772,26 +34497,27 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-bootsplash", "npm": { - "downloads": 609085, - "weekDownloads": 100944, + "downloads": 545857, + "weekDownloads": 124197, "size": 476944, "latestRelease": "6.3.11", "latestReleaseDate": "2025-09-07T14:50:00.021Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.141, - "topicSearchString": "bootsplash react-native boot-splash boot-screen bootscreen splash-screen splashscreen launch-screen launchscreen react" + "popularity": 0.193, + "topicSearchString": "bootsplash boot-splash boot-screen bootscreen splash-screen splashscreen launch-screen launchscreen" }, { "githubUrl": "https://github.com/jk-gan/redux-flipper", @@ -34825,7 +34551,6 @@ "topics": [ "redux", "redux-middleware", - "react-native", "flipper", "hacktoberfest" ], @@ -34839,12 +34564,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "redux-flipper", "npm": { - "downloads": 70353, - "weekDownloads": 13347, + "downloads": 62300, + "weekDownloads": 14839, "size": 10583, "latestRelease": "2.0.3", "latestReleaseDate": "2024-03-05T14:13:36.204Z" @@ -34855,8 +34581,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, - "topicSearchString": "redux redux-middleware react-native flipper hacktoberfest" + "popularity": 0.202, + "topicSearchString": "redux redux-middleware flipper hacktoberfest" }, { "githubUrl": "https://github.com/wKovacs64/react-native-responsive-image-view", @@ -34877,13 +34603,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-09T14:03:51Z", + "updatedAt": "2025-10-20T21:50:02Z", "createdAt": "2017-12-11T21:41:45Z", - "pushedAt": "2025-09-09T14:03:51Z", + "pushedAt": "2025-10-20T21:50:02Z", "forks": 11, "issues": 1, - "subscribers": 4, - "stars": 395, + "subscribers": 3, + "stars": 397, "dependencies": 0 }, "name": "react-native-responsive-image-view", @@ -34891,8 +34617,6 @@ "isPrivate": false, "description": "React Native component for scaling an Image within the parent View", "topics": [ - "react", - "react-native", "responsive", "flexible", "fit", @@ -34913,12 +34637,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-responsive-image-view", "npm": { - "downloads": 2006, - "weekDownloads": 239, + "downloads": 1235, + "weekDownloads": 324, "size": 51788, "latestRelease": "3.0.0", "latestReleaseDate": "2025-02-27T05:56:38.133Z" @@ -34929,8 +34654,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.101, - "topicSearchString": "react react-native responsive flexible fit aspect-ratio image view hook component responsive-images" + "popularity": 0.223, + "topicSearchString": "responsive flexible fit aspect-ratio image view hook component responsive-images" }, { "githubUrl": "https://github.com/osamaqarem/react-native-image-colors", @@ -34962,7 +34687,7 @@ "forks": 40, "issues": 1, "subscribers": 8, - "stars": 769, + "stars": 777, "dependencies": 1 }, "name": "react-native-image-colors", @@ -34971,13 +34696,11 @@ "registry": "https://registry.npmjs.org", "description": "Fetch prominent colors from an image.", "topics": [ - "react-native", "expo", "image-colors", "rnimagecolors", "ios", "android", - "react", "image", "dominant", "average", @@ -34994,24 +34717,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "react-native-image-colors", "npm": { - "downloads": 110635, - "weekDownloads": 15598, + "downloads": 94438, + "weekDownloads": 22190, "size": 73755, "latestRelease": "2.5.0", "latestReleaseDate": "2025-07-07T19:02:10.281Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.12, - "topicSearchString": "react-native expo image-colors rnimagecolors ios android react image dominant average color palette" + "popularity": 0.2, + "topicSearchString": "expo image-colors rnimagecolors ios android image dominant average color palette" }, { "githubUrl": "https://github.com/torgeadelin/react-native-animated-nav-tab-bar", @@ -35041,10 +34765,10 @@ "updatedAt": "2025-05-26T17:18:35Z", "createdAt": "2019-06-28T09:32:15Z", "pushedAt": "2025-05-26T17:18:35Z", - "forks": 103, - "issues": 4, + "forks": 104, + "issues": 3, "subscribers": 8, - "stars": 1047, + "stars": 1057, "dependencies": 0 }, "name": "react-native-animated-nav-tab-bar", @@ -35052,10 +34776,7 @@ "isPrivate": false, "description": "A simple and customisable React Native component that implements an animated bottom tab bar for React Navigation.", "topics": [ - "react", - "react-native", - "react-component", - "react-navigation", + "component", "navigation", "ios", "android", @@ -35074,12 +34795,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-nav-tab-bar", "npm": { - "downloads": 2171, - "weekDownloads": 278, + "downloads": 2689, + "weekDownloads": 600, "size": 94801, "latestRelease": "3.1.13", "latestReleaseDate": "2025-05-26T17:18:10.403Z" @@ -35090,8 +34812,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.109, - "topicSearchString": "react react-native react-component react-navigation navigation ios android tab tab-bar bar animation" + "popularity": 0.19, + "topicSearchString": "component navigation ios android tab tab-bar bar animation" }, { "githubUrl": "https://github.com/expo/expo-2d-context", @@ -35114,7 +34836,7 @@ "pushedAt": "2025-01-15T00:22:10Z", "forks": 8, "issues": 18, - "subscribers": 15, + "subscribers": 14, "stars": 115, "dependencies": 10 }, @@ -35133,12 +34855,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-2d-context", "npm": { - "downloads": 160379, - "weekDownloads": 31794, + "downloads": 141325, + "weekDownloads": 33752, "size": 2344108, "latestRelease": "0.0.4", "latestReleaseDate": "2023-11-17T10:16:54.752Z" @@ -35149,7 +34872,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.203, "topicSearchString": "" }, { @@ -35177,9 +34900,9 @@ "createdAt": "2016-11-29T10:50:53Z", "pushedAt": "2024-09-24T11:12:01Z", "forks": 574, - "issues": 74, + "issues": 75, "subscribers": 32, - "stars": 3597, + "stars": 3612, "dependencies": 9 }, "name": "react-native-render-html", @@ -35187,8 +34910,7 @@ "isPrivate": false, "description": "The hackable, full-featured Open Source HTML rendering solution for React Native.", "topics": [ - "react-native", - "react-component", + "component", "component", "html", "render-html" @@ -35203,25 +34925,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1336159, - "weekDownloads": 201883, + "downloads": 1387448, + "weekDownloads": 330674, "size": 783354, "latestRelease": "6.3.4", "latestReleaseDate": "2022-01-24T14:00:18.189Z" }, - "score": 81, + "score": 70, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", + "Lots of open issues", "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.128, - "topicSearchString": "react-native react-component component html render-html" + "popularity": 0.203, + "topicSearchString": "component component html render-html" }, { "githubUrl": "https://github.com/FaridSafi/react-native-gifted-chat", @@ -35244,13 +34968,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-28T23:12:22Z", + "updatedAt": "2025-09-23T12:09:58Z", "createdAt": "2015-11-14T15:45:34Z", - "pushedAt": "2025-08-28T23:12:22Z", - "forks": 3386, - "issues": 229, + "pushedAt": "2025-09-23T12:09:58Z", + "forks": 3387, + "issues": 231, "subscribers": 190, - "stars": 14056, + "stars": 14101, "dependencies": 8 }, "name": "react-native-gifted-chat", @@ -35260,13 +34984,10 @@ "topics": [ "android", "ios", - "react-native", - "react", - "react-component", + "component", "messenger", "message", - "chat", - "component" + "chat" ], "license": { "key": "mit", @@ -35278,12 +34999,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gifted-chat", "npm": { - "downloads": 249955, - "weekDownloads": 41934, + "downloads": 250995, + "weekDownloads": 60940, "size": 393304, "latestRelease": "2.8.1", "latestReleaseDate": "2025-03-27T12:33:56.579Z" @@ -35297,8 +35019,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.143, - "topicSearchString": "android ios react-native react react-component messenger message chat component" + "popularity": 0.206, + "topicSearchString": "android ios component messenger message chat" }, { "githubUrl": "https://github.com/shoutem/ui", @@ -35322,8 +35044,8 @@ "pushedAt": "2025-08-18T10:09:27Z", "forks": 437, "issues": 103, - "subscribers": 87, - "stars": 4952, + "subscribers": 86, + "stars": 4957, "dependencies": 35 }, "name": "@shoutem/ui", @@ -35332,10 +35054,9 @@ "description": "Customizable set of components for React Native applications", "topics": [ "shoutem-ui", - "react-native", "ios", "android", - "native-components", + "components", "shoutem" ], "license": { @@ -35348,11 +35069,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3749, - "weekDownloads": 615, + "downloads": 4895, + "weekDownloads": 668, "size": 1903805, "latestRelease": "8.2.7", "latestReleaseDate": "2025-08-18T10:13:37.422Z" @@ -35365,8 +35087,8 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.139, - "topicSearchString": "shoutem-ui react-native ios android native-components shoutem" + "popularity": 0.116, + "topicSearchString": "shoutem-ui ios android components shoutem" }, { "githubUrl": "https://github.com/iamacup/react-native-markdown-display", @@ -35388,10 +35110,10 @@ "updatedAt": "2023-12-11T13:45:18Z", "createdAt": "2019-10-29T12:10:24Z", "pushedAt": "2023-12-11T13:45:18Z", - "forks": 197, + "forks": 201, "issues": 45, "subscribers": 6, - "stars": 741, + "stars": 756, "dependencies": 4 }, "name": "react-native-markdown-display", @@ -35399,9 +35121,6 @@ "isPrivate": false, "description": "React Native 100% compatible CommonMark renderer", "topics": [ - "react", - "react-native", - "native", "markdown", "commonmark", "markdown-it" @@ -35416,12 +35135,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-markdown-display", "npm": { - "downloads": 1120936, - "weekDownloads": 182622, + "downloads": 1015973, + "weekDownloads": 236765, "size": 69674, "latestRelease": "7.0.2", "latestReleaseDate": "2023-12-11T12:07:20.703Z" @@ -35433,8 +35153,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.138, - "topicSearchString": "react react-native native markdown commonmark markdown-it" + "popularity": 0.198, + "topicSearchString": "markdown commonmark markdown-it" }, { "githubUrl": "https://github.com/i18next/react-i18next", @@ -35455,13 +35175,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-28T19:00:34Z", + "updatedAt": "2025-10-21T05:13:11Z", "createdAt": "2015-12-12T12:52:11Z", - "pushedAt": "2025-08-28T19:00:34Z", - "forks": 1037, - "issues": 4, - "subscribers": 46, - "stars": 9712, + "pushedAt": "2025-10-21T05:13:11Z", + "forks": 1036, + "issues": 5, + "subscribers": 45, + "stars": 9760, "dependencies": 2 }, "name": "react-i18next", @@ -35476,9 +35196,7 @@ "localization", "l10n", "globalization", - "react", "reactjs", - "react-native", "ssr" ], "license": { @@ -35491,26 +35209,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-i18next", "npm": { - "downloads": 26510601, - "weekDownloads": 4397769, - "size": 334813, - "latestRelease": "15.7.3", - "latestReleaseDate": "2025-08-28T19:00:55.376Z" + "downloads": 26293384, + "weekDownloads": 5945218, + "size": 835122, + "latestRelease": "16.1.3", + "latestReleaseDate": "2025-10-21T05:13:31.231Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.141, - "topicSearchString": "i18next internationalization i18n translation localization l10n globalization react reactjs react-native ssr" + "popularity": 0.192, + "topicSearchString": "i18next internationalization i18n translation localization l10n globalization reactjs ssr" }, { "githubUrl": "https://github.com/APSL/react-native-keyboard-aware-scroll-view", @@ -35531,10 +35249,10 @@ "updatedAt": "2021-11-04T10:02:03Z", "createdAt": "2015-10-20T18:22:34Z", "pushedAt": "2021-11-04T10:02:03Z", - "forks": 577, + "forks": 575, "issues": 165, - "subscribers": 43, - "stars": 5355, + "subscribers": 42, + "stars": 5367, "dependencies": 2 }, "name": "react-native-keyboard-aware-scroll-view", @@ -35542,15 +35260,13 @@ "isPrivate": false, "description": "A ScrollView component that handles keyboard appearance and automatically scrolls to focused TextInput.", "topics": [ - "react", - "react-native", "scrollview", "keyboard", "ios", "android", - "react-component", + "component", "scroll-view", - "react-components", + "components", "scrollview-component" ], "license": { @@ -35563,13 +35279,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-keyboard-aware-scroll-view", "npm": { - "downloads": 1498104, - "weekDownloads": 248886, + "downloads": 1533078, + "weekDownloads": 355839, "size": 56793, "latestRelease": "0.9.5", "latestReleaseDate": "2021-11-04T10:02:02.898Z" @@ -35583,8 +35300,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, - "topicSearchString": "react react-native scrollview keyboard ios android react-component scroll-view react-components scrollview-component" + "popularity": -0.553, + "topicSearchString": "scrollview keyboard ios android component scroll-view components scrollview-component" }, { "githubUrl": "https://github.com/slorber/react-native-scroll-into-view", @@ -35607,8 +35324,8 @@ "pushedAt": "2021-11-04T09:36:39Z", "forks": 15, "issues": 11, - "subscribers": 6, - "stars": 421, + "subscribers": 5, + "stars": 420, "dependencies": 1 }, "name": "react-native-scroll-into-view", @@ -35616,8 +35333,6 @@ "isPrivate": false, "description": "Scroll a ReactNative View into the visible screen. Similar to DOMElement.scrollIntoView() browser function.", "topics": [ - "react-native", - "react", "scrollintoview", "form", "scroll", @@ -35636,13 +35351,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-scroll-into-view", "npm": { - "downloads": 24845, - "weekDownloads": 4450, + "downloads": 18773, + "weekDownloads": 4524, "size": 53365, "latestRelease": "2.0.2", "latestReleaseDate": "2021-11-04T09:36:37.395Z" @@ -35653,8 +35369,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, - "topicSearchString": "react-native react scrollintoview form scroll into view expo visible" + "popularity": -0.545, + "topicSearchString": "scrollintoview form scroll into view expo visible" }, { "githubUrl": "https://github.com/nirsky/react-native-size-matters", @@ -35679,10 +35395,10 @@ "updatedAt": "2023-10-03T09:22:03Z", "createdAt": "2017-11-21T09:44:14Z", "pushedAt": "2023-10-03T09:22:03Z", - "forks": 150, + "forks": 151, "issues": 3, "subscribers": 14, - "stars": 2468, + "stars": 2477, "dependencies": 0 }, "name": "react-native-size-matters", @@ -35691,7 +35407,6 @@ "description": "A lightweight, zero-dependencies, React-Native utility belt for scaling the size of your apps UI across different sized devices.", "topics": [ "javascript", - "react-native", "scaling", "tablet" ], @@ -35705,12 +35420,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-size-matters", "npm": { - "downloads": 969875, - "weekDownloads": 150374, + "downloads": 1019027, + "weekDownloads": 242049, "size": 13888, "latestRelease": "0.4.2", "latestReleaseDate": "2023-10-03T09:23:44.732Z" @@ -35722,8 +35439,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.132, - "topicSearchString": "javascript react-native scaling tablet" + "popularity": -0.548, + "topicSearchString": "javascript scaling tablet" }, { "githubUrl": "https://github.com/expo/react-native-action-sheet", @@ -35751,10 +35468,10 @@ "updatedAt": "2025-02-25T15:46:44Z", "createdAt": "2015-12-15T21:24:33Z", "pushedAt": "2025-02-25T15:46:44Z", - "forks": 208, - "issues": 21, - "subscribers": 9, - "stars": 1534, + "forks": 209, + "issues": 25, + "subscribers": 8, + "stars": 1541, "dependencies": 2 }, "name": "@expo/react-native-action-sheet", @@ -35763,7 +35480,6 @@ "description": "A cross-platform ActionSheet for React Native", "topics": [ "expo", - "react-native", "action-sheet", "hacktoberfest", "android", @@ -35780,11 +35496,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 945706, - "weekDownloads": 205817, + "downloads": 845883, + "weekDownloads": 195329, "size": 176556, "latestRelease": "4.1.1", "latestReleaseDate": "2025-02-25T15:47:52.661Z" @@ -35796,8 +35513,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.185, - "topicSearchString": "expo react-native action-sheet hacktoberfest android ios actionsheet" + "popularity": 0.196, + "topicSearchString": "expo action-sheet hacktoberfest android ios actionsheet" }, { "githubUrl": "https://github.com/peacechen/react-native-modal-selector", @@ -35832,7 +35549,6 @@ "isPrivate": false, "description": "A cross-platform (iOS / Android), selector/picker component for React Native that is highly customizable and supports sections.", "topics": [ - "react-native", "dropdown", "popover", "select", @@ -35840,7 +35556,7 @@ "modal", "ios", "android", - "react-component" + "component" ], "license": { "key": "mit", @@ -35852,13 +35568,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modal-selector", "npm": { - "downloads": 676514, - "weekDownloads": 101123, + "downloads": 675433, + "weekDownloads": 166826, "size": 43369, "latestRelease": "2.1.2", "latestReleaseDate": "2022-10-24T18:37:31.684Z" @@ -35870,8 +35587,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.623, - "topicSearchString": "react-native dropdown popover select picker modal ios android react-component" + "popularity": -0.54, + "topicSearchString": "dropdown popover select picker modal ios android component" }, { "githubUrl": "https://github.com/JesperLekland/react-native-svg-charts", @@ -35903,9 +35620,9 @@ "createdAt": "2017-10-30T09:28:29Z", "pushedAt": "2020-04-14T18:49:24Z", "forks": 408, - "issues": 187, + "issues": 188, "subscribers": 15, - "stars": 2392, + "stars": 2395, "dependencies": 5 }, "name": "react-native-svg-charts", @@ -35913,10 +35630,7 @@ "isPrivate": false, "description": "📈 One library to rule all charts for React Native 📊", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -35936,13 +35650,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-svg-charts", "npm": { - "downloads": 284436, - "weekDownloads": 36932, + "downloads": 349117, + "weekDownloads": 88805, "size": 417079, "latestRelease": "5.4.0", "latestReleaseDate": "2020-04-14T19:04:09.736Z" @@ -35955,8 +35670,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.64, - "topicSearchString": "react-native react-component component react mobile ios android vector charts chart d3 svg" + "popularity": -0.534, + "topicSearchString": "component mobile ios android vector charts chart d3 svg" }, { "githubUrl": "https://github.com/software-mansion/react-native-svg", @@ -35991,13 +35706,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T08:45:01Z", + "updatedAt": "2025-10-20T09:30:45Z", "createdAt": "2016-01-17T14:29:21Z", - "pushedAt": "2025-09-11T08:45:01Z", - "forks": 1094, - "issues": 168, - "subscribers": 100, - "stars": 7827, + "pushedAt": "2025-10-20T09:30:45Z", + "forks": 1098, + "issues": 152, + "subscribers": 99, + "stars": 7865, "dependencies": 3 }, "name": "react-native-svg", @@ -36005,8 +35720,7 @@ "isPrivate": false, "description": "SVG library for React Native, React Native Web, and plain React web projects.", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "windows", @@ -36025,15 +35739,17 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-svg", "npm": { - "downloads": 7794057, - "weekDownloads": 1314094, - "size": 4072314, - "latestRelease": "15.13.0", - "latestReleaseDate": "2025-09-09T09:40:39.881Z" + "downloads": 8157793, + "weekDownloads": 1883834, + "size": 4051495, + "latestRelease": "15.14.0", + "latestReleaseDate": "2025-10-08T11:24:46.729Z" }, "score": 89, "matchingScoreModifiers": [ @@ -36043,8 +35759,8 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.143, - "topicSearchString": "react-component react-native ios android windows svg art vml gradient" + "popularity": 0.196, + "topicSearchString": "component ios android windows svg art vml gradient" }, { "githubUrl": "https://github.com/dooboolab/react-native-iap", @@ -36054,6 +35770,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/hyochan/react-native-iap", @@ -36065,13 +35782,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-13T02:25:42Z", + "updatedAt": "2025-10-20T13:22:56Z", "createdAt": "2017-10-22T00:31:20Z", - "pushedAt": "2025-09-13T02:25:42Z", - "forks": 651, - "issues": 220, - "subscribers": 37, - "stars": 3075, + "pushedAt": "2025-10-20T13:22:56Z", + "forks": 661, + "issues": 4, + "subscribers": 36, + "stars": 3113, "dependencies": 0 }, "name": "react-native-iap", @@ -36080,7 +35797,6 @@ "registry": "https://registry.npmjs.org/", "description": "In App Purchase module for React Native that confirms OpenIAP", "topics": [ - "react-native", "nitro", "amazon", "android", @@ -36101,27 +35817,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "nitro" }, "npmPkg": "react-native-iap", "npm": { - "downloads": 242392, - "weekDownloads": 42158, - "size": 946417, - "latestRelease": "14.3.0", - "latestReleaseDate": "2025-09-13T02:00:34.876Z" + "downloads": 225995, + "weekDownloads": 49573, + "size": 1618054, + "latestRelease": "14.4.26", + "latestReleaseDate": "2025-10-20T13:23:28.976Z" }, - "score": 86, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.148, - "topicSearchString": "react-native nitro amazon android appstore billing iap in-app-purchase ios playstore" + "popularity": 0.186, + "topicSearchString": "nitro amazon android appstore billing iap in-app-purchase ios playstore" }, { "githubUrl": "https://github.com/mientjan/react-native-markdown-renderer", @@ -36142,10 +35858,10 @@ "updatedAt": "2018-06-19T12:48:01Z", "createdAt": "2017-07-06T21:20:25Z", "pushedAt": "2018-06-19T12:48:01Z", - "forks": 165, + "forks": 164, "issues": 61, "subscribers": 7, - "stars": 438, + "stars": 440, "dependencies": 5 }, "name": "react-native-markdown-renderer", @@ -36153,9 +35869,6 @@ "isPrivate": false, "description": "React Native 100% compatible CommonMark renderer", "topics": [ - "react", - "react-native", - "native", "markdown", "commonmark", "markdown-it" @@ -36170,13 +35883,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-markdown-renderer", "npm": { - "downloads": 43255, - "weekDownloads": 6753, + "downloads": 43524, + "weekDownloads": 8456, "size": 185087, "latestRelease": "3.2.8", "latestReleaseDate": "2018-06-18T14:34:39.503Z" @@ -36187,8 +35901,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, - "topicSearchString": "react react-native native markdown commonmark markdown-it" + "popularity": -0.585, + "topicSearchString": "markdown commonmark markdown-it" }, { "githubUrl": "https://github.com/react-native-device-info/react-native-device-info", @@ -36212,13 +35926,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-02-03T21:09:59Z", + "updatedAt": "2025-09-17T13:15:29Z", "createdAt": "2015-09-16T14:06:22Z", - "pushedAt": "2025-02-03T21:09:59Z", - "forks": 1412, - "issues": 8, + "pushedAt": "2025-09-17T13:15:29Z", + "forks": 1410, + "issues": 4, "subscribers": 73, - "stars": 6613, + "stars": 6626, "dependencies": 0 }, "name": "react-native-device-info", @@ -36226,8 +35940,7 @@ "isPrivate": false, "description": "Device Information for React Native iOS and Android", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "windows", @@ -36246,26 +35959,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-device-info", "npm": { - "downloads": 3328006, - "weekDownloads": 536412, - "size": 715685, - "latestRelease": "14.0.4", - "latestReleaseDate": "2025-02-03T21:10:13.716Z" + "downloads": 3220783, + "weekDownloads": 768419, + "size": 719615, + "latestRelease": "14.1.1", + "latestReleaseDate": "2025-09-17T13:15:43.446Z" }, - "score": 81, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Not updated recently", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.137, - "topicSearchString": "react-component react-native ios android windows device events cocoapod hacktoberfest" + "popularity": 0.203, + "topicSearchString": "component ios android windows device events cocoapod hacktoberfest" }, { "githubUrl": "https://github.com/zo0r/react-native-push-notification", @@ -36286,9 +35998,9 @@ "updatedAt": "2021-12-20T14:47:41Z", "createdAt": "2015-12-14T19:53:36Z", "pushedAt": "2021-12-20T14:47:41Z", - "forks": 1852, + "forks": 1849, "issues": 149, - "subscribers": 95, + "subscribers": 94, "stars": 6788, "dependencies": 0 }, @@ -36297,8 +36009,7 @@ "isPrivate": false, "description": "React Native Local and Remote Notifications", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "notifications", @@ -36317,12 +36028,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-push-notification", "npm": { - "downloads": 332376, - "weekDownloads": 56271, + "downloads": 315859, + "weekDownloads": 73063, "size": 279032, "latestRelease": "8.1.1", "latestReleaseDate": "2021-10-01T14:22:43.183Z" @@ -36336,8 +36048,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, - "topicSearchString": "react-component react-native ios android notifications push apns firebase push-notifications" + "popularity": -0.553, + "topicSearchString": "component ios android notifications push apns firebase push-notifications" }, { "githubUrl": "https://github.com/zmxv/react-native-sound", @@ -36355,13 +36067,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-14T16:36:35Z", + "updatedAt": "2025-10-15T12:29:36Z", "createdAt": "2015-10-19T06:22:23Z", - "pushedAt": "2025-07-14T16:36:35Z", - "forks": 711, - "issues": 334, - "subscribers": 38, - "stars": 2857, + "pushedAt": "2025-10-15T12:29:36Z", + "forks": 714, + "issues": 236, + "subscribers": 39, + "stars": 2865, "dependencies": 0 }, "name": "react-native-sound", @@ -36369,7 +36081,6 @@ "isPrivate": false, "description": "React Native module for playing sound clips", "topics": [ - "react-native", "sound", "audio", "ios", @@ -36386,26 +36097,28 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-sound", "npm": { - "downloads": 444400, - "weekDownloads": 72234, - "size": 87930, - "latestRelease": "0.12.0", - "latestReleaseDate": "2025-07-14T16:40:11.602Z" + "downloads": 396613, + "weekDownloads": 95451, + "size": 94449, + "latestRelease": "0.13.0", + "latestReleaseDate": "2025-10-15T12:51:49.628Z" }, - "score": 81, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.138, - "topicSearchString": "react-native sound audio ios android windows" + "popularity": 0.205, + "topicSearchString": "sound audio ios android windows" }, { "githubUrl": "https://github.com/codemotionapps/react-native-dark-mode/tree/master/library", @@ -36432,8 +36145,8 @@ "pushedAt": "2020-04-28T14:55:13Z", "forks": 36, "issues": 0, - "subscribers": 7, - "stars": 365, + "subscribers": 6, + "stars": 366, "dependencies": 6 }, "name": "react-native-dark-mode", @@ -36451,11 +36164,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 3847, - "weekDownloads": 819, + "downloads": 3639, + "weekDownloads": 590, "size": 107438, "latestRelease": "0.2.2", "latestReleaseDate": "2020-01-23T11:08:41.458Z" @@ -36466,7 +36180,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.569, + "popularity": -0.612, "topicSearchString": "" }, { @@ -36497,10 +36211,10 @@ "updatedAt": "2022-10-31T01:41:06Z", "createdAt": "2017-04-13T04:13:44Z", "pushedAt": "2022-10-31T01:41:06Z", - "forks": 1323, - "issues": 411, - "subscribers": 60, - "stars": 8388, + "forks": 1324, + "issues": 412, + "subscribers": 58, + "stars": 8398, "dependencies": 0 }, "name": "react-native-fast-image", @@ -36513,7 +36227,6 @@ "fastimage", "image", "priority", - "react-native", "sdwebimage", "glide", "image-cache", @@ -36530,12 +36243,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fast-image", "npm": { - "downloads": 859446, - "weekDownloads": 145022, + "downloads": 701970, + "weekDownloads": 164492, "size": 104363, "latestRelease": "8.6.3", "latestReleaseDate": "2022-10-31T01:41:09.853Z" @@ -36549,8 +36263,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, - "topicSearchString": "cache cached fastimage image priority react-native sdwebimage glide image-cache cocoapod hacktoberfest" + "popularity": -0.551, + "topicSearchString": "cache cached fastimage image priority sdwebimage glide image-cache cocoapod hacktoberfest" }, { "githubUrl": "https://github.com/ascoders/react-native-image-viewer", @@ -36578,10 +36292,10 @@ "updatedAt": "2020-05-19T21:35:09Z", "createdAt": "2016-09-13T13:43:44Z", "pushedAt": "2020-05-19T21:35:09Z", - "forks": 530, + "forks": 529, "issues": 154, - "subscribers": 21, - "stars": 2448, + "subscribers": 20, + "stars": 2449, "dependencies": 1 }, "name": "react-native-image-zoom-viewer", @@ -36590,8 +36304,7 @@ "description": "🚀 tiny & fast lib for react native image viewer pan and zoom", "topics": [ "image-viewer", - "react-native", - "react-component" + "component" ], "license": { "key": "mit", @@ -36603,11 +36316,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 348446, - "weekDownloads": 106141, + "downloads": 217380, + "weekDownloads": 49732, "size": 116564, "latestRelease": "3.0.1", "latestReleaseDate": "2020-05-19T21:36:02.689Z" @@ -36620,8 +36334,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.241, - "topicSearchString": "image-viewer react-native react-component" + "popularity": -0.556, + "topicSearchString": "image-viewer component" }, { "githubUrl": "https://github.com/sohobloo/react-native-modal-dropdown", @@ -36642,10 +36356,10 @@ "updatedAt": "2019-09-26T08:17:13Z", "createdAt": "2016-09-13T10:17:51Z", "pushedAt": "2019-09-26T08:17:13Z", - "forks": 425, + "forks": 426, "issues": 83, "subscribers": 11, - "stars": 1209, + "stars": 1212, "dependencies": 2 }, "name": "react-native-modal-dropdown", @@ -36653,9 +36367,6 @@ "isPrivate": false, "description": "A react-native dropdown/picker/selector component for both Android & iOS.", "topics": [ - "react", - "react-component", - "react-native", "component", "ios", "android", @@ -36676,13 +36387,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modal-dropdown", "npm": { - "downloads": 25784, - "weekDownloads": 4367, + "downloads": 25000, + "weekDownloads": 5908, "size": 1736393, "latestRelease": "1.0.2", "latestReleaseDate": "2021-09-15T09:09:23.529Z" @@ -36695,8 +36407,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.606, - "topicSearchString": "react react-component react-native component ios android modal dropdown picker select selector option" + "popularity": -0.549, + "topicSearchString": "component ios android modal dropdown picker select selector option" }, { "githubUrl": "https://github.com/listenzz/react-native-modal-translucent", @@ -36726,7 +36438,6 @@ "isPrivate": false, "description": "Remove the StatusBar background for Modal on Android", "topics": [ - "react-native", "modal", "translucent", "statusbar" @@ -36741,13 +36452,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modal-translucent", "npm": { - "downloads": 322, - "weekDownloads": 31, + "downloads": 2029, + "weekDownloads": 72, "size": 322343, "latestRelease": "5.0.0", "latestReleaseDate": "2019-11-21T08:06:10.048Z" @@ -36758,8 +36470,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.417, - "topicSearchString": "react-native modal translucent statusbar" + "popularity": -0.72, + "topicSearchString": "modal translucent statusbar" }, { "githubUrl": "https://github.com/Shopify/restyle", @@ -36786,10 +36498,10 @@ "updatedAt": "2025-08-28T07:58:55Z", "createdAt": "2019-09-06T09:39:03Z", "pushedAt": "2025-08-28T07:58:55Z", - "forks": 143, + "forks": 144, "issues": 17, - "subscribers": 266, - "stars": 3258, + "subscribers": 264, + "stars": 3279, "dependencies": 0 }, "name": "@shopify/restyle", @@ -36807,24 +36519,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 149614, - "weekDownloads": 23132, + "downloads": 161412, + "weekDownloads": 36030, "size": 92221, "latestRelease": "2.4.5", "latestReleaseDate": "2025-03-19T21:32:10.619Z" }, - "score": 97, + "score": 92, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.131, + "popularity": 0.19, "topicSearchString": "" }, { @@ -36847,13 +36559,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T11:02:20Z", + "updatedAt": "2025-10-17T10:19:21Z", "createdAt": "2018-06-21T21:15:55Z", - "pushedAt": "2025-09-12T11:02:20Z", - "forks": 104, - "issues": 53, - "subscribers": 17, - "stars": 1036, + "pushedAt": "2025-10-17T10:19:21Z", + "forks": 103, + "issues": 44, + "subscribers": 15, + "stars": 1063, "dependencies": 2 }, "name": "react-native-purchases", @@ -36861,7 +36573,6 @@ "isPrivate": false, "description": "React Native in-app purchases and subscriptions made easy. Support for iOS and Android.", "topics": [ - "react-native", "in-app-purchase", "subscriptions", "iap", @@ -36881,25 +36592,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-purchases", "npm": { - "downloads": 339465, - "weekDownloads": 57182, - "size": 307859, - "latestRelease": "9.4.2", - "latestReleaseDate": "2025-09-11T18:42:44.650Z" + "downloads": 384175, + "weekDownloads": 81456, + "size": 308505, + "latestRelease": "9.5.4", + "latestReleaseDate": "2025-10-10T12:42:12.598Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.143, - "topicSearchString": "react-native in-app-purchase subscriptions iap ios apple android stripe hacktoberfest" + "popularity": 0.18, + "topicSearchString": "in-app-purchase subscriptions iap ios apple android stripe hacktoberfest" }, { "githubUrl": "https://github.com/react-native-checkbox/react-native-checkbox/tree/develop/src", @@ -36941,9 +36652,7 @@ "isPrivate": false, "description": "React Native Checkbox native modules for Android , iOS and Windows", "topics": [ - "checkbox", - "react-native", - "react-native" + "checkbox" ], "license": { "name": "MIT License", @@ -36955,11 +36664,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 459292, - "weekDownloads": 65099, + "downloads": 503468, + "weekDownloads": 124838, "size": 191230, "latestRelease": "0.5.20", "latestReleaseDate": "2025-05-14T02:40:29.617Z" @@ -36970,8 +36680,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.12, - "topicSearchString": "checkbox react-native react-native" + "popularity": 0.211, + "topicSearchString": "checkbox" }, { "githubUrl": "https://github.com/react-native-google-signin/google-signin", @@ -36979,6 +36689,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", @@ -36990,13 +36701,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": 7, - "subscribers": 46, - "stars": 3431, + "issues": 5, + "subscribers": 45, + "stars": 3453, "dependencies": 0 }, "name": "@react-native-google-signin/google-signin", @@ -37005,7 +36716,6 @@ "registry": "https://registry.npmjs.org/", "description": "Google Sign-in for your React Native applications", "topics": [ - "react-native", "google-sign-in", "google-login", "android-creadential-manager", @@ -37028,11 +36738,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 937776, - "weekDownloads": 154643, + "downloads": 909909, + "weekDownloads": 198154, "size": 169379, "latestRelease": "16.0.0", "latestReleaseDate": "2025-09-07T16:33:34.413Z" @@ -37044,8 +36756,8 @@ "Known", "Recently updated" ], - "popularity": 0.14, - "topicSearchString": "react-native google-sign-in google-login android-creadential-manager oauth oauth2 ios android web googlesignin googleauth hacktoberfest" + "popularity": 0.185, + "topicSearchString": "google-sign-in google-login android-creadential-manager oauth oauth2 ios android web googlesignin googleauth hacktoberfest" }, { "githubUrl": "https://github.com/khalisafkari/react-native-kvideo", @@ -37081,9 +36793,7 @@ "topics": [ "ivideo", "video", - "video-play", - "react-video", - "react-native" + "video-play" ], "license": { "name": "MIT License", @@ -37095,13 +36805,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" @@ -37111,8 +36822,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "ivideo video video-play react-video react-native" + "popularity": -1.55, + "topicSearchString": "ivideo video video-play" }, { "githubUrl": "https://github.com/underscopeio/react-native-navigation-hooks", @@ -37135,7 +36846,7 @@ "forks": 19, "issues": 4, "subscribers": 4, - "stars": 255, + "stars": 253, "dependencies": 1 }, "name": "react-native-navigation-hooks", @@ -37153,12 +36864,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-navigation-hooks", "npm": { - "downloads": 16893, - "weekDownloads": 3921, + "downloads": 13255, + "weekDownloads": 3322, "size": 110338, "latestRelease": "6.3.0", "latestReleaseDate": "2021-02-04T13:23:36.143Z" @@ -37169,7 +36881,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.197, + "popularity": 0.213, "topicSearchString": "" }, { @@ -37190,13 +36902,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-11T10:47:37Z", + "updatedAt": "2025-09-29T13:45:11Z", "createdAt": "2017-10-02T22:17:14Z", - "pushedAt": "2025-09-11T10:47:37Z", - "forks": 2132, - "issues": 459, - "subscribers": 203, - "stars": 9549, + "pushedAt": "2025-09-29T13:45:11Z", + "forks": 2136, + "issues": 466, + "subscribers": 202, + "stars": 9560, "dependencies": 8 }, "name": "aws-amplify", @@ -37214,15 +36926,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "aws-amplify", "npm": { - "downloads": 4010743, - "weekDownloads": 686668, + "downloads": 3893249, + "weekDownloads": 856974, "size": 169515, - "latestRelease": "6.15.6", - "latestReleaseDate": "2025-09-11T10:48:16.900Z" + "latestRelease": "6.15.7", + "latestReleaseDate": "2025-09-29T13:45:59.008Z" }, "score": 86, "matchingScoreModifiers": [ @@ -37233,7 +36946,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.187, "topicSearchString": "" }, { @@ -37255,13 +36968,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-11T10:47:37Z", + "updatedAt": "2025-09-29T13:45:11Z", "createdAt": "2017-10-02T22:17:14Z", - "pushedAt": "2025-09-11T10:47:37Z", - "forks": 2132, - "issues": 459, - "subscribers": 203, - "stars": 9549, + "pushedAt": "2025-09-29T13:45:11Z", + "forks": 2136, + "issues": 466, + "subscribers": 202, + "stars": 9560, "dependencies": 7 }, "name": "@aws-amplify/datastore", @@ -37279,14 +36992,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3967276, - "weekDownloads": 679965, - "size": 2795652, - "latestRelease": "5.0.89", - "latestReleaseDate": "2025-09-11T10:48:14.313Z" + "downloads": 3840061, + "weekDownloads": 848195, + "size": 2806091, + "latestRelease": "5.1.0", + "latestReleaseDate": "2025-09-29T13:45:56.536Z" }, "score": 86, "matchingScoreModifiers": [ @@ -37297,7 +37011,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.188, "topicSearchString": "" }, { @@ -37319,13 +37033,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-12T12:16:35Z", + "updatedAt": "2025-10-09T12:10:26Z", "createdAt": "2017-10-02T22:17:14Z", - "pushedAt": "2025-09-12T12:16:35Z", - "forks": 2132, - "issues": 459, - "subscribers": 203, - "stars": 9549, + "pushedAt": "2025-10-09T12:10:26Z", + "forks": 2136, + "issues": 466, + "subscribers": 202, + "stars": 9560, "dependencies": 3 }, "name": "@aws-amplify/react-native", @@ -37343,14 +37057,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 154983, - "weekDownloads": 28544, - "size": 404889, - "latestRelease": "1.1.10", - "latestReleaseDate": "2025-05-27T14:05:49.616Z" + "downloads": 159733, + "weekDownloads": 34313, + "size": 418779, + "latestRelease": "1.2.0", + "latestReleaseDate": "2025-09-29T13:45:40.961Z" }, "score": 86, "matchingScoreModifiers": [ @@ -37361,7 +37076,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.157, + "popularity": 0.183, "topicSearchString": "" }, { @@ -37383,13 +37098,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-11T10:47:37Z", + "updatedAt": "2025-10-21T11:15:38Z", "createdAt": "2017-10-02T22:17:14Z", - "pushedAt": "2025-09-11T10:47:37Z", - "forks": 2132, - "issues": 459, - "subscribers": 203, - "stars": 9549, + "pushedAt": "2025-10-21T11:15:38Z", + "forks": 2136, + "issues": 466, + "subscribers": 202, + "stars": 9560, "dependencies": 3 }, "name": "@aws-amplify/auth", @@ -37407,14 +37122,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4536457, - "weekDownloads": 778238, - "size": 3170334, - "latestRelease": "6.15.1", - "latestReleaseDate": "2025-09-11T10:48:06.245Z" + "downloads": 4389720, + "weekDownloads": 971595, + "size": 3228670, + "latestRelease": "6.16.0", + "latestReleaseDate": "2025-09-29T13:45:46.824Z" }, "score": 86, "matchingScoreModifiers": [ @@ -37425,7 +37141,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.188, "topicSearchString": "" }, { @@ -37445,13 +37161,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-11T10:47:37Z", + "updatedAt": "2025-09-29T13:45:11Z", "createdAt": "2017-10-02T22:17:14Z", - "pushedAt": "2025-09-11T10:47:37Z", - "forks": 2132, - "issues": 459, - "subscribers": 203, - "stars": 9549, + "pushedAt": "2025-09-29T13:45:11Z", + "forks": 2136, + "issues": 466, + "subscribers": 202, + "stars": 9560, "dependencies": 3 }, "name": "@aws-amplify/notifications", @@ -37469,14 +37185,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3440956, - "weekDownloads": 589903, - "size": 743374, - "latestRelease": "2.0.87", - "latestReleaseDate": "2025-09-11T10:48:08.792Z" + "downloads": 3313733, + "weekDownloads": 742035, + "size": 743373, + "latestRelease": "2.0.88", + "latestReleaseDate": "2025-09-29T13:45:49.595Z" }, "score": 86, "matchingScoreModifiers": [ @@ -37487,7 +37204,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.19, "topicSearchString": "" }, { @@ -37509,13 +37226,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-24T11:24:15Z", + "updatedAt": "2025-10-20T14:50:35Z", "createdAt": "2015-09-15T19:36:29Z", - "pushedAt": "2025-08-24T11:24:15Z", - "forks": 583, - "issues": 29, - "subscribers": 70, - "stars": 1340, + "pushedAt": "2025-10-20T14:50:35Z", + "forks": 585, + "issues": 30, + "subscribers": 69, + "stars": 1346, "dependencies": 5 }, "name": "parse", @@ -37543,23 +37260,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 362488, - "weekDownloads": 78521, - "size": 5171388, - "latestRelease": "6.1.1", - "latestReleaseDate": "2025-04-04T02:08:40.580Z" + "downloads": 381421, + "weekDownloads": 78890, + "size": 8253251, + "latestRelease": "7.0.1", + "latestReleaseDate": "2025-10-15T14:57:33.503Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.184, + "popularity": 0.176, "topicSearchString": "cloud mobile api javascript parse-platform parse-js parse javascript-sdk hacktoberfest" }, { @@ -37584,10 +37301,10 @@ "updatedAt": "2022-05-30T23:42:09Z", "createdAt": "2017-10-29T09:09:49Z", "pushedAt": "2022-05-30T23:42:09Z", - "forks": 80, + "forks": 79, "issues": 20, "subscribers": 5, - "stars": 521, + "stars": 519, "dependencies": 0 }, "name": "react-native-material-menu", @@ -37595,15 +37312,12 @@ "isPrivate": false, "description": "Pure JavaScript material menu component for React Native", "topics": [ - "react-native", - "react", "menu", "material-menu", - "react-component", + "component", "material", "dropdown", "material-design", - "component", "ios", "android" ], @@ -37617,13 +37331,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-menu", "npm": { - "downloads": 44971, - "weekDownloads": 8151, + "downloads": 46436, + "weekDownloads": 9486, "size": 25874, "latestRelease": "2.0.0", "latestReleaseDate": "2021-08-23T19:28:17.993Z" @@ -37634,8 +37349,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, - "topicSearchString": "react-native react menu material-menu react-component material dropdown material-design component ios android" + "popularity": -0.576, + "topicSearchString": "menu material-menu component material dropdown material-design ios android" }, { "githubUrl": "https://github.com/MaxGraey/react-native-console-time-polyfill", @@ -37658,8 +37373,8 @@ "pushedAt": "2024-06-18T15:56:47Z", "forks": 5, "issues": 0, - "subscribers": 3, - "stars": 114, + "subscribers": 2, + "stars": 113, "dependencies": 0 }, "name": "react-native-console-time-polyfill", @@ -37667,7 +37382,6 @@ "isPrivate": false, "description": "console.time and console.timeEnd polyfill for react-native", "topics": [ - "react-native", "polyfill", "console", "time", @@ -37688,12 +37402,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-console-time-polyfill", "npm": { - "downloads": 38363, - "weekDownloads": 7539, + "downloads": 28101, + "weekDownloads": 6222, "size": 4887, "latestRelease": "1.2.3", "latestReleaseDate": "2021-04-03T10:00:22.903Z" @@ -37703,8 +37418,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, - "topicSearchString": "react-native polyfill console time timeend performance measurement count countreset measurements" + "popularity": 0.188, + "topicSearchString": "polyfill console time timeend performance measurement count countreset measurements" }, { "githubUrl": "https://github.com/skb1129/react-native-change-icon", @@ -37724,7 +37439,7 @@ "updatedAt": "2023-09-18T15:40:28Z", "createdAt": "2018-12-13T09:29:03Z", "pushedAt": "2023-09-18T15:40:28Z", - "forks": 87, + "forks": 88, "issues": 18, "subscribers": 9, "stars": 521, @@ -37736,7 +37451,6 @@ "registry": "https://registry.npmjs.org/", "description": "Change your application icon programmatically for React Native apps", "topics": [ - "react-native", "ios", "android" ], @@ -37750,24 +37464,26 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, + "unmaintained": true, "npmPkg": "react-native-change-icon", "npm": { - "downloads": 26776, - "weekDownloads": 4649, + "downloads": 20783, + "weekDownloads": 4785, "size": 30999, "latestRelease": "5.0.0", "latestReleaseDate": "2023-08-19T19:29:01.655Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.148, - "topicSearchString": "react-native ios android" + "popularity": -0.554, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/brh55/react-native-open-maps", @@ -37791,7 +37507,7 @@ "forks": 46, "issues": 6, "subscribers": 3, - "stars": 363, + "stars": 362, "dependencies": 1 }, "name": "react-native-open-maps", @@ -37799,7 +37515,6 @@ "isPrivate": false, "description": "🗺 A simple react-native library to perform cross-platform map actions (Google, Apple, or Yandex Maps)", "topics": [ - "react-native", "maps", "open-link", "apple-maps", @@ -37818,13 +37533,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-open-maps", "npm": { - "downloads": 55366, - "weekDownloads": 10836, + "downloads": 57041, + "weekDownloads": 13660, "size": 23336, "latestRelease": "0.4.3", "latestReleaseDate": "2023-07-17T16:02:58.100Z" @@ -37835,8 +37551,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, - "topicSearchString": "react-native maps open-link apple-maps google-maps map-deep-links map-url-scheme linking" + "popularity": -0.546, + "topicSearchString": "maps open-link apple-maps google-maps map-deep-links map-url-scheme linking" }, { "githubUrl": "https://github.com/oblador/react-native-store-review", @@ -37861,8 +37577,8 @@ "pushedAt": "2023-10-26T12:47:39Z", "forks": 51, "issues": 4, - "subscribers": 5, - "stars": 764, + "subscribers": 4, + "stars": 766, "dependencies": 0 }, "name": "react-native-store-review", @@ -37870,10 +37586,7 @@ "isPrivate": false, "description": "Rate on App/Play Store directly in your React Native app", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -37894,25 +37607,26 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-store-review", "npm": { - "downloads": 96156, - "weekDownloads": 16669, + "downloads": 100133, + "weekDownloads": 22254, "size": 23072, "latestRelease": "0.4.3", "latestReleaseDate": "2023-10-26T12:47:21.142Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.147, - "topicSearchString": "react-native react-component component react mobile ios android app-store review rating rate appstore playstore" + "popularity": 0.189, + "topicSearchString": "component mobile ios android app-store review rating rate appstore playstore" }, { "githubUrl": "https://github.com/michalchudziak/react-native-geolocation", @@ -37934,10 +37648,10 @@ "updatedAt": "2024-09-01T08:39:25Z", "createdAt": "2019-03-29T16:41:44Z", "pushedAt": "2024-09-01T08:39:25Z", - "forks": 234, + "forks": 236, "issues": 149, "subscribers": 22, - "stars": 1415, + "stars": 1421, "dependencies": 0 }, "name": "@react-native-community/geolocation", @@ -37945,10 +37659,8 @@ "isPrivate": false, "description": "Geolocation APIs for React Native", "topics": [ - "react-native", "geolocation", "location", - "react", "library" ], "license": { @@ -37961,25 +37673,26 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 758106, - "weekDownloads": 125345, + "downloads": 734453, + "weekDownloads": 167339, "size": 167579, "latestRelease": "3.4.0", "latestReleaseDate": "2024-09-01T08:47:00.956Z" }, - "score": 46, + "score": 49, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.141, - "topicSearchString": "react-native geolocation location react library" + "popularity": 0.194, + "topicSearchString": "geolocation location library" }, { "githubUrl": "https://github.com/react-native-community/react-native-template-typescript", @@ -38000,10 +37713,10 @@ "updatedAt": "2023-06-26T15:21:55Z", "createdAt": "2018-03-05T19:15:51Z", "pushedAt": "2023-06-26T15:21:55Z", - "forks": 370, + "forks": 368, "issues": 9, - "subscribers": 40, - "stars": 1889, + "subscribers": 39, + "stars": 1887, "dependencies": 0 }, "name": "react-native-template-typescript", @@ -38011,7 +37724,6 @@ "isPrivate": false, "description": "👾 Clean and minimalist React Native template for a quick start with TypeScript.", "topics": [ - "react-native", "typescript", "jest", "template", @@ -38027,20 +37739,21 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-template-typescript", - "npm": { - "size": 246653 - }, - "score": 32, + "npm": {}, + "score": 57, "matchingScoreModifiers": [ + "Popular", + "Known", "Not updated recently", "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native typescript jest template boilerplate" + "topicSearchString": "typescript jest template boilerplate" }, { "githubUrl": "https://github.com/react-native-audio-toolkit/react-native-audio-toolkit", @@ -38064,9 +37777,9 @@ "updatedAt": "2021-11-25T09:19:43Z", "createdAt": "2016-06-27T07:13:04Z", "pushedAt": "2021-11-25T09:19:43Z", - "forks": 344, + "forks": 343, "issues": 122, - "subscribers": 20, + "subscribers": 19, "stars": 1077, "dependencies": 3 }, @@ -38075,7 +37788,6 @@ "isPrivate": false, "description": "Cross-platform audio library for React Native", "topics": [ - "react-native", "audio", "audio-toolkit", "reactnative", @@ -38092,12 +37804,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 16538, - "weekDownloads": 2529, + "downloads": 17391, + "weekDownloads": 4292, "size": 123927, "latestRelease": "2.0.3", "latestReleaseDate": "2020-03-23T04:51:00.067Z" @@ -38110,8 +37823,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.62, - "topicSearchString": "react-native audio audio-toolkit reactnative audio-library cross-platform" + "popularity": -0.54, + "topicSearchString": "audio audio-toolkit reactnative audio-library cross-platform" }, { "githubUrl": "https://github.com/rnc-archive/react-native-translucent-modal", @@ -38157,11 +37870,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 5, - "weekDownloads": 2, + "downloads": 16, + "weekDownloads": 4, "size": 24667, "latestRelease": "1.1.0", "latestReleaseDate": "2020-03-25T10:48:32.198Z" @@ -38171,7 +37885,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, + "popularity": -1.483, "topicSearchString": "modal modal-dialog modal-statusbar" }, { @@ -38196,7 +37910,7 @@ "pushedAt": "2020-02-26T02:59:06Z", "forks": 303, "issues": 30, - "subscribers": 40, + "subscribers": 39, "stars": 1890, "dependencies": 1 }, @@ -38205,7 +37919,6 @@ "isPrivate": false, "description": "Navbar component for React Native", "topics": [ - "react-native", "navbar" ], "license": { @@ -38218,12 +37931,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-navbar", "npm": { - "downloads": 1491, - "weekDownloads": 133, + "downloads": 2690, + "weekDownloads": 249, "latestRelease": "2.1.0", "latestReleaseDate": "2017-10-30T09:25:52.018Z" }, @@ -38234,8 +37948,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.674, - "topicSearchString": "react-native navbar" + "popularity": -0.671, + "topicSearchString": "navbar" }, { "githubUrl": "https://github.com/rnc-archive/react-native-platform-touchable", @@ -38268,8 +37982,6 @@ "isPrivate": false, "description": "A wrapper around the various Touchable* components built into React Native core with platform defaults", "topics": [ - "react-native", - "react", "component", "button" ], @@ -38283,12 +37995,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-platform-touchable", "npm": { - "downloads": 15762, - "weekDownloads": 2589, + "downloads": 16024, + "weekDownloads": 3168, "latestRelease": "1.1.1", "latestReleaseDate": "2017-07-01T20:42:09.773Z" }, @@ -38298,8 +38011,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.61, - "topicSearchString": "react-native react component button" + "popularity": -0.582, + "topicSearchString": "component button" }, { "githubUrl": "https://github.com/mpiannucci/react-native-context-menu-view", @@ -38320,13 +38033,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-05-02T15:33:01Z", + "updatedAt": "2025-10-20T14:17:00Z", "createdAt": "2019-10-07T18:39:07Z", - "pushedAt": "2025-05-02T15:33:01Z", - "forks": 71, - "issues": 36, - "subscribers": 9, - "stars": 878, + "pushedAt": "2025-10-20T14:17:00Z", + "forks": 74, + "issues": 38, + "subscribers": 8, + "stars": 892, "dependencies": 0 }, "name": "react-native-context-menu-view", @@ -38334,7 +38047,6 @@ "isPrivate": false, "description": "Use native context menus in React Native", "topics": [ - "react-native", "ios", "android", "javascript", @@ -38350,24 +38062,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-context-menu-view", "npm": { - "downloads": 149906, - "weekDownloads": 19185, - "size": 3412883, - "latestRelease": "1.19.0", - "latestReleaseDate": "2025-05-02T15:26:06.702Z" + "downloads": 84480, + "weekDownloads": 21603, + "size": 59526, + "latestRelease": "1.20.0", + "latestReleaseDate": "2025-09-22T17:40:45.595Z" }, - "score": 68, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.109, - "topicSearchString": "react-native ios android javascript npm" + "popularity": 0.217, + "topicSearchString": "ios android javascript npm" }, { "githubUrl": "https://github.com/githuboftigran/rn-range-slider", @@ -38390,7 +38103,7 @@ "updatedAt": "2022-09-16T07:29:14Z", "createdAt": "2019-01-14T12:37:51Z", "pushedAt": "2022-09-16T07:29:14Z", - "forks": 129, + "forks": 130, "issues": 18, "subscribers": 3, "stars": 247, @@ -38401,10 +38114,6 @@ "isPrivate": false, "description": "A native slider with range", "topics": [ - "react", - "native", - "react-native", - "react-component", "component", "android", "ios", @@ -38423,13 +38132,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-range-slider", "npm": { - "downloads": 66533, - "weekDownloads": 10814, + "downloads": 66430, + "weekDownloads": 15605, "size": 30881, "latestRelease": "2.2.2", "latestReleaseDate": "2022-09-16T07:30:56.624Z" @@ -38440,8 +38150,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, - "topicSearchString": "react native react-native react-component component android ios custom range slider seekbar" + "popularity": -0.55, + "topicSearchString": "component android ios custom range slider seekbar" }, { "githubUrl": "https://github.com/MohamadKh75/react-native-jalali-datepicker", @@ -38473,7 +38183,7 @@ "pushedAt": "2024-04-05T20:50:41Z", "forks": 4, "issues": 1, - "subscribers": 4, + "subscribers": 3, "stars": 86, "dependencies": 1 }, @@ -38482,7 +38192,6 @@ "isPrivate": false, "description": "📅 React Native Jalali DatePicker component for both Android and iOS ✨", "topics": [ - "react-native", "calendar", "date", "datepicker", @@ -38501,11 +38210,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 97, - "weekDownloads": 19, + "downloads": 327, + "weekDownloads": 11, "size": 35839, "latestRelease": "1.1.1", "latestReleaseDate": "2020-11-06T13:51:41.896Z" @@ -38515,8 +38225,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.577, - "topicSearchString": "react-native calendar date datepicker jalali jalaali shamsi persian" + "popularity": -0.721, + "topicSearchString": "calendar date datepicker jalali jalaali shamsi persian" }, { "githubUrl": "https://github.com/jibraniqbal666/react-native-fb-image-grid", @@ -38551,10 +38261,7 @@ "isPrivate": false, "description": "A React-Native library to show images like Facebook grid.", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -38574,13 +38281,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-fb-image-grid", "npm": { - "downloads": 143, - "weekDownloads": 20, + "downloads": 126, + "weekDownloads": 28, "size": 244374, "latestRelease": "0.0.5", "latestReleaseDate": "2020-12-26T17:57:16.978Z" @@ -38590,8 +38298,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.629, - "topicSearchString": "react-native react-component component react mobile ios android ui image imageloader gif glide" + "popularity": -1.557, + "topicSearchString": "component mobile ios android ui image imageloader gif glide" }, { "githubUrl": "https://github.com/mongodb/stitch-js-sdk/tree/master/packages/react-native/sdk", @@ -38616,7 +38324,7 @@ "pushedAt": "2020-01-31T15:23:00Z", "forks": 62, "issues": 39, - "subscribers": 30, + "subscribers": 29, "stars": 112, "dependencies": 2 }, @@ -38632,8 +38340,7 @@ "mobile", "serverless", "stitch", - "atlas", - "react-native" + "atlas" ], "license": { "name": "Apache License 2.0", @@ -38645,12 +38352,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 27, - "weekDownloads": 0, + "downloads": 201, + "weekDownloads": 10, "size": 22349, "latestRelease": "4.8.0", "latestReleaseDate": "2020-01-03T17:11:52.768Z" @@ -38661,8 +38369,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "mongodb aws twilio http mobile serverless stitch atlas react-native" + "popularity": -1.457, + "topicSearchString": "mongodb aws twilio http mobile serverless stitch atlas" }, { "githubUrl": "https://github.com/FortAwesome/react-native-fontawesome", @@ -38687,8 +38395,8 @@ "pushedAt": "2024-05-23T14:30:03Z", "forks": 57, "issues": 24, - "subscribers": 19, - "stars": 339, + "subscribers": 18, + "stars": 340, "dependencies": 2 }, "name": "@fortawesome/react-native-fontawesome", @@ -38706,11 +38414,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 97144, - "weekDownloads": 18178, + "downloads": 100666, + "weekDownloads": 22811, "size": 18910, "latestRelease": "0.3.2", "latestReleaseDate": "2024-05-23T14:29:35.722Z" @@ -38721,7 +38430,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.159, + "popularity": 0.193, "topicSearchString": "" }, { @@ -38758,8 +38467,6 @@ "isPrivate": false, "description": "An auto height webview for React Native", "topics": [ - "react", - "react-native", "autoheight", "webview" ], @@ -38773,13 +38480,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-autoheight-webview", "npm": { - "downloads": 75059, - "weekDownloads": 12761, + "downloads": 64742, + "weekDownloads": 14621, "size": 22029, "latestRelease": "1.6.5", "latestReleaseDate": "2022-10-24T07:21:54.764Z" @@ -38791,8 +38499,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, - "topicSearchString": "react react-native autoheight webview" + "popularity": -0.558, + "topicSearchString": "autoheight webview" }, { "githubUrl": "https://github.com/ak1394/react-native-tts", @@ -38813,10 +38521,10 @@ "updatedAt": "2024-06-14T18:51:42Z", "createdAt": "2016-09-28T21:29:22Z", "pushedAt": "2024-06-14T18:51:42Z", - "forks": 154, + "forks": 158, "issues": 106, "subscribers": 12, - "stars": 674, + "stars": 681, "dependencies": 0 }, "name": "react-native-tts", @@ -38828,8 +38536,6 @@ "voice", "speech", "text-to-speech", - "react", - "react-native", "android", "ios" ], @@ -38843,12 +38549,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-tts", "npm": { - "downloads": 122258, - "weekDownloads": 19825, + "downloads": 105550, + "weekDownloads": 25757, "size": 162442, "latestRelease": "4.1.1", "latestReleaseDate": "2024-06-14T18:46:49.275Z" @@ -38861,8 +38568,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.138, - "topicSearchString": "tts voice speech text-to-speech react react-native android ios" + "popularity": 0.207, + "topicSearchString": "tts voice speech text-to-speech android ios" }, { "githubUrl": "https://github.com/luggit/react-native-config", @@ -38886,10 +38593,10 @@ "updatedAt": "2025-09-02T13:11:22Z", "createdAt": "2016-02-23T00:19:11Z", "pushedAt": "2025-09-02T13:11:22Z", - "forks": 607, - "issues": 313, - "subscribers": 32, - "stars": 4920, + "forks": 608, + "issues": 315, + "subscribers": 30, + "stars": 4928, "dependencies": 4 }, "name": "react-native-config", @@ -38900,7 +38607,6 @@ "env", "config", "config-var", - "react-native", "android", "ios", "windows", @@ -38916,26 +38622,27 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-config", "npm": { - "downloads": 1339825, - "weekDownloads": 266597, + "downloads": 1170707, + "weekDownloads": 268357, "size": 134682, "latestRelease": "1.5.9", "latestReleaseDate": "2025-09-02T13:12:05.144Z" }, - "score": 89, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated" + "Lots of open issues" ], - "popularity": 0.169, - "topicSearchString": "env config config-var react-native android ios windows 12factor" + "popularity": 0.195, + "topicSearchString": "env config config-var android ios windows 12factor" }, { "githubUrl": "https://github.com/luisfcofv/react-native-deep-linking", @@ -38967,7 +38674,6 @@ "isPrivate": false, "description": "Simple route-matching library to handle deep links", "topics": [ - "react-native", "deep-linking", "ios", "android" @@ -38982,12 +38688,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-deep-linking", "npm": { - "downloads": 12192, - "weekDownloads": 2442, + "downloads": 10074, + "weekDownloads": 2634, "size": 12706, "latestRelease": "2.2.0", "latestReleaseDate": "2019-01-06T13:24:28.214Z" @@ -38998,8 +38705,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, - "topicSearchString": "react-native deep-linking ios android" + "popularity": -0.528, + "topicSearchString": "deep-linking ios android" }, { "githubUrl": "https://github.com/eddieowens/react-native-boundary", @@ -39022,7 +38729,7 @@ "forks": 58, "issues": 26, "subscribers": 5, - "stars": 122, + "stars": 123, "dependencies": 0 }, "name": "react-native-boundary", @@ -39030,7 +38737,6 @@ "isPrivate": false, "description": "Native implementation of geofencing/region monitoring", "topics": [ - "react-native", "geofence", "boundary", "ios", @@ -39049,13 +38755,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-boundary", "npm": { - "downloads": 44, - "weekDownloads": 2, + "downloads": 87, + "weekDownloads": 13, "size": 113540, "latestRelease": "1.1.1", "latestReleaseDate": "2019-06-27T06:02:38.785Z" @@ -39066,8 +38773,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.46, - "topicSearchString": "react-native geofence boundary ios android location region-monitoring geofencing" + "popularity": -1.37, + "topicSearchString": "geofence boundary ios android location region-monitoring geofencing" }, { "githubUrl": "https://github.com/rhdeck/react-native-swift", @@ -39086,7 +38793,7 @@ "updatedAt": "2020-03-31T17:03:03Z", "createdAt": "2017-10-05T15:16:23Z", "pushedAt": "2020-03-31T17:03:03Z", - "forks": 12, + "forks": 11, "issues": 3, "subscribers": 2, "stars": 93, @@ -39107,13 +38814,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-swift", "npm": { - "downloads": 3679, - "weekDownloads": 715, + "downloads": 3064, + "weekDownloads": 786, "size": 6270, "latestRelease": "1.2.3", "latestReleaseDate": "2020-03-31T17:03:06.345Z" @@ -39123,7 +38831,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, + "popularity": -0.532, "topicSearchString": "" }, { @@ -39149,10 +38857,10 @@ "updatedAt": "2023-02-14T21:39:09Z", "createdAt": "2017-03-27T18:21:49Z", "pushedAt": "2023-02-14T21:39:09Z", - "forks": 259, - "issues": 15, - "subscribers": 23, - "stars": 2355, + "forks": 258, + "issues": 16, + "subscribers": 22, + "stars": 2356, "dependencies": 4 }, "name": "react-native-offline", @@ -39160,8 +38868,6 @@ "isPrivate": false, "description": "Handy toolbelt to deal nicely with offline/online connectivity in a React Native app. Smooth redux integration ✈️", "topics": [ - "react-native", - "react", "offline", "offline-first", "redux", @@ -39177,13 +38883,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-offline", "npm": { - "downloads": 39390, - "weekDownloads": 6934, + "downloads": 39162, + "weekDownloads": 8449, "size": 398905, "latestRelease": "6.0.2", "latestReleaseDate": "2023-02-14T21:40:17.788Z" @@ -39195,8 +38902,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.6, - "topicSearchString": "react-native react offline offline-first redux reactnative" + "popularity": -0.567, + "topicSearchString": "offline offline-first redux reactnative" }, { "githubUrl": "https://github.com/ovr/react-native-status-bar-height", @@ -39213,23 +38920,21 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2022-11-12T10:20:15Z", "createdAt": "2017-09-24T08:34:23Z", "pushedAt": "2022-11-12T10:20:15Z", - "forks": 51, + "forks": 52, "issues": 12, - "subscribers": 8, - "stars": 471, + "subscribers": 7, + "stars": 469, "dependencies": 1 }, "name": "react-native-status-bar-height", "fullName": "ovr/react-native-status-bar-height", "isPrivate": false, "description": "Small library that helps you to get status bar height, P.S 📱X supported ❤️", - "topics": [ - "react-native" - ], + "topics": [], "license": { "key": "mit", "name": "MIT License", @@ -39240,13 +38945,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-status-bar-height", "npm": { - "downloads": 222318, - "weekDownloads": 37340, + "downloads": 201749, + "weekDownloads": 45519, "size": 5986, "latestRelease": "2.6.0", "latestReleaseDate": "2020-11-09T19:24:08.724Z" @@ -39257,8 +38963,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, - "topicSearchString": "react-native" + "popularity": -0.558, + "topicSearchString": "" }, { "githubUrl": "https://github.com/andpor/react-native-sqlite-storage", @@ -39280,9 +38986,9 @@ "createdAt": "2015-10-30T08:42:28Z", "pushedAt": "2021-10-01T14:16:35Z", "forks": 447, - "issues": 169, - "subscribers": 53, - "stars": 2815, + "issues": 170, + "subscribers": 52, + "stars": 2817, "dependencies": 0 }, "name": "react-native-sqlite-storage", @@ -39292,9 +38998,8 @@ "topics": [ "sqlite-storage", "sqlite", - "react-component", + "component", "reactnative", - "react-native", "sqlite3", "ios", "android", @@ -39311,13 +39016,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sqlite-storage", "npm": { - "downloads": 131432, - "weekDownloads": 25973, + "downloads": 120643, + "weekDownloads": 26372, "size": 7445408, "latestRelease": "6.0.1", "latestReleaseDate": "2021-10-01T14:18:22.623Z" @@ -39330,8 +39036,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, - "topicSearchString": "sqlite-storage sqlite react-component reactnative react-native sqlite3 ios android promise cordova-sqlite-storage" + "popularity": -0.564, + "topicSearchString": "sqlite-storage sqlite component reactnative sqlite3 ios android promise cordova-sqlite-storage" }, { "githubUrl": "https://github.com/taskrabbit/react-native-parsed-text", @@ -39354,8 +39060,8 @@ "createdAt": "2015-11-12T17:16:33Z", "pushedAt": "2020-06-24T19:26:30Z", "forks": 153, - "issues": 16, - "subscribers": 21, + "issues": 17, + "subscribers": 20, "stars": 1249, "dependencies": 1 }, @@ -39365,11 +39071,9 @@ "description": "Parse text and make them into multiple React Native Text elements", "topics": [ "text", - "react-native", "url", "phone", - "react", - "react-component", + "component", "parsing" ], "license": { @@ -39382,12 +39086,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-parsed-text", "npm": { - "downloads": 343671, - "weekDownloads": 58639, + "downloads": 331147, + "weekDownloads": 78321, "size": 20650, "latestRelease": "0.0.22", "latestReleaseDate": "2020-06-24T19:27:21.767Z" @@ -39399,8 +39104,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, - "topicSearchString": "text react-native url phone react react-component parsing" + "popularity": -0.549, + "topicSearchString": "text url phone component parsing" }, { "githubUrl": "https://github.com/tableflip/react-native-select-multiple", @@ -39427,7 +39132,7 @@ "pushedAt": "2021-06-10T17:42:03Z", "forks": 55, "issues": 17, - "subscribers": 7, + "subscribers": 6, "stars": 192, "dependencies": 1 }, @@ -39440,9 +39145,6 @@ "multiple", "picker", "select2", - "react", - "native", - "react-native", "list", "ui", "checkbox", @@ -39458,12 +39160,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-select-multiple", "npm": { - "downloads": 5188, - "weekDownloads": 862, + "downloads": 4444, + "weekDownloads": 1044, "size": 14739, "latestRelease": "2.1.0", "latestReleaseDate": "2019-10-21T09:55:07.451Z" @@ -39474,8 +39177,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, - "topicSearchString": "select multiple picker select2 react native react-native list ui checkbox label" + "popularity": -0.55, + "topicSearchString": "select multiple picker select2 list ui checkbox label" }, { "githubUrl": "https://github.com/Richard-Cao/react-native-exceptions-manager", @@ -39508,8 +39211,6 @@ "description": "React-Native Crash Reporter", "topics": [ "crash", - "react", - "react-native", "exception" ], "license": { @@ -39522,12 +39223,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-exceptions-manager", "npm": { - "downloads": 51, - "weekDownloads": 5, + "downloads": 1656, + "weekDownloads": 186, "latestRelease": "0.2.0", "latestReleaseDate": "2017-08-04T08:30:24.501Z" }, @@ -39536,8 +39238,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.417, - "topicSearchString": "crash react react-native exception" + "popularity": -0.654, + "topicSearchString": "crash exception" }, { "githubUrl": "https://github.com/weflex/react-native-wechat", @@ -39558,10 +39260,10 @@ "updatedAt": "2019-10-16T02:23:44Z", "createdAt": "2015-10-16T05:12:31Z", "pushedAt": "2019-10-16T02:23:44Z", - "forks": 616, + "forks": 615, "issues": 200, - "subscribers": 93, - "stars": 2917, + "subscribers": 92, + "stars": 2919, "dependencies": 1 }, "name": "react-native-wechat", @@ -39570,9 +39272,7 @@ "description": "🚀 WeChat login, share, favorite and payment for React-Native on iOS and Android platforms (QQ: 336021910)", "topics": [ "wechat", - "react", - "react-native", - "react-component", + "component", "ios", "wechat-sdk", "android", @@ -39589,12 +39289,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-wechat", "npm": { - "downloads": 1578, - "weekDownloads": 193, + "downloads": 1995, + "weekDownloads": 391, "size": 13584759, "latestRelease": "1.9.12", "latestReleaseDate": "2019-09-21T07:16:17.727Z" @@ -39607,8 +39308,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.646, - "topicSearchString": "wechat react react-native react-component ios wechat-sdk android mit js" + "popularity": -0.583, + "topicSearchString": "wechat component ios wechat-sdk android mit js" }, { "githubUrl": "https://github.com/Microsoft/react-native-code-push", @@ -39637,10 +39338,10 @@ "updatedAt": "2025-05-20T11:58:16Z", "createdAt": "2015-06-02T17:19:20Z", "pushedAt": "2025-05-20T11:58:16Z", - "forks": 1469, + "forks": 1466, "issues": 7, - "subscribers": 222, - "stars": 9128, + "subscribers": 221, + "stars": 9133, "dependencies": 7 }, "name": "react-native-code-push", @@ -39648,7 +39349,6 @@ "isPrivate": false, "description": "React Native module for CodePush", "topics": [ - "react-native", "code", "push", "codepush", @@ -39664,12 +39364,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-code-push", "npm": { - "downloads": 286081, - "weekDownloads": 49877, + "downloads": 245306, + "weekDownloads": 62117, "size": 2396753, "latestRelease": "9.0.1", "latestReleaseDate": "2024-12-19T14:31:05.513Z" @@ -39681,8 +39382,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.602, - "topicSearchString": "react-native code push codepush code-push" + "popularity": -0.535, + "topicSearchString": "code push codepush code-push" }, { "githubUrl": "https://github.com/plmok61/react-navigation-transitions", @@ -39715,9 +39416,6 @@ "isPrivate": false, "description": "Custom transitions for react-navigation", "topics": [ - "react-native", - "react", - "react-navigation", "navigation", "transitions", "animations" @@ -39732,12 +39430,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-navigation-transitions", "npm": { - "downloads": 1941, - "weekDownloads": 337, + "downloads": 1988, + "weekDownloads": 454, "size": 11255, "latestRelease": "1.0.12", "latestReleaseDate": "2019-07-26T20:38:20.359Z" @@ -39748,8 +39447,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, - "topicSearchString": "react-native react react-navigation navigation transitions animations" + "popularity": -0.556, + "topicSearchString": "navigation transitions animations" }, { "githubUrl": "https://github.com/itsnubix/react-native-video-controls", @@ -39773,9 +39472,9 @@ "createdAt": "2016-11-03T00:54:01Z", "pushedAt": "2021-06-15T11:31:21Z", "forks": 474, - "issues": 42, + "issues": 43, "subscribers": 11, - "stars": 647, + "stars": 649, "dependencies": 1 }, "name": "react-native-video-controls", @@ -39783,16 +39482,12 @@ "isPrivate": false, "description": "A React Native video component with controls", "topics": [ - "react-native", "video", - "react-video-controls", - "react-video-player", + "video-controls", + "video-player", "ios", "android", - "react", "component", - "video-player", - "video-controls", "elements" ], "license": { @@ -39805,13 +39500,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-video-controls", "npm": { - "downloads": 61584, - "weekDownloads": 12289, + "downloads": 54701, + "weekDownloads": 12075, "size": 96263, "latestRelease": "2.8.1", "latestReleaseDate": "2021-05-07T20:40:24.868Z" @@ -39823,8 +39519,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.58, - "topicSearchString": "react-native video react-video-controls react-video-player ios android react component video-player video-controls elements" + "popularity": -0.562, + "topicSearchString": "video video-controls video-player ios android component elements" }, { "githubUrl": "https://github.com/react-navigation/redux-helpers", @@ -39850,7 +39546,7 @@ "pushedAt": "2020-03-24T03:56:43Z", "forks": 42, "issues": 4, - "subscribers": 25, + "subscribers": 24, "stars": 295, "dependencies": 1 }, @@ -39869,11 +39565,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 28465, - "weekDownloads": 4046, + "downloads": 23676, + "weekDownloads": 4390, "size": 18307, "latestRelease": "4.0.1", "latestReleaseDate": "2019-10-03T17:15:17.271Z" @@ -39884,7 +39581,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.629, + "popularity": -0.592, "topicSearchString": "" }, { @@ -39916,8 +39613,7 @@ "isPrivate": false, "description": "iTunes module for React Native", "topics": [ - "react-component", - "react-native", + "component", "ios", "itunes", "apple", @@ -39934,12 +39630,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-itunes", "npm": { - "downloads": 254, - "weekDownloads": 53, + "downloads": 244, + "weekDownloads": 49, "latestRelease": "0.5.0", "latestReleaseDate": "2017-12-04T16:11:44.062Z" }, @@ -39948,8 +39645,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.32, - "topicSearchString": "react-component react-native ios itunes apple music apple-music" + "popularity": -1.328, + "topicSearchString": "component ios itunes apple music apple-music" }, { "githubUrl": "https://github.com/jsdf/react-native-htmlview", @@ -39975,8 +39672,8 @@ "pushedAt": "2023-11-02T13:13:59Z", "forks": 432, "issues": 118, - "subscribers": 45, - "stars": 2726, + "subscribers": 44, + "stars": 2743, "dependencies": 3 }, "name": "react-native-htmlview", @@ -39984,10 +39681,7 @@ "isPrivate": false, "description": "A React Native component which renders HTML content as native views", "topics": [ - "react", "html", - "react-native", - "react-component", "component", "mobile", "ui", @@ -40004,12 +39698,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-htmlview", "npm": { - "downloads": 142831, - "weekDownloads": 25996, + "downloads": 136359, + "weekDownloads": 33303, "size": 28095, "latestRelease": "0.17.0", "latestReleaseDate": "2023-11-02T12:42:33.470Z" @@ -40022,8 +39717,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.155, - "topicSearchString": "react html react-native react-component component mobile ui html-parser html-renderer" + "popularity": 0.208, + "topicSearchString": "html component mobile ui html-parser html-renderer" }, { "githubUrl": "https://github.com/lucasferreira/react-native-flash-message", @@ -40044,10 +39739,10 @@ "updatedAt": "2024-12-16T03:52:28Z", "createdAt": "2018-03-05T14:04:44Z", "pushedAt": "2024-12-16T03:52:28Z", - "forks": 146, - "issues": 13, + "forks": 147, + "issues": 14, "subscribers": 10, - "stars": 1505, + "stars": 1510, "dependencies": 2 }, "name": "react-native-flash-message", @@ -40055,10 +39750,6 @@ "isPrivate": false, "description": "React Native flashbar and top notification alert utility", "topics": [ - "react", - "react-native", - "react-component", - "native", "component", "flash", "flashbar", @@ -40083,12 +39774,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-flash-message", "npm": { - "downloads": 198672, - "weekDownloads": 35261, + "downloads": 192080, + "weekDownloads": 41662, "size": 61711, "latestRelease": "0.4.2", "latestReleaseDate": "2023-08-09T14:30:00.112Z" @@ -40100,8 +39792,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.151, - "topicSearchString": "react react-native react-component native component flash flashbar flashmessage message alert notification topbar iphonex ipad android utility javascript" + "popularity": 0.184, + "topicSearchString": "component flash flashbar flashmessage message alert notification topbar iphonex ipad android utility javascript" }, { "githubUrl": "https://github.com/stefalda/ReactNativeLocalization", @@ -40125,7 +39817,7 @@ "forks": 117, "issues": 69, "subscribers": 18, - "stars": 900, + "stars": 901, "dependencies": 1 }, "name": "react-native-localization", @@ -40139,9 +39831,7 @@ "typescript", "ios", "android", - "react", - "react-native", - "react-component" + "component" ], "license": { "key": "mit", @@ -40153,12 +39843,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 59284, - "weekDownloads": 9663, + "downloads": 50103, + "weekDownloads": 12698, "size": 88198, "latestRelease": "2.3.2", "latestReleaseDate": "2023-07-03T11:50:29.500Z" @@ -40170,8 +39861,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.611, - "topicSearchString": "localization internationalization javascript typescript ios android react react-native react-component" + "popularity": -0.535, + "topicSearchString": "localization internationalization javascript typescript ios android component" }, { "githubUrl": "https://github.com/aMarCruz/react-native-photo-view-ex", @@ -40194,7 +39885,7 @@ "pushedAt": "2022-09-01T01:53:08Z", "forks": 34, "issues": 8, - "subscribers": 3, + "subscribers": 2, "stars": 45, "dependencies": 1 }, @@ -40203,8 +39894,7 @@ "isPrivate": false, "description": "Pinch-to-zoom view for React Native (both iOS and Android)", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "gallery", @@ -40223,13 +39913,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-photo-view-ex", "npm": { - "downloads": 3216, - "weekDownloads": 608, + "downloads": 3492, + "weekDownloads": 689, "size": 141054, "latestRelease": "1.1.0", "latestReleaseDate": "2019-05-20T20:03:37.927Z" @@ -40239,8 +39930,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, - "topicSearchString": "react-native react-component ios android gallery lightbox pinch pinch-to-zoom mobile" + "popularity": -0.582, + "topicSearchString": "component ios android gallery lightbox pinch pinch-to-zoom mobile" }, { "githubUrl": "https://github.com/maxs15/react-native-spinkit", @@ -40262,8 +39953,8 @@ "pushedAt": "2024-12-15T09:17:05Z", "forks": 286, "issues": 42, - "subscribers": 25, - "stars": 2408, + "subscribers": 24, + "stars": 2412, "dependencies": 1 }, "name": "react-native-spinkit", @@ -40271,8 +39962,7 @@ "isPrivate": false, "description": "A collection of animated loading indicators for React Native", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "spinkit", @@ -40290,12 +39980,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-spinkit", "npm": { - "downloads": 48186, - "weekDownloads": 8687, + "downloads": 38582, + "weekDownloads": 9042, "size": 408085, "latestRelease": "1.5.1", "latestReleaseDate": "2020-10-04T22:39:46.271Z" @@ -40307,8 +39998,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.153, - "topicSearchString": "react-component react-native ios android spinkit spinner loader indicator" + "popularity": 0.199, + "topicSearchString": "component ios android spinkit spinner loader indicator" }, { "githubUrl": "https://github.com/software-mansion/react-native-tab-view-viewpager-adapter", @@ -40351,13 +40042,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tab-view-viewpager-adapter", "npm": { - "downloads": 509, - "weekDownloads": 91, + "downloads": 493, + "weekDownloads": 140, "size": 43925, "latestRelease": "1.1.0", "latestReleaseDate": "2020-07-15T20:58:33.932Z" @@ -40367,7 +40059,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.347, + "popularity": -1.259, "topicSearchString": "" }, { @@ -40403,8 +40095,6 @@ "isPrivate": false, "description": "WebP image integration for React Native apps.", "topics": [ - "react", - "react-native", "ios", "android", "webp" @@ -40419,12 +40109,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-webp-format", "npm": { - "downloads": 32973, - "weekDownloads": 5796, + "downloads": 23961, + "weekDownloads": 6587, "size": 14609, "latestRelease": "1.2.1", "latestReleaseDate": "2025-03-05T22:09:30.387Z" @@ -40433,8 +40124,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.149, - "topicSearchString": "react react-native ios android webp" + "popularity": 0.234, + "topicSearchString": "ios android webp" }, { "githubUrl": "https://github.com/vonovak/react-navigation-backhandler", @@ -40457,8 +40148,8 @@ "pushedAt": "2025-03-12T11:08:25Z", "forks": 27, "issues": 1, - "subscribers": 4, - "stars": 205, + "subscribers": 3, + "stars": 206, "dependencies": 0 }, "name": "react-navigation-backhandler", @@ -40466,8 +40157,7 @@ "isPrivate": false, "description": "Easily handle Android back button behavior with React-Navigation.", "topics": [ - "react-navigation", - "react-native" + "navigation" ], "license": { "key": "mit", @@ -40479,12 +40169,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-navigation-backhandler", "npm": { - "downloads": 17666, - "weekDownloads": 3226, + "downloads": 16720, + "weekDownloads": 4203, "size": 5892, "latestRelease": "2.0.3", "latestReleaseDate": "2025-03-12T11:08:30.907Z" @@ -40495,8 +40186,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.155, - "topicSearchString": "react-navigation react-native" + "popularity": 0.214, + "topicSearchString": "navigation" }, { "githubUrl": "https://github.com/idehub/react-native-billing", @@ -40518,7 +40209,7 @@ "pushedAt": "2019-11-03T11:00:55Z", "forks": 107, "issues": 0, - "subscribers": 14, + "subscribers": 13, "stars": 628, "dependencies": 0 }, @@ -40527,12 +40218,9 @@ "isPrivate": false, "description": "React Native bridge to InApp Billing on Android.", "topics": [ - "react", - "native", "inapp", "billing", "purchase", - "react-native", "android", "bridge" ], @@ -40546,12 +40234,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-billing", "npm": { - "downloads": 53, - "weekDownloads": 9, + "downloads": 246, + "weekDownloads": 18, "size": 47682, "latestRelease": "3.0.0", "latestReleaseDate": "2019-11-02T18:45:49.408Z" @@ -40562,8 +40251,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, - "topicSearchString": "react native inapp billing purchase react-native android bridge" + "popularity": -1.437, + "topicSearchString": "inapp billing purchase android bridge" }, { "githubUrl": "https://github.com/TaylorBriggs/react-native-typewriter", @@ -40587,7 +40276,7 @@ "pushedAt": "2023-07-25T20:43:43Z", "forks": 26, "issues": 3, - "subscribers": 1, + "subscribers": 0, "stars": 102, "dependencies": 1 }, @@ -40596,8 +40285,6 @@ "isPrivate": false, "description": "A React Native component for creating typing effects", "topics": [ - "react", - "react-native", "component", "animated", "typing", @@ -40613,12 +40300,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-typewriter", "npm": { - "downloads": 13802, - "weekDownloads": 2195, + "downloads": 12644, + "weekDownloads": 3231, "size": 16551, "latestRelease": "0.7.0", "latestReleaseDate": "2020-04-05T19:46:41.496Z" @@ -40628,8 +40316,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.615, - "topicSearchString": "react react-native component animated typing typewriter" + "popularity": -0.533, + "topicSearchString": "component animated typing typewriter" }, { "githubUrl": "https://github.com/conorhastings/react-native-syntax-highlighter", @@ -40655,8 +40343,8 @@ "pushedAt": "2023-03-14T16:56:16Z", "forks": 25, "issues": 15, - "subscribers": 3, - "stars": 179, + "subscribers": 2, + "stars": 180, "dependencies": 1 }, "name": "react-native-syntax-highlighter", @@ -40664,12 +40352,10 @@ "isPrivate": false, "description": "a syntax highlighter for react native using https://github.com/conorhastings/react-syntax-highlighter under the hood", "topics": [ - "react", - "react-native", "syntax", "highlighting", "highlight.js", - "react-syntax-highlighter" + "syntax-highlighter" ], "license": { "key": "mit", @@ -40681,13 +40367,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-syntax-highlighter", "npm": { - "downloads": 10374, - "weekDownloads": 1307, + "downloads": 11321, + "weekDownloads": 2225, "size": 7206089, "latestRelease": "2.1.0", "latestReleaseDate": "2019-09-16T23:01:32.380Z" @@ -40698,8 +40385,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.643, - "topicSearchString": "react react-native syntax highlighting highlight.js react-syntax-highlighter" + "popularity": -0.583, + "topicSearchString": "syntax highlighting highlight.js syntax-highlighter" }, { "githubUrl": "https://github.com/wkh237/react-native-fetch-blob", @@ -40720,9 +40407,9 @@ "updatedAt": "2019-03-16T08:25:38Z", "createdAt": "2016-05-04T13:08:37Z", "pushedAt": "2019-03-16T08:25:38Z", - "forks": 542, + "forks": 541, "issues": 237, - "subscribers": 49, + "subscribers": 48, "stars": 2613, "dependencies": 2 }, @@ -40731,7 +40418,6 @@ "isPrivate": false, "description": "A project committed to making file access and data transfer easier, efficient for React Native developers.", "topics": [ - "react-native", "fetch", "blob", "fs", @@ -40758,12 +40444,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fetch-blob", "npm": { - "downloads": 5426, - "weekDownloads": 1131, + "downloads": 6063, + "weekDownloads": 934, "latestRelease": "0.10.8", "latestReleaseDate": "2017-08-03T01:40:25.924Z" }, @@ -40775,8 +40462,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.573, - "topicSearchString": "react-native fetch blob fs upload file download filestream image-header file-access storage network file-system polyfill android ios" + "popularity": -0.619, + "topicSearchString": "fetch blob fs upload file download filestream image-header file-access storage network file-system polyfill android ios" }, { "githubUrl": "https://github.com/kmend/react-native-md5", @@ -40809,7 +40496,6 @@ "isPrivate": false, "description": "react-native-md5 Demo", "topics": [ - "react-native", "md5", "hex-md5", "str-md5", @@ -40827,12 +40513,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-md5", "npm": { - "downloads": 15827, - "weekDownloads": 2523, + "downloads": 11706, + "weekDownloads": 2734, "latestRelease": "1.0.0", "latestReleaseDate": "2016-10-17T08:52:01.916Z" }, @@ -40841,8 +40528,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.615, - "topicSearchString": "react-native md5 hex-md5 str-md5 hex-hmac-md5 b64-hmac-md5 str-hmac-md5" + "popularity": -0.551, + "topicSearchString": "md5 hex-md5 str-md5 hex-hmac-md5 b64-hmac-md5 str-hmac-md5" }, { "githubUrl": "https://github.com/marlove/react-native-geocoding", @@ -40863,7 +40550,7 @@ "updatedAt": "2020-12-09T07:39:55Z", "createdAt": "2016-09-11T13:55:36Z", "pushedAt": "2020-12-09T07:39:55Z", - "forks": 53, + "forks": 54, "issues": 19, "subscribers": 6, "stars": 211, @@ -40874,7 +40561,6 @@ "isPrivate": false, "description": "A React Native module to transform a description of a location (i.e. street address, town name, etc.) into geographic coordinates (i.e. latitude and longitude) and vice versa.", "topics": [ - "react-native", "ios", "android", "geocoder", @@ -40890,13 +40576,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-geocoding", "npm": { - "downloads": 73403, - "weekDownloads": 12847, + "downloads": 72057, + "weekDownloads": 15185, "size": 10697, "latestRelease": "0.5.0", "latestReleaseDate": "2020-12-09T07:55:15.489Z" @@ -40907,8 +40594,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, - "topicSearchString": "react-native ios android geocoder geocoding" + "popularity": -0.571, + "topicSearchString": "ios android geocoder geocoding" }, { "githubUrl": "https://github.com/shimohq/react-native-prompt-android", @@ -40929,10 +40616,10 @@ "updatedAt": "2019-09-18T11:02:34Z", "createdAt": "2016-10-12T04:04:45Z", "pushedAt": "2019-09-18T11:02:34Z", - "forks": 69, + "forks": 70, "issues": 24, - "subscribers": 8, - "stars": 129, + "subscribers": 7, + "stars": 130, "dependencies": 0 }, "name": "react-native-prompt-android", @@ -40940,8 +40627,7 @@ "isPrivate": false, "description": "A polyfill library for Alert.prompt on Android platform, working both on Android and iOS platform.", "topics": [ - "react-component", - "react-native", + "component", "prompt", "alert", "ios", @@ -40957,13 +40643,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-prompt-android", "npm": { - "downloads": 29137, - "weekDownloads": 4194, + "downloads": 26692, + "weekDownloads": 6345, "size": 50045, "latestRelease": "1.1.0", "latestReleaseDate": "2019-09-18T11:03:06.843Z" @@ -40974,8 +40661,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.628, - "topicSearchString": "react-component react-native prompt alert ios android" + "popularity": -0.548, + "topicSearchString": "component prompt alert ios android" }, { "githubUrl": "https://github.com/djchie/react-native-star-rating", @@ -41008,25 +40695,22 @@ "isPrivate": false, "description": "A React Native component for generating and displaying interactive star ratings", "topics": [ - "react", - "native", - "react-native", "star", "stars", "rating", "ratings", "review", "reviews", - "react-component", + "component", "ios", "android", "star-rating", "star-rating-component", - "component", "custom-star", "star-icon" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -41035,12 +40719,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-star-rating", "npm": { - "downloads": 32377, - "weekDownloads": 4966, + "downloads": 26950, + "weekDownloads": 5740, "size": 1608106, "latestRelease": "1.1.0", "latestReleaseDate": "2018-09-10T00:09:14.708Z" @@ -41052,8 +40737,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.62, - "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" + "popularity": -0.569, + "topicSearchString": "star stars rating ratings review reviews component ios android star-rating star-rating-component custom-star star-icon" }, { "githubUrl": "https://github.com/shahen94/react-native-switch", @@ -41077,7 +40762,7 @@ "pushedAt": "2022-02-21T21:54:47Z", "forks": 158, "issues": 28, - "subscribers": 8, + "subscribers": 7, "stars": 299, "dependencies": 1 }, @@ -41086,8 +40771,6 @@ "isPrivate": false, "description": "Customisable switch component for RN", "topics": [ - "react-native", - "react", "shapes", "android", "ios", @@ -41106,13 +40789,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-switch", "npm": { - "downloads": 83709, - "weekDownloads": 12865, + "downloads": 72613, + "weekDownloads": 18055, "size": 13072, "latestRelease": "1.5.1", "latestReleaseDate": "2022-02-21T21:54:49.931Z" @@ -41123,8 +40807,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, - "topicSearchString": "react-native react shapes android ios mobile switch customisable web" + "popularity": -0.539, + "topicSearchString": "shapes android ios mobile switch customisable web" }, { "githubUrl": "https://github.com/avishayil/react-native-user-avatar", @@ -41145,9 +40829,9 @@ "updatedAt": "2022-02-23T11:46:56Z", "createdAt": "2017-01-19T12:20:42Z", "pushedAt": "2022-02-23T11:46:56Z", - "forks": 56, + "forks": 57, "issues": 10, - "subscribers": 4, + "subscribers": 3, "stars": 204, "dependencies": 6 }, @@ -41157,7 +40841,6 @@ "registry": "https://registry.npmjs.org/", "description": "Avatar Component For React Native", "topics": [ - "react-native", "component", "avatar", "initials" @@ -41172,13 +40855,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-user-avatar", "npm": { - "downloads": 9767, - "weekDownloads": 1527, + "downloads": 9007, + "weekDownloads": 2059, "size": 43203, "latestRelease": "1.0.8", "latestReleaseDate": "2021-12-30T20:31:57.996Z" @@ -41189,8 +40873,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, - "topicSearchString": "react-native component avatar initials" + "popularity": -0.556, + "topicSearchString": "component avatar initials" }, { "githubUrl": "https://github.com/tomzaku/react-native-shimmer-placeholder", @@ -41214,10 +40898,10 @@ "updatedAt": "2023-12-12T10:16:14Z", "createdAt": "2017-05-24T09:47:57Z", "pushedAt": "2023-12-12T10:16:14Z", - "forks": 93, + "forks": 92, "issues": 6, "subscribers": 13, - "stars": 1084, + "stars": 1090, "dependencies": 0 }, "name": "react-native-shimmer-placeholder", @@ -41227,7 +40911,6 @@ "topics": [ "loading", "placeholder", - "react-native", "shimmer", "module", "skeleton" @@ -41242,12 +40925,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-shimmer-placeholder", "npm": { - "downloads": 191779, - "weekDownloads": 35379, + "downloads": 187534, + "weekDownloads": 42149, "size": 15648, "latestRelease": "2.0.9", "latestReleaseDate": "2022-08-09T04:33:00.421Z" @@ -41259,8 +40943,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, - "topicSearchString": "loading placeholder react-native shimmer module skeleton" + "popularity": 0.191, + "topicSearchString": "loading placeholder shimmer module skeleton" }, { "githubUrl": "https://github.com/lhandel/react-native-card-flip", @@ -41281,10 +40965,10 @@ "updatedAt": "2020-06-07T15:43:45Z", "createdAt": "2018-03-09T22:12:19Z", "pushedAt": "2020-06-07T15:43:45Z", - "forks": 58, + "forks": 59, "issues": 13, "subscribers": 1, - "stars": 258, + "stars": 257, "dependencies": 2 }, "name": "react-native-card-flip", @@ -41292,7 +40976,6 @@ "isPrivate": false, "description": "Card flip animation for React Native", "topics": [ - "react-native", "flip", "cards", "card", @@ -41301,7 +40984,6 @@ "card-flip", "flip-card", "component", - "react-component", "flip-animation" ], "license": { @@ -41314,13 +40996,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-card-flip", "npm": { - "downloads": 6239, - "weekDownloads": 1151, + "downloads": 7348, + "weekDownloads": 1385, "size": 15624, "latestRelease": "1.0.7", "latestReleaseDate": "2020-06-07T15:42:00.674Z" @@ -41331,8 +41014,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, - "topicSearchString": "react-native flip cards card rotate deck card-flip flip-card component react-component flip-animation" + "popularity": -0.59, + "topicSearchString": "flip cards card rotate deck card-flip flip-card component flip-animation" }, { "githubUrl": "https://github.com/m0ngr31/react-native-device-detection", @@ -41349,13 +41032,13 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2020-01-16T18:25:05Z", "createdAt": "2016-03-14T19:30:37Z", "pushedAt": "2020-01-16T18:25:05Z", "forks": 16, "issues": 3, - "subscribers": 2, + "subscribers": 1, "stars": 60, "dependencies": 0 }, @@ -41363,9 +41046,7 @@ "fullName": "m0ngr31/react-native-device-detection", "isPrivate": false, "description": "Simple class to let your app figure out what type of device is being used (iOS/Android, Phone/Tablet).", - "topics": [ - "react-native" - ], + "topics": [], "license": { "key": "mit", "name": "MIT License", @@ -41376,13 +41057,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-device-detection", "npm": { - "downloads": 6214, - "weekDownloads": 1077, + "downloads": 5839, + "weekDownloads": 1558, "size": 4574, "latestRelease": "0.2.1", "latestReleaseDate": "2020-01-16T18:10:41.664Z" @@ -41392,8 +41074,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, - "topicSearchString": "react-native" + "popularity": -0.523, + "topicSearchString": "" }, { "githubUrl": "https://github.com/teslamotors/react-native-camera-kit", @@ -41415,13 +41097,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T09:36:48Z", + "updatedAt": "2025-10-01T17:53:29Z", "createdAt": "2016-04-13T11:56:29Z", - "pushedAt": "2025-09-12T09:36:48Z", - "forks": 587, - "issues": 83, - "subscribers": 202, - "stars": 2609, + "pushedAt": "2025-10-01T17:53:29Z", + "forks": 585, + "issues": 84, + "subscribers": 200, + "stars": 2622, "dependencies": 0 }, "name": "react-native-camera-kit", @@ -41430,7 +41112,6 @@ "registry": "https://registry.npmjs.org/", "description": "A high performance, easy to use, rock solid camera library for React Native apps.", "topics": [ - "react-native", "ios", "android", "camera" @@ -41445,15 +41126,17 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-camera-kit", "npm": { - "downloads": 102888, - "weekDownloads": 15985, - "size": 442150, - "latestRelease": "16.1.2", - "latestReleaseDate": "2025-09-10T01:29:14.353Z" + "downloads": 117584, + "weekDownloads": 24937, + "size": 563008, + "latestRelease": "16.1.3", + "latestReleaseDate": "2025-10-01T17:53:28.715Z" }, "score": 89, "matchingScoreModifiers": [ @@ -41463,8 +41146,8 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.132, - "topicSearchString": "react-native ios android camera" + "popularity": 0.18, + "topicSearchString": "ios android camera" }, { "githubUrl": "https://github.com/BondGoat/react-native-native-video-player", @@ -41496,8 +41179,6 @@ "description": "React native video player, used for Android, iOS. It will lauch a Native Video, not an Embeded Component", "topics": [ "component", - "react-component", - "react-native", "photo", "video", "videos", @@ -41515,13 +41196,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-native-video-player", "npm": { - "downloads": 34, - "weekDownloads": 8, + "downloads": 130, + "weekDownloads": 23, "latestRelease": "1.3.4", "latestReleaseDate": "2017-07-31T07:13:30.218Z" }, @@ -41531,13 +41213,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "component react-component react-native photo video videos image images player" + "popularity": -1.347, + "topicSearchString": "component photo video videos image images player" }, { "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", @@ -41555,7 +41238,7 @@ "forks": 87, "issues": 22, "subscribers": 18, - "stars": 1053, + "stars": 1052, "dependencies": 0 }, "name": "react-native-quick-actions", @@ -41573,13 +41256,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-quick-actions", "npm": { - "downloads": 39643, - "weekDownloads": 6456, + "downloads": 47612, + "weekDownloads": 11242, "size": 531583, "latestRelease": "0.3.13", "latestReleaseDate": "2019-11-24T15:53:18.718Z" @@ -41591,7 +41275,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, + "popularity": -0.549, "topicSearchString": "" }, { @@ -41621,8 +41305,8 @@ "pushedAt": "2021-09-06T19:34:35Z", "forks": 506, "issues": 57, - "subscribers": 36, - "stars": 2808, + "subscribers": 35, + "stars": 2811, "dependencies": 0 }, "name": "react-native-swipe-list-view", @@ -41630,17 +41314,14 @@ "isPrivate": false, "description": "A React Native ListView component with rows that swipe open and closed", "topics": [ - "react", - "react-native", - "react-component", + "component", "ios", "android", "listview", "swipe", "swipeable", "javascript", - "swipelistview", - "component" + "swipelistview" ], "license": { "key": "mit", @@ -41652,13 +41333,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-swipe-list-view", "npm": { - "downloads": 178399, - "weekDownloads": 31031, + "downloads": 171740, + "weekDownloads": 36582, "size": 114222, "latestRelease": "3.2.9", "latestReleaseDate": "2021-06-18T19:09:44.733Z" @@ -41670,8 +41352,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, - "topicSearchString": "react react-native react-component ios android listview swipe swipeable javascript swipelistview component" + "popularity": -0.569, + "topicSearchString": "component ios android listview swipe swipeable javascript swipelistview" }, { "githubUrl": "https://github.com/knowbody/react-native-platform-stylesheet", @@ -41695,7 +41377,7 @@ "pushedAt": "2016-07-25T09:20:42Z", "forks": 3, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 88, "dependencies": 1 }, @@ -41704,12 +41386,10 @@ "isPrivate": false, "description": "React Native Platform Specific Stylesheet", "topics": [ - "react-native", "stylesheet", "ios", "android", - "platform", - "react" + "platform" ], "license": { "name": "MIT License", @@ -41721,12 +41401,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-platform-stylesheet", "npm": { - "downloads": 2428, - "weekDownloads": 483, + "downloads": 1390, + "weekDownloads": 267, "latestRelease": "0.0.6", "latestReleaseDate": "2016-07-25T09:20:58.833Z" }, @@ -41735,8 +41416,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, - "topicSearchString": "react-native stylesheet ios android platform react" + "popularity": -0.587, + "topicSearchString": "stylesheet ios android platform" }, { "githubUrl": "https://github.com/jamesisaac/react-native-background-task", @@ -41760,7 +41441,7 @@ "forks": 95, "issues": 60, "subscribers": 11, - "stars": 1111, + "stars": 1110, "dependencies": 0 }, "name": "react-native-background-task", @@ -41768,7 +41449,6 @@ "isPrivate": false, "description": "Periodic background tasks for React Native apps, cross-platform (iOS and Android), which run even when the app is closed.", "topics": [ - "react-native", "background-jobs", "fetch", "android", @@ -41786,12 +41466,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-background-task", "npm": { - "downloads": 1204, - "weekDownloads": 263, + "downloads": 1154, + "weekDownloads": 501, "latestRelease": "0.2.1", "latestReleaseDate": "2017-08-10T10:54:32.578Z" }, @@ -41802,8 +41483,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.564, - "topicSearchString": "react-native background-jobs fetch android ios offline sync" + "popularity": -0.38, + "topicSearchString": "background-jobs fetch android ios offline sync" }, { "githubUrl": "https://github.com/ocetnik/react-native-background-timer", @@ -41823,10 +41504,10 @@ "updatedAt": "2023-04-27T14:29:23Z", "createdAt": "2016-05-10T19:42:56Z", "pushedAt": "2023-04-27T14:29:23Z", - "forks": 213, + "forks": 212, "issues": 114, "subscribers": 22, - "stars": 1649, + "stars": 1654, "dependencies": 0 }, "name": "react-native-background-timer", @@ -41834,7 +41515,6 @@ "isPrivate": false, "description": "Emit event periodically (even when app is in the background)", "topics": [ - "react-native", "background", "timer", "android", @@ -41850,13 +41530,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-background-timer", "npm": { - "downloads": 444925, - "weekDownloads": 61324, + "downloads": 491546, + "weekDownloads": 123386, "size": 31801, "latestRelease": "2.4.1", "latestReleaseDate": "2020-10-01T15:46:09.335Z" @@ -41869,8 +41550,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.633, - "topicSearchString": "react-native background timer android ios" + "popularity": -0.537, + "topicSearchString": "background timer android ios" }, { "githubUrl": "https://github.com/kalontech/ReactNativeWheelPicker", @@ -41903,8 +41584,7 @@ "isPrivate": false, "description": "Simple Wheel Picker for Android to use with react-native", "topics": [ - "react-component", - "react-native", + "component", "android", "picker", "wheel-picker", @@ -41921,12 +41601,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 48849, - "weekDownloads": 9241, + "downloads": 37527, + "weekDownloads": 7992, "size": 2257167, "latestRelease": "2.0.6", "latestReleaseDate": "2020-02-25T15:54:24.901Z" @@ -41937,8 +41618,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, - "topicSearchString": "react-component react-native android picker wheel-picker date-picker date-wheel-picker" + "popularity": -0.569, + "topicSearchString": "component android picker wheel-picker date-picker date-wheel-picker" }, { "githubUrl": "https://github.com/pohodnya/react-native-round-flags", @@ -41981,12 +41662,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-round-flags", "npm": { - "downloads": 2844, - "weekDownloads": 510, + "downloads": 2800, + "weekDownloads": 553, "latestRelease": "1.0.4", "latestReleaseDate": "2017-08-30T04:33:20.758Z" }, @@ -41995,7 +41677,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.848, + "popularity": -0.832, "topicSearchString": "" }, { @@ -42020,7 +41702,7 @@ "forks": 29, "issues": 0, "subscribers": 3, - "stars": 57, + "stars": 58, "dependencies": 1 }, "name": "react-native-easy-markdown", @@ -42028,8 +41710,6 @@ "isPrivate": false, "description": "Simple & customizable React Native component to render Github-flavoured markdown using minimal native components.", "topics": [ - "react-native", - "native", "markdown", "parse", "parser" @@ -42044,13 +41724,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-easy-markdown", "npm": { - "downloads": 16120, - "weekDownloads": 1998, + "downloads": 13632, + "weekDownloads": 2936, "size": 46954, "latestRelease": "2.0.0", "latestReleaseDate": "2020-02-26T18:36:31.676Z" @@ -42060,8 +41741,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.645, - "topicSearchString": "react-native native markdown parse parser" + "popularity": -0.567, + "topicSearchString": "markdown parse parser" }, { "githubUrl": "https://github.com/mkuczera/react-native-haptic-feedback", @@ -42085,7 +41766,7 @@ "forks": 106, "issues": 14, "subscribers": 9, - "stars": 930, + "stars": 935, "dependencies": 0 }, "name": "react-native-haptic-feedback", @@ -42094,12 +41775,10 @@ "registry": "https://registry.npmjs.org/", "description": "React-Native Haptic Feedback for iOS with Android similar behaviour.", "topics": [ - "react-native", "haptic", "haptic-feedback", "android", "ios", - "native", "feedback" ], "license": { @@ -42112,31 +41791,33 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-haptic-feedback", "npm": { - "downloads": 924502, - "weekDownloads": 148960, + "downloads": 850698, + "weekDownloads": 195627, "size": 85065, "latestRelease": "2.3.3", "latestReleaseDate": "2024-09-18T14:07:52.181Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.137, - "topicSearchString": "react-native haptic haptic-feedback android ios native feedback" + "popularity": 0.195, + "topicSearchString": "haptic haptic-feedback android ios feedback" }, { "githubUrl": "https://github.com/tschoffelen/react-native-map-link", "ios": true, "android": true, "expoGo": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/tschoffelen/react-native-map-link", @@ -42152,9 +41833,9 @@ "createdAt": "2017-12-02T20:42:59Z", "pushedAt": "2025-04-01T10:04:46Z", "forks": 143, - "issues": 2, + "issues": 1, "subscribers": 6, - "stars": 774, + "stars": 779, "dependencies": 0 }, "name": "react-native-map-link", @@ -42162,12 +41843,10 @@ "isPrivate": false, "description": "🗺 Open the map app of the user's choice.", "topics": [ - "react-native", - "react-component", + "component", "maps", "link", "linking", - "react", "ios", "android", "directions" @@ -42182,24 +41861,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true }, "npmPkg": "react-native-map-link", "npm": { - "downloads": 126583, - "weekDownloads": 21722, + "downloads": 130990, + "weekDownloads": 27694, "size": 310543, "latestRelease": "3.9.0", "latestReleaseDate": "2025-04-01T10:07:23.875Z" }, - "score": 68, + "score": 57, "matchingScoreModifiers": [ "Popular", "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.146, - "topicSearchString": "react-native react-component maps link linking react ios android directions" + "popularity": 0.18, + "topicSearchString": "component maps link linking ios android directions" }, { "githubUrl": "https://github.com/n4kz/react-native-material-dropdown", @@ -42221,10 +41902,10 @@ "updatedAt": "2018-03-22T08:21:00Z", "createdAt": "2017-05-26T09:33:41Z", "pushedAt": "2018-03-22T08:21:00Z", - "forks": 468, + "forks": 466, "issues": 132, "subscribers": 13, - "stars": 755, + "stars": 758, "dependencies": 4 }, "name": "react-native-material-dropdown", @@ -42232,9 +41913,7 @@ "isPrivate": false, "description": "Material dropdown with consistent behaviour on iOS and Android", "topics": [ - "react", - "react-component", - "react-native", + "component", "ios", "android", "material", @@ -42253,12 +41932,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-material-dropdown", "npm": { - "downloads": 16779, - "weekDownloads": 3380, + "downloads": 11406, + "weekDownloads": 2679, "size": 28106, "latestRelease": "0.11.1", "latestReleaseDate": "2018-03-22T08:21:16.073Z" @@ -42271,8 +41951,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, - "topicSearchString": "react react-component react-native ios android material dropdown spinner select material-design" + "popularity": -0.55, + "topicSearchString": "component ios android material dropdown spinner select material-design" }, { "githubUrl": "https://github.com/Flipkart/recyclerlistview", @@ -42304,10 +41984,10 @@ "updatedAt": "2025-03-15T03:05:15Z", "createdAt": "2017-04-16T06:14:33Z", "pushedAt": "2025-03-15T03:05:15Z", - "forks": 425, + "forks": 424, "issues": 235, - "subscribers": 66, - "stars": 5414, + "subscribers": 65, + "stars": 5418, "dependencies": 3 }, "name": "recyclerlistview", @@ -42315,7 +41995,6 @@ "isPrivate": false, "description": "High performance listview for React Native and web!", "topics": [ - "react-native", "recyclerview", "listview", "flatlist-alternative", @@ -42335,12 +42014,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "recyclerlistview", "npm": { - "downloads": 2992816, - "weekDownloads": 505970, + "downloads": 2838055, + "weekDownloads": 674678, "size": 6000510, "latestRelease": "4.2.3", "latestReleaseDate": "2025-03-15T02:49:28.974Z" @@ -42354,8 +42034,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.144, - "topicSearchString": "react-native recyclerview listview flatlist-alternative flatlist 60fps cross-platform web performance" + "popularity": 0.202, + "topicSearchString": "recyclerview listview flatlist-alternative flatlist 60fps cross-platform web performance" }, { "githubUrl": "https://github.com/nitaliano/react-native-mapbox-gl", @@ -42377,9 +42057,9 @@ "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": 89, + "subscribers": 88, "stars": 2172, "dependencies": 2 }, @@ -42392,8 +42072,7 @@ "ios", "android", "mapbox", - "react-component", - "react-native", + "component", "mapbox-gl" ], "license": { @@ -42406,11 +42085,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1083, - "weekDownloads": 243, + "downloads": 3317, + "weekDownloads": 587, "size": 1253865, "latestRelease": "6.1.3", "latestReleaseDate": "2018-08-24T16:24:08.947Z" @@ -42424,8 +42104,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.559, - "topicSearchString": "gl ios android mapbox react-component react-native mapbox-gl" + "popularity": -0.599, + "topicSearchString": "gl ios android mapbox component mapbox-gl" }, { "githubUrl": "https://github.com/aksonov/react-native-tableview", @@ -42446,8 +42126,8 @@ "pushedAt": "2021-01-04T15:57:17Z", "forks": 182, "issues": 25, - "subscribers": 27, - "stars": 1422, + "subscribers": 26, + "stars": 1420, "dependencies": 1 }, "name": "react-native-tableview", @@ -42455,8 +42135,7 @@ "isPrivate": false, "description": "Native iOS UITableView for React Native with JSON support and more", "topics": [ - "react-native", - "react-component", + "component", "uitableview", "tableview", "ios" @@ -42471,13 +42150,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tableview", "npm": { - "downloads": 5583, - "weekDownloads": 528, + "downloads": 15523, + "weekDownloads": 2637, "size": 2630501, "latestRelease": "3.1.0", "latestReleaseDate": "2021-01-04T15:59:15.670Z" @@ -42489,8 +42169,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.67, - "topicSearchString": "react-native react-component uitableview tableview ios" + "popularity": -0.606, + "topicSearchString": "component uitableview tableview ios" }, { "githubUrl": "https://github.com/bolan9999/react-native-largelist/tree/master/src", @@ -42523,8 +42203,7 @@ "isPrivate": false, "description": "The best performance large list component which is much better than SectionList for React Native.", "topics": [ - "react-native", - "react-component", + "component", "large-list", "flatlist", "sectionlist", @@ -42543,12 +42222,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 1218, - "weekDownloads": 226, + "downloads": 983, + "weekDownloads": 360, "size": 44958, "latestRelease": "3.1.0-rc.2", "latestReleaseDate": "2021-08-05T10:43:20.245Z" @@ -42560,8 +42240,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, - "topicSearchString": "react-native react-component large-list flatlist sectionlist tableview high-performance swipeout swipable-flatlist" + "popularity": -1.188, + "topicSearchString": "component large-list flatlist sectionlist tableview high-performance swipeout swipable-flatlist" }, { "githubUrl": "https://github.com/magicismight/react-native-root-toast", @@ -42585,10 +42265,10 @@ "updatedAt": "2025-04-16T04:30:56Z", "createdAt": "2016-02-23T04:52:07Z", "pushedAt": "2025-04-16T04:30:56Z", - "forks": 380, + "forks": 379, "issues": 74, "subscribers": 29, - "stars": 2129, + "stars": 2131, "dependencies": 1 }, "name": "react-native-root-toast", @@ -42596,8 +42276,7 @@ "isPrivate": false, "description": "react native toast like component, pure javascript solution", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "image", @@ -42614,24 +42293,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-root-toast", "npm": { - "downloads": 198597, - "weekDownloads": 32940, + "downloads": 173281, + "weekDownloads": 39921, "size": 17928, "latestRelease": "4.0.1", "latestReleaseDate": "2025-03-25T04:00:23.008Z" }, - "score": 68, + "score": 57, "matchingScoreModifiers": [ "Popular", "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.141, - "topicSearchString": "react-component react-native ios android image video focus" + "popularity": 0.196, + "topicSearchString": "component ios android image video focus" }, { "githubUrl": "https://github.com/brh55/react-native-masonry", @@ -42655,7 +42336,7 @@ "forks": 150, "issues": 23, "subscribers": 12, - "stars": 1351, + "stars": 1356, "dependencies": 6 }, "name": "react-native-masonry", @@ -42663,14 +42344,12 @@ "isPrivate": false, "description": " :raised_hands: A pure JS react-native component to render a masonry~ish layout for images with support for dynamic columns, progressive image loading, device rotation, on-press handlers, and headers/captions.", "topics": [ - "react-native", "masonry", "pinterest", "grid", "layout", "masonry-layout", "masonry-grid", - "react", "pinterest-like" ], "license": { @@ -42683,13 +42362,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-masonry", "npm": { - "downloads": 159, - "weekDownloads": 25, + "downloads": 333, + "weekDownloads": 19, "size": 27582, "latestRelease": "0.5.0-alpha.5", "latestReleaseDate": "2019-06-16T00:10:35.472Z" @@ -42701,8 +42381,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.365, - "topicSearchString": "react-native masonry pinterest grid layout masonry-layout masonry-grid react pinterest-like" + "popularity": -1.451, + "topicSearchString": "masonry pinterest grid layout masonry-layout masonry-grid pinterest-like" }, { "githubUrl": "https://github.com/sghiassy/react-native-sglistview", @@ -42737,8 +42417,6 @@ "topics": [ "reactnative", "listview", - "react", - "react-native", "component", "sglistview", "sglistview-performance", @@ -42754,12 +42432,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sglistview", "npm": { - "downloads": 33, - "weekDownloads": 0, + "downloads": 135, + "weekDownloads": 6, "latestRelease": "0.4.5", "latestReleaseDate": "2018-01-15T03:59:20.779Z" }, @@ -42770,8 +42449,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "reactnative listview react react-native component sglistview sglistview-performance sg" + "popularity": -1.461, + "topicSearchString": "reactnative listview component sglistview sglistview-performance sg" }, { "githubUrl": "https://github.com/thegamenicorus/react-native-timeline-listview", @@ -42796,7 +42475,7 @@ "forks": 175, "issues": 37, "subscribers": 25, - "stars": 1180, + "stars": 1181, "dependencies": 0 }, "name": "react-native-timeline-listview", @@ -42804,7 +42483,6 @@ "isPrivate": false, "description": "Timeline component for React Native App", "topics": [ - "react-native", "timeline", "listview", "schedule", @@ -42822,12 +42500,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-timeline-listview", "npm": { - "downloads": 372, - "weekDownloads": 52, + "downloads": 413, + "weekDownloads": 62, "size": 26102, "latestRelease": "0.2.3", "latestReleaseDate": "2018-03-05T14:30:41.977Z" @@ -42839,8 +42518,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.38, - "topicSearchString": "react-native timeline listview schedule component ios android" + "popularity": -1.372, + "topicSearchString": "timeline listview schedule component ios android" }, { "githubUrl": "https://github.com/mohebifar/react-native-copilot", @@ -42861,10 +42540,10 @@ "updatedAt": "2024-12-17T21:36:24Z", "createdAt": "2017-10-06T17:32:03Z", "pushedAt": "2024-12-17T21:36:24Z", - "forks": 399, + "forks": 398, "issues": 99, - "subscribers": 19, - "stars": 2381, + "subscribers": 18, + "stars": 2385, "dependencies": 3 }, "name": "react-native-copilot", @@ -42872,9 +42551,7 @@ "isPrivate": false, "description": "Step-by-step walkthrough tooltip for your react native app", "topics": [ - "react-native", "joyride", - "react", "copilot", "intro.js", "intro", @@ -42892,12 +42569,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-copilot", "npm": { - "downloads": 36538, - "weekDownloads": 6220, + "downloads": 33446, + "weekDownloads": 7138, "size": 207766, "latestRelease": "3.3.3", "latestReleaseDate": "2024-12-17T21:34:49.626Z" @@ -42910,8 +42588,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "react-native joyride react copilot intro.js intro walkthrough tooltip tutorial" + "popularity": 0.181, + "topicSearchString": "joyride copilot intro.js intro walkthrough tooltip tutorial" }, { "githubUrl": "https://github.com/jgrancher/react-native-sketch", @@ -42932,7 +42610,7 @@ "updatedAt": "2021-08-12T07:17:47Z", "createdAt": "2016-05-10T12:41:43Z", "pushedAt": "2021-08-12T07:17:47Z", - "forks": 59, + "forks": 58, "issues": 10, "subscribers": 7, "stars": 645, @@ -42943,9 +42621,7 @@ "isPrivate": false, "description": "🎨 A React Native component for touch-based drawing.", "topics": [ - "react", - "react-component", - "react-native", + "component", "ios", "sketch", "draw", @@ -42965,12 +42641,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sketch", "npm": { - "downloads": 75, - "weekDownloads": 13, + "downloads": 105, + "weekDownloads": 3, "latestRelease": "1.1.0", "latestReleaseDate": "2017-11-27T01:36:16.536Z" }, @@ -42980,8 +42657,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.347, - "topicSearchString": "react react-component react-native ios sketch draw drawing touch paint canvas signature" + "popularity": -1.475, + "topicSearchString": "component ios sketch draw drawing touch paint canvas signature" }, { "githubUrl": "https://github.com/galio-org/galio", @@ -43000,13 +42677,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-13T14:47:05Z", + "updatedAt": "2025-10-21T13:58:51Z", "createdAt": "2018-06-17T16:14:11Z", - "pushedAt": "2025-09-13T14:47:05Z", - "forks": 320, - "issues": 49, - "subscribers": 52, - "stars": 3173, + "pushedAt": "2025-10-21T13:58:51Z", + "forks": 322, + "issues": 43, + "subscribers": 51, + "stars": 3178, "dependencies": 3 }, "name": "galio-framework", @@ -43016,13 +42693,11 @@ "topics": [ "android", "ios", - "react-native", "component-library", "ui-kit", "bootstrap", "typescript", "mobile-apps", - "react", "expo", "galio", "mobile-development", @@ -43040,14 +42715,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4685, - "weekDownloads": 756, - "size": 637691, - "latestRelease": "0.9.4", - "latestReleaseDate": "2025-08-28T06:57:41.307Z" + "downloads": 7829, + "weekDownloads": 901, + "size": 748993, + "latestRelease": "0.9.5", + "latestReleaseDate": "2025-10-21T13:53:15.510Z" }, "score": 73, "matchingScoreModifiers": [ @@ -43056,8 +42732,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.137, - "topicSearchString": "android ios react-native component-library ui-kit bootstrap typescript mobile-apps react expo galio mobile-development reactnative app ui" + "popularity": 0.098, + "topicSearchString": "android ios component-library ui-kit bootstrap typescript mobile-apps expo galio mobile-development reactnative app ui" }, { "githubUrl": "https://github.com/saleel/react-native-super-grid", @@ -43080,8 +42756,8 @@ "pushedAt": "2025-08-25T03:17:50Z", "forks": 152, "issues": 3, - "subscribers": 30, - "stars": 1468, + "subscribers": 29, + "stars": 1473, "dependencies": 0 }, "name": "react-native-super-grid", @@ -43089,8 +42765,6 @@ "isPrivate": false, "description": "Responsive Grid View for React Native", "topics": [ - "react", - "react-native", "responsive", "super", "grid", @@ -43114,25 +42788,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-super-grid", "npm": { - "downloads": 95111, - "weekDownloads": 15740, + "downloads": 85346, + "weekDownloads": 19091, "size": 47560, "latestRelease": "6.0.2", "latestReleaseDate": "2025-08-25T03:18:19.866Z" }, - "score": 73, + "score": 68, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.141, - "topicSearchString": "react react-native responsive super grid view flat-list list-view section-list grid-view gridview listview flatlist responsive-grid" + "popularity": 0.19, + "topicSearchString": "responsive super grid view flat-list list-view section-list grid-view gridview listview flatlist responsive-grid" }, { "githubUrl": "https://github.com/naoufal/react-native-activity-view", @@ -43155,7 +42829,7 @@ "pushedAt": "2017-03-22T23:49:10Z", "forks": 53, "issues": 22, - "subscribers": 8, + "subscribers": 7, "stars": 480, "dependencies": 0 }, @@ -43164,11 +42838,7 @@ "isPrivate": false, "description": "iOS share and action sheets for React Native", "topics": [ - "react-native", - "react", - "native", "activity-view", - "react-component", "component", "action-sheet", "share-sheet", @@ -43181,6 +42851,7 @@ "airdrop" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -43189,12 +42860,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-activity-view", "npm": { - "downloads": 321, - "weekDownloads": 42, + "downloads": 309, + "weekDownloads": 88, "latestRelease": "0.2.11", "latestReleaseDate": "2017-03-22T23:52:25.159Z" }, @@ -43204,8 +42876,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.388, - "topicSearchString": "react-native react native activity-view react-component component action-sheet share-sheet share sheet facebook twitter mail social airdrop" + "popularity": -1.256, + "topicSearchString": "activity-view component action-sheet share-sheet share sheet facebook twitter mail social airdrop" }, { "githubUrl": "https://github.com/syrusakbary/react-native-refresher", @@ -43228,7 +42900,7 @@ "pushedAt": "2016-03-18T15:20:36Z", "forks": 31, "issues": 11, - "subscribers": 9, + "subscribers": 8, "stars": 451, "dependencies": 1 }, @@ -43237,9 +42909,6 @@ "isPrivate": false, "description": "A pull to refresh ListView for React Native completely written in js.", "topics": [ - "react", - "react-native", - "react-component", "component", "mobile", "ui" @@ -43254,12 +42923,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-refresher", "npm": { - "downloads": 22, - "weekDownloads": 8, + "downloads": 28, + "weekDownloads": 4, "latestRelease": "0.1.1", "latestReleaseDate": "2015-07-23T08:17:04.177Z" }, @@ -43269,8 +42939,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.18, - "topicSearchString": "react react-native react-component component mobile ui" + "popularity": -1.367, + "topicSearchString": "component mobile ui" }, { "githubUrl": "https://github.com/nick/react-native-carousel", @@ -43302,7 +42972,6 @@ "isPrivate": false, "description": "Carousel component for react-native", "topics": [ - "react-native", "carousel" ], "license": { @@ -43315,12 +42984,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-carousel", "npm": { - "downloads": 2102, - "weekDownloads": 406, + "downloads": 2008, + "weekDownloads": 704, "size": 11901, "latestRelease": "0.12.0", "latestReleaseDate": "2019-10-11T13:57:18.846Z" @@ -43331,8 +43001,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, - "topicSearchString": "react-native carousel" + "popularity": -0.452, + "topicSearchString": "carousel" }, { "githubUrl": "https://github.com/globocom/react-native-draftjs-render", @@ -43355,7 +43025,7 @@ "pushedAt": "2019-01-04T18:01:17Z", "forks": 57, "issues": 10, - "subscribers": 21, + "subscribers": 20, "stars": 391, "dependencies": 1 }, @@ -43364,7 +43034,6 @@ "isPrivate": false, "description": "React Native render for draft.js model", "topics": [ - "react-native", "draft-js", "reactnative", "draftjs" @@ -43379,12 +43048,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-draftjs-render", "npm": { - "downloads": 4623, - "weekDownloads": 1803, + "downloads": 2758, + "weekDownloads": 599, "size": 445966, "latestRelease": "2.9.0", "latestReleaseDate": "2019-01-04T18:02:11.133Z" @@ -43395,8 +43065,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.418, - "topicSearchString": "react-native draft-js reactnative draftjs" + "popularity": -0.565, + "topicSearchString": "draft-js reactnative draftjs" }, { "githubUrl": "https://github.com/christopherdro/react-native-html-to-pdf", @@ -43416,10 +43086,10 @@ "updatedAt": "2025-09-04T15:41:21Z", "createdAt": "2015-09-04T04:18:04Z", "pushedAt": "2025-09-04T15:41:21Z", - "forks": 225, - "issues": 7, + "forks": 226, + "issues": 4, "subscribers": 10, - "stars": 449, + "stars": 453, "dependencies": 0 }, "name": "react-native-html-to-pdf", @@ -43428,7 +43098,6 @@ "registry": "https://registry.npmjs.org/", "description": "Convert html strings to PDF documents using React Native", "topics": [ - "react-native", "ios", "android" ], @@ -43442,25 +43111,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-html-to-pdf", "npm": { - "downloads": 118156, - "weekDownloads": 18822, + "downloads": 115291, + "weekDownloads": 25263, "size": 45664, "latestRelease": "1.3.0", "latestReleaseDate": "2025-09-04T15:41:20.650Z" }, - "score": 73, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.135, - "topicSearchString": "react-native ios android" + "popularity": 0.186, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/almost/react-native-html-webview", @@ -43484,7 +43153,7 @@ "pushedAt": "2016-05-30T04:21:12Z", "forks": 17, "issues": 4, - "subscribers": 4, + "subscribers": 3, "stars": 107, "dependencies": 2 }, @@ -43493,10 +43162,8 @@ "isPrivate": false, "description": "Display HTML in a UIWebView, optionally sanitizing it first", "topics": [ - "react-component", + "component", "reactnative", - "react-native", - "react", "html", "ios" ], @@ -43510,11 +43177,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-html-webview", "npm": { - "downloads": 6, + "downloads": 203, "weekDownloads": 2, "latestRelease": "0.0.17", "latestReleaseDate": "2015-12-09T19:01:21.662Z" @@ -43524,8 +43192,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.1, - "topicSearchString": "react-component reactnative react-native react html ios" + "popularity": -1.491, + "topicSearchString": "component reactnative html ios" }, { "githubUrl": "https://github.com/soliury/react-native-html-render", @@ -43557,13 +43225,12 @@ "isPrivate": false, "description": "A html render for react-native", "topics": [ - "react-component", - "react-native", + "component", "ios", - "noder", - "react" + "noder" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -43572,12 +43239,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-html-render", "npm": { - "downloads": 61, - "weekDownloads": 11, + "downloads": 109, + "weekDownloads": 13, "latestRelease": "1.0.5", "latestReleaseDate": "2016-10-24T15:21:14.686Z" }, @@ -43586,8 +43254,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.343, - "topicSearchString": "react-component react-native ios noder react" + "popularity": -1.396, + "topicSearchString": "component ios noder" }, { "githubUrl": "https://github.com/airamrguez/react-native-measure-text", @@ -43619,7 +43287,6 @@ "isPrivate": false, "description": "Measure text width and/or height without laying it out.", "topics": [ - "react-native", "measure", "text", "height", @@ -43638,12 +43305,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-measure-text", "npm": { - "downloads": 1936, - "weekDownloads": 473, + "downloads": 2327, + "weekDownloads": 398, "latestRelease": "1.0.0-alpha.2", "latestReleaseDate": "2017-10-12T15:20:19.824Z" }, @@ -43652,8 +43320,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.542, - "topicSearchString": "react-native measure text height precompute block multiline measue" + "popularity": -0.604, + "topicSearchString": "measure text height precompute block multiline measue" }, { "githubUrl": "https://github.com/vinzscam/react-native-file-viewer", @@ -43688,7 +43356,6 @@ "isPrivate": false, "description": "Native file viewer for React Native. Preview any type of file supported by the mobile device.", "topics": [ - "react-native", "mobile", "ios", "android", @@ -43710,13 +43377,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-file-viewer", "npm": { - "downloads": 337539, - "weekDownloads": 60159, + "downloads": 291924, + "weekDownloads": 68361, "size": 55043, "latestRelease": "2.1.5", "latestReleaseDate": "2021-12-12T21:32:25.131Z" @@ -43728,8 +43396,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, - "topicSearchString": "react-native mobile ios android windows file viewer preview quicklook pdf doc" + "popularity": -0.551, + "topicSearchString": "mobile ios android windows file viewer preview quicklook pdf doc" }, { "githubUrl": "https://github.com/heyman333/react-native-responsive-fontsize", @@ -43753,7 +43421,7 @@ "forks": 37, "issues": 7, "subscribers": 5, - "stars": 700, + "stars": 704, "dependencies": 1 }, "name": "react-native-responsive-fontsize", @@ -43761,12 +43429,9 @@ "isPrivate": false, "description": "🔠 Responsive fontSize based on screen-size of the device in React-Native", "topics": [ - "react-native", "component", - "react-component", "ios", "android", - "react", "font", "fontsize", "font-size", @@ -43784,13 +43449,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-responsive-fontsize", "npm": { - "downloads": 92736, - "weekDownloads": 17013, + "downloads": 88548, + "weekDownloads": 18216, "size": 13764, "latestRelease": "0.5.1", "latestReleaseDate": "2021-07-17T11:29:29.158Z" @@ -43801,8 +43467,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, - "topicSearchString": "react-native component react-component ios android react font fontsize font-size reponsive git github" + "popularity": -0.575, + "topicSearchString": "component ios android font fontsize font-size reponsive git github" }, { "githubUrl": "https://github.com/aMarCruz/react-native-text-size", @@ -43825,7 +43491,7 @@ "pushedAt": "2022-09-01T01:52:01Z", "forks": 81, "issues": 15, - "subscribers": 8, + "subscribers": 7, "stars": 410, "dependencies": 0 }, @@ -43834,7 +43500,6 @@ "isPrivate": false, "description": "Measure text accurately before laying it out and get font information from your App.", "topics": [ - "react-native", "measure", "text", "size", @@ -43856,12 +43521,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-text-size", "npm": { - "downloads": 34418, - "weekDownloads": 5314, + "downloads": 31748, + "weekDownloads": 6613, "size": 167153, "latestRelease": "4.0.0-rc.1", "latestReleaseDate": "2019-07-30T00:39:34.313Z" @@ -43872,8 +43538,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, - "topicSearchString": "react-native measure text size height width precompute block layout multiline fonts" + "popularity": -0.573, + "topicSearchString": "measure text size height width precompute block layout multiline fonts" }, { "githubUrl": "https://github.com/agentcooper/react-native-hypertext", @@ -43896,7 +43562,7 @@ "pushedAt": "2016-02-22T00:15:00Z", "forks": 9, "issues": 1, - "subscribers": 1, + "subscribers": 0, "stars": 22, "dependencies": 1 }, @@ -43905,8 +43571,6 @@ "isPrivate": false, "description": "React Native module to render hypertext (text with links)", "topics": [ - "react", - "native", "hypertext", "html", "links" @@ -43915,11 +43579,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-hypertext", "npm": { - "downloads": 8, + "downloads": 30, "weekDownloads": 3, "latestRelease": "0.0.3", "latestReleaseDate": "2016-06-13T21:30:01.186Z" @@ -43930,8 +43595,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.15, - "topicSearchString": "react native hypertext html links" + "popularity": -1.664, + "topicSearchString": "hypertext html links" }, { "githubUrl": "https://github.com/turley/react-native-asciimage", @@ -43954,7 +43619,7 @@ "pushedAt": "2015-08-06T00:09:06Z", "forks": 2, "issues": 0, - "subscribers": 3, + "subscribers": 2, "stars": 23, "dependencies": 0 }, @@ -43963,11 +43628,8 @@ "isPrivate": false, "description": "An component for React Native", "topics": [ - "react-native", - "react", - "react-component", + "component", "ios", - "native", "ascii", "asciimage", "image" @@ -43982,11 +43644,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-asciimage", "npm": { - "downloads": 3, + "downloads": 36, "weekDownloads": 1, "latestRelease": "0.1.5", "latestReleaseDate": "2015-08-06T00:09:28.714Z" @@ -43996,8 +43659,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native react react-component ios native ascii asciimage image" + "popularity": -1.725, + "topicSearchString": "component ios ascii asciimage image" }, { "githubUrl": "https://github.com/corymsmith/react-native-fabric", @@ -44020,8 +43683,8 @@ "pushedAt": "2019-08-23T10:25:24Z", "forks": 223, "issues": 32, - "subscribers": 20, - "stars": 1308, + "subscribers": 19, + "stars": 1309, "dependencies": 0 }, "name": "react-native-fabric", @@ -44035,9 +43698,6 @@ "fabric", "ios", "mobile", - "react", - "react-component", - "react-native", "component" ], "license": { @@ -44050,12 +43710,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fabric", "npm": { - "downloads": 1364, - "weekDownloads": 178, + "downloads": 1257, + "weekDownloads": 222, "size": 131634, "latestRelease": "0.5.2", "latestReleaseDate": "2018-09-28T14:07:58.082Z" @@ -44067,8 +43728,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.639, - "topicSearchString": "android answers crashlytics fabric ios mobile react react-component react-native component" + "popularity": -0.599, + "topicSearchString": "android answers crashlytics fabric ios mobile component" }, { "githubUrl": "https://github.com/uxcam/react-native-ux-cam/tree/master/uxcam-react-wrapper", @@ -44100,10 +43761,8 @@ "isPrivate": false, "description": "React Native wrapper for uxcam.com.", "topics": [ - "react-native", "android", "ios", - "react-native", "user-sessions", "ux", "uxcam", @@ -44119,21 +43778,20 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 49785, - "weekDownloads": 7056, + "downloads": 49523, + "weekDownloads": 13823, "size": 157052, "latestRelease": "6.0.7", "latestReleaseDate": "2025-06-19T06:26:54.935Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": 0.12, - "topicSearchString": "react-native android ios react-native user-sessions ux uxcam ux-cam" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.237, + "topicSearchString": "android ios user-sessions ux uxcam ux-cam" }, { "githubUrl": "https://github.com/quipper/react-native-td", @@ -44156,7 +43814,7 @@ "pushedAt": "2018-07-01T04:25:30Z", "forks": 4, "issues": 0, - "subscribers": 171, + "subscribers": 170, "stars": 28, "dependencies": 0 }, @@ -44165,7 +43823,6 @@ "isPrivate": false, "description": "An unofficial React Native SDK for Treasure Data.", "topics": [ - "react-native", "treasure-data", "typescript", "treasuredata" @@ -44180,12 +43837,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-td", "npm": { - "downloads": 15, - "weekDownloads": 3, + "downloads": 23, + "weekDownloads": 4, "size": 60608, "latestRelease": "0.9.3", "latestReleaseDate": "2018-07-01T04:20:40.275Z" @@ -44196,8 +43854,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "react-native treasure-data typescript treasuredata" + "popularity": -1.34, + "topicSearchString": "treasure-data typescript treasuredata" }, { "githubUrl": "https://github.com/flurry/react-native-flurry-sdk", @@ -44219,7 +43877,7 @@ "pushedAt": "2023-08-28T18:22:04Z", "forks": 12, "issues": 5, - "subscribers": 9, + "subscribers": 8, "stars": 45, "dependencies": 0 }, @@ -44228,7 +43886,6 @@ "isPrivate": false, "description": "React Native Flurry SDK", "topics": [ - "react-native", "module", "android", "ios", @@ -44250,13 +43907,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-flurry-sdk", "npm": { - "downloads": 458, - "weekDownloads": 96, + "downloads": 802, + "weekDownloads": 68, "size": 330084, "latestRelease": "8.3.0", "latestReleaseDate": "2023-08-28T18:23:43.418Z" @@ -44266,8 +43924,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.321, - "topicSearchString": "react-native module android ios tvos flurry analytics config messaging push marketing" + "popularity": -1.428, + "topicSearchString": "module android ios tvos flurry analytics config messaging push marketing" }, { "githubUrl": "https://github.com/Microsoft/reactxp", @@ -44290,8 +43948,8 @@ "pushedAt": "2023-06-12T20:09:22Z", "forks": 481, "issues": 69, - "subscribers": 237, - "stars": 8264, + "subscribers": 236, + "stars": 8261, "dependencies": 4 }, "name": "reactxp", @@ -44309,13 +43967,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "reactxp", "npm": { - "downloads": 2405, - "weekDownloads": 368, + "downloads": 1641, + "weekDownloads": 195, "size": 1898969, "latestRelease": "2.0.0", "latestReleaseDate": "2019-11-30T09:11:12.630Z" @@ -44328,7 +43987,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.62, + "popularity": -0.649, "topicSearchString": "" }, { @@ -44361,7 +44020,6 @@ "isPrivate": false, "description": "Native modules to determine if a location is within defined geographical boundaries using Google Geometry library", "topics": [ - "react-native", "googlemaps", "geometry", "polygon", @@ -44378,12 +44036,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-geo-fencing", "npm": { - "downloads": 442, - "weekDownloads": 70, + "downloads": 384, + "weekDownloads": 86, "latestRelease": "0.1.0", "latestReleaseDate": "2016-05-24T09:28:10.137Z" }, @@ -44393,8 +44052,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.365, - "topicSearchString": "react-native googlemaps geometry polygon containslocation geo-fencing" + "popularity": -1.309, + "topicSearchString": "googlemaps geometry polygon containslocation geo-fencing" }, { "githubUrl": "https://github.com/MustansirZia/react-native-fused-location", @@ -44416,7 +44075,7 @@ "pushedAt": "2022-01-02T15:44:38Z", "forks": 33, "issues": 12, - "subscribers": 9, + "subscribers": 8, "stars": 127, "dependencies": 0 }, @@ -44425,15 +44084,12 @@ "isPrivate": false, "description": "Finest location for react-native on Android using the new Fused API. ", "topics": [ - "react", - "react-native", "location", "gps", "fused", "android", "play-services", "npm", - "native", "javascript" ], "license": { @@ -44446,12 +44102,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fused-location", "npm": { - "downloads": 736, - "weekDownloads": 115, + "downloads": 750, + "weekDownloads": 107, "size": 35958, "latestRelease": "1.1.2", "latestReleaseDate": "2022-01-02T15:47:41.038Z" @@ -44462,8 +44119,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.367, - "topicSearchString": "react react-native location gps fused android play-services npm native javascript" + "popularity": -1.378, + "topicSearchString": "location gps fused android play-services npm javascript" }, { "githubUrl": "https://github.com/yelled3/react-native-google-static-map", @@ -44495,20 +44152,20 @@ "isPrivate": false, "description": "A wrapper for Google's Static Maps", "topics": [ - "react-component", - "react-native", + "component", "ios" ], "license": null, "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-google-static-map", "npm": { - "downloads": 675, - "weekDownloads": 200, + "downloads": 413, + "weekDownloads": 33, "size": 7354, "latestRelease": "0.1.13", "latestReleaseDate": "2018-10-18T11:15:05.671Z" @@ -44519,8 +44176,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.247, - "topicSearchString": "react-component react-native ios" + "popularity": -1.432, + "topicSearchString": "component ios" }, { "githubUrl": "https://github.com/lxsameer/react-native-geolocation-android", @@ -44551,8 +44208,6 @@ "isPrivate": false, "description": "Geolocation module for android", "topics": [ - "react", - "native", "android", "location", "gps", @@ -44562,12 +44217,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-geolocation-android", "npm": { - "downloads": 8, - "weekDownloads": 0, + "downloads": 41, + "weekDownloads": 9, "latestRelease": "0.3.0", "latestReleaseDate": "2015-11-11T14:32:26.871Z" }, @@ -44577,8 +44233,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react native android location gps geolocation" + "popularity": -1.55, + "topicSearchString": "android location gps geolocation" }, { "githubUrl": "https://github.com/GregFrench/react-native-wheel-picker", @@ -44599,7 +44255,7 @@ "updatedAt": "2021-11-14T21:06:11Z", "createdAt": "2019-12-27T22:01:01Z", "pushedAt": "2021-11-14T21:06:11Z", - "forks": 62, + "forks": 63, "issues": 0, "subscribers": 1, "stars": 67, @@ -44610,7 +44266,6 @@ "isPrivate": false, "description": "React native cross platform picker.", "topics": [ - "react-native", "picker", "wheel" ], @@ -44624,12 +44279,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 210, - "weekDownloads": 38, + "downloads": 844, + "weekDownloads": 110, "size": 272387, "latestRelease": "1.2.18", "latestReleaseDate": "2021-11-14T21:09:11.181Z" @@ -44639,8 +44295,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.345, - "topicSearchString": "react-native picker wheel" + "popularity": -1.389, + "topicSearchString": "picker wheel" }, { "githubUrl": "https://github.com/getsentry/sentry-react-native/tree/main/packages/core", @@ -44649,6 +44305,7 @@ "android": true, "expoGo": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/getsentry/sentry-react-native", @@ -44660,13 +44317,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T08:01:33Z", + "updatedAt": "2025-10-21T07:40:43Z", "createdAt": "2016-11-30T14:45:57Z", - "pushedAt": "2025-09-10T08:01:33Z", - "forks": 341, - "issues": 195, + "pushedAt": "2025-10-21T07:40:43Z", + "forks": 342, + "issues": 180, "subscribers": 75, - "stars": 1701, + "stars": 1726, "dependencies": 6 }, "name": "@sentry/react-native", @@ -44674,7 +44331,6 @@ "isPrivate": false, "description": "Official Sentry SDK for react-native", "topics": [ - "react-native", "sentry", "crashreporting", "ios" @@ -44689,26 +44345,27 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 2683347, - "weekDownloads": 428814, - "size": 7011214, - "latestRelease": "7.0.1", - "latestReleaseDate": "2025-09-03T12:50:28.610Z" + "downloads": 2825659, + "weekDownloads": 656970, + "size": 7084767, + "latestRelease": "7.4.0", + "latestReleaseDate": "2025-10-17T13:21:43.390Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.136, - "topicSearchString": "react-native sentry crashreporting ios" + "popularity": 0.198, + "topicSearchString": "sentry crashreporting ios" }, { "githubUrl": "https://github.com/solinor/react-native-bluetooth-status", @@ -44739,8 +44396,7 @@ "isPrivate": false, "description": "React-Native library to query and manage bluetooth state of the device (iOS and Android)", "topics": [ - "react-native", - "react-component", + "component", "bluetooth", "ios", "android" @@ -44755,13 +44411,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bluetooth-status", "npm": { - "downloads": 3084, - "weekDownloads": 434, + "downloads": 2513, + "weekDownloads": 684, "size": 100098, "latestRelease": "1.5.1", "latestReleaseDate": "2020-05-28T12:53:28.135Z" @@ -44772,8 +44429,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.63, - "topicSearchString": "react-native react-component bluetooth ios android" + "popularity": -0.519, + "topicSearchString": "component bluetooth ios android" }, { "githubUrl": "https://github.com/ttdung11t2/react-native-confirmation-code-input", @@ -44805,9 +44462,6 @@ "isPrivate": false, "description": "A react-native component to input confirmation code for both Android and IOS", "topics": [ - "react", - "react-component", - "react-native", "component", "android", "ios", @@ -44827,13 +44481,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-confirmation-code-input", "npm": { - "downloads": 6323, - "weekDownloads": 822, + "downloads": 6340, + "weekDownloads": 1248, "latestRelease": "1.0.4", "latestReleaseDate": "2017-10-10T15:03:16.261Z" }, @@ -44843,13 +44498,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.639, - "topicSearchString": "react react-component react-native component android ios code-input confirmation-code pin-code confirmation-code-input pin-code-input" + "popularity": -0.583, + "topicSearchString": "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", @@ -44861,13 +44517,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2024-05-17T03:59:20Z", + "updatedAt": "2025-10-08T06:55:27Z", "createdAt": "2017-01-12T10:04:59Z", - "pushedAt": "2024-05-17T03:59:20Z", - "forks": 190, - "issues": 46, + "pushedAt": "2025-10-08T06:55:27Z", + "forks": 189, + "issues": 21, "subscribers": 11, - "stars": 349, + "stars": 352, "dependencies": 1 }, "name": "react-native-google-fit", @@ -44875,7 +44531,6 @@ "isPrivate": false, "description": "A React Native bridge module for interacting with Google Fit", "topics": [ - "react-native", "google-fit", "google", "health", @@ -44883,8 +44538,9 @@ "fit", "android", "fitness", - "native", - "reactnative" + "reactnative", + "expo", + "expo-plugin" ], "license": { "key": "mit", @@ -44896,24 +44552,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-google-fit", "npm": { - "downloads": 14456, - "weekDownloads": 2606, - "size": 256303, - "latestRelease": "0.21.0", - "latestReleaseDate": "2024-05-17T03:59:36.859Z" + "downloads": 16811, + "weekDownloads": 3102, + "size": 253120, + "latestRelease": "0.22.1", + "latestReleaseDate": "2025-10-08T06:55:50.014Z" }, - "score": 41, + "score": 57, "matchingScoreModifiers": [ "Known", - "Not updated recently", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, - "topicSearchString": "react-native google-fit google health healthkit fit android fitness native reactnative" + "popularity": 0.157, + "topicSearchString": "google-fit google health healthkit fit android fitness reactnative expo expo-plugin" }, { "githubUrl": "https://github.com/marcshilling/react-native-idle-timer", @@ -44944,10 +44601,7 @@ "isPrivate": false, "description": "A cross-platform bridge that allows you to enable and disable the screen idle timer in your React Native app", "topics": [ - "react-native", "idle-timer", - "react", - "native", "screen", "lock", "sleep", @@ -44965,12 +44619,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-idle-timer", "npm": { - "downloads": 31065, - "weekDownloads": 4847, + "downloads": 28626, + "weekDownloads": 7291, "size": 87353, "latestRelease": "2.2.3", "latestReleaseDate": "2024-05-08T14:11:34.564Z" @@ -44981,8 +44636,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.133, - "topicSearchString": "react-native idle-timer react native screen lock sleep idle timer dim" + "popularity": 0.217, + "topicSearchString": "idle-timer screen lock sleep idle timer dim" }, { "githubUrl": "https://github.com/msalo3/react-native-image-mapper", @@ -45024,13 +44679,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-image-mapper", "npm": { - "downloads": 1087, - "weekDownloads": 275, + "downloads": 647, + "weekDownloads": 140, "size": 6085, "latestRelease": "0.1.11", "latestReleaseDate": "2019-05-27T16:50:05.047Z" @@ -45040,7 +44696,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.534, + "popularity": -1.316, "topicSearchString": "" }, { @@ -45069,10 +44725,10 @@ "updatedAt": "2024-10-27T16:02:37Z", "createdAt": "2018-09-07T06:39:07Z", "pushedAt": "2024-10-27T16:02:37Z", - "forks": 220, - "issues": 77, - "subscribers": 11, - "stars": 1378, + "forks": 222, + "issues": 78, + "subscribers": 10, + "stars": 1383, "dependencies": 2 }, "name": "react-native-inappbrowser-reborn", @@ -45080,7 +44736,6 @@ "isPrivate": false, "description": "📱InAppBrowser for React Native (Android & iOS) 🤘", "topics": [ - "react-native", "javascript", "android", "ios", @@ -45111,11 +44766,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 598246, - "weekDownloads": 92088, + "downloads": 633168, + "weekDownloads": 153220, "size": 115946, "latestRelease": "3.7.0", "latestReleaseDate": "2022-07-30T03:27:24.829Z" @@ -45128,8 +44784,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.131, - "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" + "popularity": 0.206, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/rafaelmotta/react-native-progress-bar-animated", @@ -45161,12 +44817,11 @@ "isPrivate": false, "description": "📊 Simple, customizable and animated progress bar for React Native", "topics": [ - "react", - "native", "progress", "bar" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -45175,13 +44830,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-progress-bar-animated", "npm": { - "downloads": 7893, - "weekDownloads": 1249, + "downloads": 8995, + "weekDownloads": 2007, "latestRelease": "1.0.6", "latestReleaseDate": "2017-12-21T12:26:55.955Z" }, @@ -45190,8 +44846,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.615, - "topicSearchString": "react native progress bar" + "popularity": -0.56, + "topicSearchString": "progress bar" }, { "githubUrl": "https://github.com/alikazemkhanloo/react-native-reanimated-slider", @@ -45227,9 +44883,7 @@ "slider", "seekbar", "video", - "react-native", "ios", - "react", "android", "slider-component" ], @@ -45243,13 +44897,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-reanimated-slider", "npm": { - "downloads": 404, - "weekDownloads": 117, + "downloads": 194, + "weekDownloads": 24, "size": 21394, "latestRelease": "2.0.0", "latestReleaseDate": "2021-10-28T21:04:08.958Z" @@ -45259,8 +44914,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.254, - "topicSearchString": "reanimated slider seekbar video react-native ios react android slider-component" + "popularity": -1.393, + "topicSearchString": "reanimated slider seekbar video ios android slider-component" }, { "githubUrl": "https://github.com/jsoendermann/rn-section-list-get-item-layout", @@ -45303,12 +44958,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 98531, - "weekDownloads": 17623, + "downloads": 98654, + "weekDownloads": 23571, "size": 101481, "latestRelease": "2.2.3", "latestReleaseDate": "2018-05-20T14:04:06.370Z" @@ -45319,14 +44975,18 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, + "popularity": -0.547, "topicSearchString": "" }, { "githubUrl": "https://github.com/mCodex/react-native-sensitive-info", + "examples": [ + "https://github.com/mCodex/react-native-sensitive-info/tree/master/example" + ], "ios": true, "android": true, - "windows": true, + "macos": true, + "newArchitecture": true, "github": { "urls": { "repo": "https://github.com/mCodex/react-native-sensitive-info", @@ -45338,29 +44998,25 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2021-06-27T15:21:00Z", + "updatedAt": "2025-10-21T12:29:32Z", "createdAt": "2016-05-10T17:13:13Z", - "pushedAt": "2021-06-27T15:21:00Z", - "forks": 214, - "issues": 18, - "subscribers": 5, - "stars": 986, + "pushedAt": "2025-10-21T12:29:32Z", + "forks": 216, + "issues": 4, + "subscribers": 4, + "stars": 990, "dependencies": 0 }, "name": "react-native-sensitive-info", "fullName": "mCodex/react-native-sensitive-info", "isPrivate": false, - "description": "Save sensitive data into Android's Shared Preferences with keystore encryption/iOS's Keychain for React Native", + "registry": "https://registry.npmjs.org/", + "description": "🔐 React Native secure storage, rebuilt with Nitro Modules ⚡️ Biometric-ready, StrongBox-aware, and metadata-rich for modern mobile apps", "topics": [ - "android", - "ios", - "keychain", - "shared-preferences", - "react-native", - "windows", "sensitive-info", + "android", "ios-keychain", - "android-shared-preferences", + "ios", "keystore", "fingerprint" ], @@ -45374,26 +45030,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, - "unmaintained": true, "npmPkg": "react-native-sensitive-info", "npm": { - "downloads": 104908, - "weekDownloads": 19480, + "downloads": 97339, + "weekDownloads": 23176, "size": 1401007, "latestRelease": "5.5.8", "latestReleaseDate": "2020-07-29T19:05:04.226Z" }, - "score": 57, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.592, - "topicSearchString": "android ios keychain shared-preferences react-native windows sensitive-info ios-keychain android-shared-preferences keystore fingerprint" + "popularity": 0.202, + "topicSearchString": "sensitive-info android ios-keychain ios keystore fingerprint" }, { "githubUrl": "https://github.com/naoufal/react-native-touch-id", @@ -45414,10 +45070,10 @@ "updatedAt": "2019-07-13T17:19:46Z", "createdAt": "2015-06-03T03:41:22Z", "pushedAt": "2019-07-13T17:19:46Z", - "forks": 377, + "forks": 376, "issues": 74, - "subscribers": 22, - "stars": 1510, + "subscribers": 21, + "stars": 1511, "dependencies": 0 }, "name": "react-native-touch-id", @@ -45425,11 +45081,7 @@ "isPrivate": false, "description": "React Native authentication with the native Touch ID popup.", "topics": [ - "react-native", - "react", - "native", "touch-id", - "react-component", "component", "authentication", "auth", @@ -45439,6 +45091,7 @@ "apple" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -45447,12 +45100,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-touch-id", "npm": { - "downloads": 54966, - "weekDownloads": 10437, + "downloads": 49174, + "weekDownloads": 12201, "size": 166758, "latestRelease": "4.4.1", "latestReleaseDate": "2019-02-15T19:22:38.433Z" @@ -45464,8 +45118,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, - "topicSearchString": "react-native react native touch-id react-component component authentication auth authenticate mobile touchid apple" + "popularity": -0.539, + "topicSearchString": "touch-id component authentication auth authenticate mobile touchid apple" }, { "githubUrl": "https://github.com/APSL/react-native-version-number", @@ -45487,8 +45141,8 @@ "pushedAt": "2019-05-15T09:20:22Z", "forks": 123, "issues": 7, - "subscribers": 8, - "stars": 382, + "subscribers": 7, + "stars": 381, "dependencies": 0 }, "name": "react-native-version-number", @@ -45496,10 +45150,8 @@ "isPrivate": false, "description": "Gets the version number and build number of your app.", "topics": [ - "react", - "react-native", "ios", - "react-component", + "component", "android" ], "license": { @@ -45512,13 +45164,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-version-number", "npm": { - "downloads": 90979, - "weekDownloads": 16538, + "downloads": 79274, + "weekDownloads": 18749, "size": 33155, "latestRelease": "0.3.6", "latestReleaseDate": "2019-05-15T09:21:18.351Z" @@ -45529,8 +45182,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, - "topicSearchString": "react react-native ios react-component android" + "popularity": -0.549, + "topicSearchString": "ios component android" }, { "githubUrl": "https://github.com/davidohayon669/react-native-youtube", @@ -45553,10 +45206,10 @@ "updatedAt": "2023-07-21T15:40:23Z", "createdAt": "2015-06-30T10:23:38Z", "pushedAt": "2023-07-21T15:40:23Z", - "forks": 444, + "forks": 445, "issues": 127, "subscribers": 27, - "stars": 1163, + "stars": 1164, "dependencies": 2 }, "name": "react-native-youtube", @@ -45564,9 +45217,7 @@ "isPrivate": false, "description": "A component for React Native.", "topics": [ - "youtube", - "react", - "react-native" + "youtube" ], "license": { "key": "mit", @@ -45578,13 +45229,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-youtube", "npm": { - "downloads": 19999, - "weekDownloads": 3980, + "downloads": 16495, + "weekDownloads": 3024, "size": 310536, "latestRelease": "2.0.2", "latestReleaseDate": "2021-06-21T18:36:49.908Z" @@ -45597,8 +45249,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, - "topicSearchString": "youtube react react-native" + "popularity": -0.594, + "topicSearchString": "youtube" }, { "githubUrl": "https://github.com/wbroek/react-native-powerbi", @@ -45629,8 +45281,6 @@ "isPrivate": false, "description": "PowerBI Embed for React Native", "topics": [ - "react", - "native", "powerbi" ], "license": { @@ -45643,13 +45293,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-powerbi", "npm": { - "downloads": 122, - "weekDownloads": 14, + "downloads": 138, + "weekDownloads": 21, "size": 6510, "latestRelease": "0.1.0", "latestReleaseDate": "2018-03-13T12:30:01.508Z" @@ -45659,8 +45310,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.65, - "topicSearchString": "react native powerbi" + "popularity": -1.619, + "topicSearchString": "powerbi" }, { "githubUrl": "https://github.com/stashenergy/react-native-msal", @@ -45671,6 +45322,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", @@ -45685,7 +45337,7 @@ "updatedAt": "2022-04-14T13:50:37Z", "createdAt": "2020-02-12T15:53:39Z", "pushedAt": "2022-04-14T13:50:37Z", - "forks": 74, + "forks": 73, "issues": 0, "subscribers": 3, "stars": 67, @@ -45696,7 +45348,6 @@ "isPrivate": false, "description": "MSAL for React Native", "topics": [ - "react-native", "ios", "android", "msal", @@ -45718,12 +45369,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-msal", "npm": { - "downloads": 19450, - "weekDownloads": 3484, + "downloads": 18469, + "weekDownloads": 3797, "size": 137229, "latestRelease": "4.0.4", "latestReleaseDate": "2021-12-23T16:16:23.393Z" @@ -45734,8 +45387,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, - "topicSearchString": "react-native ios android msal azure b2c aad expo microsoft azure-active-directory azure-active-directory-b2c" + "popularity": -0.575, + "topicSearchString": "ios android msal azure b2c aad expo microsoft azure-active-directory azure-active-directory-b2c" }, { "githubUrl": "https://github.com/netguru/sticky-parallax-header", @@ -45765,10 +45418,10 @@ "updatedAt": "2023-05-11T15:00:22Z", "createdAt": "2019-04-30T07:18:03Z", "pushedAt": "2023-05-11T15:00:22Z", - "forks": 191, + "forks": 192, "issues": 12, - "subscribers": 26, - "stars": 2026, + "subscribers": 25, + "stars": 2029, "dependencies": 0 }, "name": "react-native-sticky-parallax-header", @@ -45782,8 +45435,7 @@ "stickyheader", "header", "parallax", - "hacktoberfest", - "react-native" + "hacktoberfest" ], "license": { "key": "mit", @@ -45795,12 +45447,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 9779, - "weekDownloads": 1638, + "downloads": 11410, + "weekDownloads": 2077, "size": 1158112, "latestRelease": "1.1.1", "latestReleaseDate": "2023-05-11T15:00:21.894Z" @@ -45812,8 +45465,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, - "topicSearchString": "open-source contribution stickyheader header parallax hacktoberfest react-native" + "popularity": -0.595, + "topicSearchString": "open-source contribution stickyheader header parallax hacktoberfest" }, { "githubUrl": "https://github.com/brunohkbx/react-native-material-backdrop-modal", @@ -45848,7 +45501,6 @@ "isPrivate": false, "description": "Material Design \"Backdrop\" component for Android and iOS.", "topics": [ - "react-native", "component", "ios", "android", @@ -45867,13 +45519,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-backdrop-modal", "npm": { - "downloads": 152, - "weekDownloads": 37, + "downloads": 345, + "weekDownloads": 18, "size": 10721, "latestRelease": "1.6.4", "latestReleaseDate": "2022-11-28T15:14:51.428Z" @@ -45883,8 +45536,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.289, - "topicSearchString": "react-native component ios android material-design backdrop modal expo" + "popularity": -1.456, + "topicSearchString": "component ios android material-design backdrop modal expo" }, { "githubUrl": "https://github.com/thodubois/react-native-woodpicker", @@ -45925,10 +45578,8 @@ "isPrivate": false, "description": "Customisable picker and datePicker react-native components for Android and iOS.", "topics": [ - "react-native", "picker", - "datetimepicker", - "react" + "datetimepicker" ], "license": { "key": "mit", @@ -45940,12 +45591,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-woodpicker", "npm": { - "downloads": 10442, - "weekDownloads": 1864, + "downloads": 9339, + "weekDownloads": 2056, "size": 51441, "latestRelease": "0.3.17", "latestReleaseDate": "2021-12-20T08:38:52.990Z" @@ -45955,8 +45608,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.152, - "topicSearchString": "react-native picker datetimepicker react" + "popularity": -0.563, + "topicSearchString": "picker datetimepicker" }, { "githubUrl": "https://github.com/maxkomarychev/react-native-ultimate-config/tree/master/packages/react-native-ultimate-config", @@ -45977,10 +45630,10 @@ "updatedAt": "2023-09-01T08:42:54Z", "createdAt": "2020-03-28T15:48:29Z", "pushedAt": "2023-09-01T08:42:54Z", - "forks": 31, - "issues": 15, - "subscribers": 6, - "stars": 267, + "forks": 32, + "issues": 16, + "subscribers": 5, + "stars": 268, "dependencies": 4 }, "name": "react-native-ultimate-config", @@ -45988,7 +45641,6 @@ "isPrivate": false, "description": "Config that works", "topics": [ - "react-native", "ios", "android", "12factor", @@ -46013,13 +45665,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ultimate-config", "npm": { - "downloads": 18398, - "weekDownloads": 3291, + "downloads": 18367, + "weekDownloads": 4221, "size": 49942, "latestRelease": "6.0.1", "latestReleaseDate": "2023-09-01T08:44:31.172Z" @@ -46030,8 +45683,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, - "topicSearchString": "react-native ios android 12factor 12factorapp dotenv env environment config xcconfig gradle objective-c java typescript" + "popularity": -0.555, + "topicSearchString": "ios android 12factor 12factorapp dotenv env environment config xcconfig gradle objective-c java typescript" }, { "githubUrl": "https://github.com/mythisdev/rn-font-mapping", @@ -46065,7 +45718,6 @@ "isPrivate": false, "description": "Mapping react native project's fontFamily with font weight and font style", "topics": [ - "react-native", "fontfamily", "fontweight", "fontscale", @@ -46084,13 +45736,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-font-mapping", "npm": { - "downloads": 8, - "weekDownloads": 2, + "downloads": 18, + "weekDownloads": 3, "size": 468645, "latestRelease": "1.0.0", "latestReleaseDate": "2019-11-30T15:58:42.232Z" @@ -46100,8 +45753,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, - "topicSearchString": "react-native fontfamily fontweight fontscale ios android font rn" + "popularity": -1.6, + "topicSearchString": "fontfamily fontweight fontscale ios android font rn" }, { "githubUrl": "https://github.com/jeremybarbet/react-native-modalize", @@ -46132,10 +45785,10 @@ "updatedAt": "2022-08-10T12:11:39Z", "createdAt": "2018-10-22T08:47:38Z", "pushedAt": "2022-08-10T12:11:39Z", - "forks": 290, - "issues": 102, + "forks": 291, + "issues": 104, "subscribers": 16, - "stars": 2887, + "stars": 2892, "dependencies": 0 }, "name": "react-native-modalize", @@ -46143,9 +45796,6 @@ "isPrivate": false, "description": "A highly customizable modal/bottom sheet that loves scrolling content.", "topics": [ - "react-native", - "react", - "native", "modal", "bottom-sheet", "bottom", @@ -46171,13 +45821,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-modalize", "npm": { - "downloads": 183419, - "weekDownloads": 29165, + "downloads": 179302, + "weekDownloads": 38314, "size": 65646, "latestRelease": "2.1.1", "latestReleaseDate": "2022-08-10T12:11:52.889Z" @@ -46190,8 +45841,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.615, - "topicSearchString": "react-native react native modal bottom-sheet bottom sheet scrollview flatlist sectionlist scroll swipe keyboard snap android ios component" + "popularity": -0.568, + "topicSearchString": "modal bottom-sheet bottom sheet scrollview flatlist sectionlist scroll swipe keyboard snap android ios component" }, { "githubUrl": "https://github.com/xcarpentier/rn-tourguide", @@ -46216,10 +45867,10 @@ "updatedAt": "2024-10-30T09:50:53Z", "createdAt": "2020-05-25T22:50:59Z", "pushedAt": "2024-10-30T09:50:53Z", - "forks": 196, - "issues": 55, - "subscribers": 11, - "stars": 824, + "forks": 198, + "issues": 56, + "subscribers": 10, + "stars": 833, "dependencies": 5 }, "name": "rn-tourguide", @@ -46227,9 +45878,7 @@ "isPrivate": false, "description": "🚩Make an interactive step by step tour guide for your react-native app (a rewrite of react-native-copilot)", "topics": [ - "react-native", "joyride", - "react", "copilot", "intro.js", "intro", @@ -46253,12 +45902,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-tourguide", "npm": { - "downloads": 19397, - "weekDownloads": 3417, + "downloads": 19427, + "weekDownloads": 4251, "size": 68929, "latestRelease": "3.3.2", "latestReleaseDate": "2024-10-30T09:27:16.950Z" @@ -46270,8 +45920,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.15, - "topicSearchString": "react-native joyride react copilot intro.js intro tourguide svg-animations morphing flubber tutorial mask-svg-path rn-tourguide tooltip expo" + "popularity": 0.186, + "topicSearchString": "joyride copilot intro.js intro tourguide svg-animations morphing flubber tutorial mask-svg-path rn-tourguide tooltip expo" }, { "githubUrl": "https://github.com/callstack/react-native-slider/tree/main/package", @@ -46301,13 +45951,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", - "forks": 281, - "issues": 41, - "subscribers": 13, - "stars": 1332, + "pushedAt": "2025-10-20T14:19:27Z", + "forks": 282, + "issues": 42, + "subscribers": 12, + "stars": 1354, "dependencies": 0 }, "name": "@react-native-community/slider", @@ -46315,8 +45965,6 @@ "isPrivate": false, "description": "React Native component used to select a single value from a range of values.", "topics": [ - "react-native", - "react-native", "slider" ], "license": { @@ -46329,24 +45977,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 2271000, - "weekDownloads": 378962, + "downloads": 2281094, + "weekDownloads": 530954, "size": 1038255, "latestRelease": "5.0.1", "latestReleaseDate": "2025-08-19T14:37:32.759Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.142, - "topicSearchString": "react-native react-native slider" + "popularity": 0.198, + "topicSearchString": "slider" }, { "githubUrl": "https://github.com/react-native-toolkit/triangle", @@ -46377,7 +46026,7 @@ "pushedAt": "2020-06-05T03:35:54Z", "forks": 0, "issues": 0, - "subscribers": 1, + "subscribers": 0, "stars": 6, "dependencies": 0 }, @@ -46386,7 +46035,6 @@ "isPrivate": false, "description": "Draw geometrically accurate triangles in React Native", "topics": [ - "react-native", "triangle", "triangle-view", "geometry", @@ -46402,12 +46050,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 411, - "weekDownloads": 45, + "downloads": 213, + "weekDownloads": 43, "size": 82836, "latestRelease": "0.0.1", "latestReleaseDate": "2020-06-05T03:36:34.452Z" @@ -46417,8 +46066,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.656, - "topicSearchString": "react-native triangle triangle-view geometry shapes" + "popularity": -1.578, + "topicSearchString": "triangle triangle-view geometry shapes" }, { "githubUrl": "https://github.com/sospedra/reinput", @@ -46457,7 +46106,6 @@ "isPrivate": false, "description": "A React Native TextInput with material style 😎", "topics": [ - "react-native", "input", "animation", "textinput", @@ -46477,13 +46125,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "reinput", "npm": { - "downloads": 549, - "weekDownloads": 82, + "downloads": 524, + "weekDownloads": 137, "size": 34734, "latestRelease": "3.7.2", "latestReleaseDate": "2020-06-15T09:55:46.651Z" @@ -46493,8 +46142,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.373, - "topicSearchString": "react-native input animation textinput material-design material placeholder labels icons" + "popularity": -1.277, + "topicSearchString": "input animation textinput material-design material placeholder labels icons" }, { "githubUrl": "https://github.com/alexbrazier/react-native-network-logger", @@ -46523,9 +46172,9 @@ "createdAt": "2020-06-18T23:27:45Z", "pushedAt": "2025-06-14T12:14:32Z", "forks": 58, - "issues": 10, - "subscribers": 9, - "stars": 623, + "issues": 11, + "subscribers": 8, + "stars": 628, "dependencies": 0 }, "name": "react-native-network-logger", @@ -46534,9 +46183,6 @@ "registry": "https://registry.npmjs.org/", "description": "An HTTP network request monitor for React Native with in-app interface for iOS and Android with no native code", "topics": [ - "react", - "native", - "react-native", "network", "interceptor", "http", @@ -46560,24 +46206,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-network-logger", "npm": { - "downloads": 188594, - "weekDownloads": 34241, + "downloads": 172272, + "weekDownloads": 41000, "size": 231447, "latestRelease": "2.0.1", "latestReleaseDate": "2025-06-14T12:14:28.293Z" }, - "score": 68, + "score": 51, "matchingScoreModifiers": [ - "Popular", "Known", "Not supporting New Architecture" ], - "popularity": 0.154, - "topicSearchString": "react native react-native network interceptor http monitor logging ios android debugger network-monitoring charles network-debug hacktoberfest" + "popularity": 0.202, + "topicSearchString": "network interceptor http monitor logging ios android debugger network-monitoring charles network-debug hacktoberfest" }, { "githubUrl": "https://github.com/goatandsheep/react-native-dotenv", @@ -46599,10 +46245,10 @@ "updatedAt": "2024-02-28T16:27:06Z", "createdAt": "2020-07-08T13:31:51Z", "pushedAt": "2024-02-28T16:27:06Z", - "forks": 50, + "forks": 51, "issues": 3, - "subscribers": 2, - "stars": 849, + "subscribers": 1, + "stars": 851, "dependencies": 1 }, "name": "react-native-dotenv", @@ -46614,8 +46260,6 @@ "babel-plugin", "babel", "dotenv-flow", - "react", - "react-native", "config", "env", "12factor", @@ -46632,12 +46276,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-dotenv", "npm": { - "downloads": 848902, - "weekDownloads": 139575, + "downloads": 817976, + "weekDownloads": 180023, "size": 22020, "latestRelease": "3.4.11", "latestReleaseDate": "2024-02-27T23:29:29.874Z" @@ -46649,8 +46294,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.14, - "topicSearchString": "dotenv babel-plugin babel dotenv-flow react react-native config env 12factor hacktoberfest environment-variables" + "popularity": 0.187, + "topicSearchString": "dotenv babel-plugin babel dotenv-flow config env 12factor hacktoberfest environment-variables" }, { "githubUrl": "https://github.com/gs-akhan/react-native-select", @@ -46683,8 +46328,7 @@ "isPrivate": false, "description": "A simple dropdown for react native - IOS and Android ", "topics": [ - "react-component", - "react-native", + "component", "dropdown", "ios", "android", @@ -46701,11 +46345,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 54, - "weekDownloads": 12, + "downloads": 126, + "weekDownloads": 20, "latestRelease": "1.2.3", "latestReleaseDate": "2016-11-27T18:47:04.960Z" }, @@ -46715,8 +46360,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "react-component react-native dropdown ios android select-tag chooser" + "popularity": -1.362, + "topicSearchString": "component dropdown ios android select-tag chooser" }, { "githubUrl": "https://github.com/venepe/react-native-music-metadata", @@ -46739,7 +46384,7 @@ "pushedAt": "2020-01-18T02:53:51Z", "forks": 15, "issues": 6, - "subscribers": 3, + "subscribers": 2, "stars": 6, "dependencies": 0 }, @@ -46748,8 +46393,7 @@ "isPrivate": false, "description": "React Native module for reading the music metadata on iOS and Android", "topics": [ - "react-native", - "react-component", + "component", "metadata", "music", "track" @@ -46764,12 +46408,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-music-metadata", "npm": { - "downloads": 68, - "weekDownloads": 2, + "downloads": 49, + "weekDownloads": 5, "latestRelease": "0.0.2", "latestReleaseDate": "2017-05-09T02:38:19.346Z" }, @@ -46778,8 +46423,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.725, - "topicSearchString": "react-native react-component metadata music track" + "popularity": -1.659, + "topicSearchString": "component metadata music track" }, { "githubUrl": "https://github.com/tanguyantoine/react-native-music-control", @@ -46801,9 +46446,9 @@ "updatedAt": "2022-10-06T07:06:50Z", "createdAt": "2016-05-10T09:11:36Z", "pushedAt": "2022-10-06T07:06:50Z", - "forks": 241, + "forks": 239, "issues": 32, - "subscribers": 17, + "subscribers": 16, "stars": 700, "dependencies": 0 }, @@ -46812,8 +46457,6 @@ "isPrivate": false, "description": "Display and manage media controls on lock screen and notification center for iOS and Android.", "topics": [ - "react", - "react-native", "remote-controls", "lockscreen", "nowplaying", @@ -46833,12 +46476,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-music-control", "npm": { - "downloads": 10357, - "weekDownloads": 1303, + "downloads": 7039, + "weekDownloads": 1699, "size": 126089, "latestRelease": "1.4.1", "latestReleaseDate": "2022-03-21T03:34:54.647Z" @@ -46850,8 +46494,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.643, - "topicSearchString": "react react-native remote-controls lockscreen nowplaying mpnowplayinginfocenter ios android now-playing sound" + "popularity": -0.545, + "topicSearchString": "remote-controls lockscreen nowplaying mpnowplayinginfocenter ios android now-playing sound" }, { "githubUrl": "https://github.com/RealOrangeOne/react-native-mock", @@ -46874,8 +46518,8 @@ "pushedAt": "2019-06-30T19:42:55Z", "forks": 131, "issues": 33, - "subscribers": 21, - "stars": 569, + "subscribers": 20, + "stars": 568, "dependencies": 12 }, "name": "react-native-mock", @@ -46883,8 +46527,6 @@ "isPrivate": false, "description": "A fully mocked and test-friendly version of react native (maintainers wanted)", "topics": [ - "react", - "react-native", "mock", "testing" ], @@ -46898,12 +46540,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-mock", "npm": { - "downloads": 29595, - "weekDownloads": 5496, + "downloads": 22210, + "weekDownloads": 4705, "latestRelease": "0.3.1", "latestReleaseDate": "2017-02-03T19:52:04.086Z" }, @@ -46914,8 +46557,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.592, - "topicSearchString": "react react-native mock testing" + "popularity": -0.57, + "topicSearchString": "mock testing" }, { "githubUrl": "https://github.com/reactjs/react-timer-mixin", @@ -46936,10 +46579,10 @@ "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": 15, - "stars": 308, + "subscribers": 14, + "stars": 309, "dependencies": 0 }, "name": "react-timer-mixin", @@ -46947,7 +46590,6 @@ "isPrivate": false, "description": "TimerMixin provides timer functions for executing code in the future that are safely cleaned up when the component unmounts", "topics": [ - "react", "timer", "mixin" ], @@ -46961,12 +46603,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-timer-mixin", "npm": { - "downloads": 556275, - "weekDownloads": 86772, + "downloads": 652429, + "weekDownloads": 142983, "size": 24636, "latestRelease": "0.13.4", "latestReleaseDate": "2018-07-17T07:08:28.416Z" @@ -46978,8 +46621,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, - "topicSearchString": "react timer mixin" + "popularity": -0.564, + "topicSearchString": "timer mixin" }, { "githubUrl": "https://github.com/PhilippKrone/react-native-fileupload", @@ -47011,8 +46654,7 @@ "isPrivate": false, "description": "Multi-form file upload for react-native", "topics": [ - "react-component", - "react-native", + "component", "ios", "file", "upload" @@ -47027,12 +46669,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fileupload", "npm": { - "downloads": 15, - "weekDownloads": 2, + "downloads": 28, + "weekDownloads": 3, "latestRelease": "1.2.0", "latestReleaseDate": "2015-12-24T15:09:22.146Z" }, @@ -47042,8 +46685,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.367, - "topicSearchString": "react-component react-native ios file upload" + "popularity": -1.4, + "topicSearchString": "component ios file upload" }, { "githubUrl": "https://github.com/tradle/react-native-udp", @@ -47066,7 +46709,7 @@ "pushedAt": "2023-01-26T08:04:49Z", "forks": 139, "issues": 6, - "subscribers": 18, + "subscribers": 17, "stars": 352, "dependencies": 2 }, @@ -47075,7 +46718,6 @@ "isPrivate": false, "description": "node's dgram for react-native", "topics": [ - "react-native", "dgram", "udp", "sockets", @@ -47094,13 +46736,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-udp", "npm": { - "downloads": 162224, - "weekDownloads": 25893, + "downloads": 148625, + "weekDownloads": 33665, "size": 93456, "latestRelease": "4.1.7", "latestReleaseDate": "2023-01-26T08:05:00.363Z" @@ -47111,8 +46754,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.614, - "topicSearchString": "react-native dgram udp sockets ios android nodejs networking" + "popularity": -0.557, + "topicSearchString": "dgram udp sockets ios android nodejs networking" }, { "githubUrl": "https://github.com/rainbow-me/react-native-shadow-stack", @@ -47135,7 +46778,7 @@ "pushedAt": "2020-04-21T05:02:48Z", "forks": 3, "issues": 0, - "subscribers": 16, + "subscribers": 15, "stars": 20, "dependencies": 0 }, @@ -47144,9 +46787,6 @@ "isPrivate": false, "description": "React Native component that wraps children with multiple overlapping box-shadows", "topics": [ - "react", - "native", - "react-native", "number", "animated", "component" @@ -47161,13 +46801,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-shadow-stack", "npm": { - "downloads": 41, - "weekDownloads": 14, + "downloads": 39, + "weekDownloads": 6, "size": 11707, "latestRelease": "0.0.5", "latestReleaseDate": "2020-04-21T05:02:58.857Z" @@ -47177,8 +46818,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.439, - "topicSearchString": "react native react-native number animated component" + "popularity": -1.617, + "topicSearchString": "number animated component" }, { "githubUrl": "https://github.com/wcandillon/react-native-redash", @@ -47197,13 +46838,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-06-21T12:28:46Z", + "updatedAt": "2025-09-21T17:00:10Z", "createdAt": "2019-04-30T09:46:58Z", - "pushedAt": "2025-06-21T12:28:46Z", + "pushedAt": "2025-09-21T17:00:10Z", "forks": 116, - "issues": 91, + "issues": 89, "subscribers": 17, - "stars": 2026, + "stars": 2036, "dependencies": 3 }, "name": "react-native-redash", @@ -47221,24 +46862,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-redash", "npm": { - "downloads": 715165, - "weekDownloads": 124346, - "size": 261976, - "latestRelease": "18.1.3", - "latestReleaseDate": "2024-01-06T12:30:05.031Z" + "downloads": 579382, + "weekDownloads": 132887, + "size": 263051, + "latestRelease": "18.1.4", + "latestReleaseDate": "2025-09-21T16:47:21.107Z" }, - "score": 57, + "score": 62, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.195, "topicSearchString": "" }, { @@ -47260,7 +46903,7 @@ "updatedAt": "2025-06-23T11:20:25Z", "createdAt": "2015-11-19T19:49:51Z", "pushedAt": "2025-06-23T11:20:25Z", - "forks": 79, + "forks": 80, "issues": 13, "subscribers": 4, "stars": 82, @@ -47271,8 +46914,7 @@ "isPrivate": false, "description": "randomBytes for react-native", "topics": [ - "react-component", - "react-native", + "component", "randombytes", "rng", "ios", @@ -47288,12 +46930,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-randombytes", "npm": { - "downloads": 332926, - "weekDownloads": 40161, + "downloads": 393038, + "weekDownloads": 97264, "size": 56011, "latestRelease": "3.6.2", "latestReleaseDate": "2025-06-23T11:20:48.363Z" @@ -47303,8 +46946,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.103, - "topicSearchString": "react-component react-native randombytes rng ios android" + "popularity": 0.21, + "topicSearchString": "component randombytes rng ios android" }, { "githubUrl": "https://github.com/surajitsarkar19/react-native-radial-gradient", @@ -47336,9 +46979,6 @@ "isPrivate": false, "description": "Radial gradient library for react native", "topics": [ - "react-native", - "react", - "native", "radial-gradient", "radial", "gradient" @@ -47353,12 +46993,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-radial-gradient", "npm": { - "downloads": 43016, - "weekDownloads": 7389, + "downloads": 41803, + "weekDownloads": 11306, "size": 37705, "latestRelease": "1.2.1", "latestReleaseDate": "2025-02-25T04:07:15.689Z" @@ -47369,8 +47010,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.146, - "topicSearchString": "react-native react native radial-gradient radial gradient" + "popularity": 0.23, + "topicSearchString": "radial-gradient radial gradient" }, { "githubUrl": "https://github.com/moaazsidat/react-native-qrcode-scanner", @@ -47395,10 +47036,10 @@ "updatedAt": "2023-05-12T11:16:38Z", "createdAt": "2016-08-22T23:07:17Z", "pushedAt": "2023-05-12T11:16:38Z", - "forks": 502, + "forks": 501, "issues": 115, "subscribers": 32, - "stars": 2035, + "stars": 2032, "dependencies": 2 }, "name": "react-native-qrcode-scanner", @@ -47406,8 +47047,6 @@ "isPrivate": false, "description": "A QR code scanner component for React Native.", "topics": [ - "react-native", - "react", "ios", "qrcode", "qr", @@ -47426,12 +47065,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-qrcode-scanner", "npm": { - "downloads": 74541, - "weekDownloads": 13610, + "downloads": 70460, + "weekDownloads": 14910, "size": 37094, "latestRelease": "1.5.5", "latestReleaseDate": "2022-02-11T23:21:24.154Z" @@ -47444,8 +47084,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, - "topicSearchString": "react-native react ios qrcode qr scanner barcode qrcode-scanner camera" + "popularity": -0.57, + "topicSearchString": "ios qrcode qr scanner barcode qrcode-scanner camera" }, { "githubUrl": "https://github.com/aprock/react-native-os", @@ -47466,7 +47106,7 @@ "updatedAt": "2022-08-16T04:05:03Z", "createdAt": "2018-03-23T17:09:09Z", "pushedAt": "2022-08-16T04:05:03Z", - "forks": 72, + "forks": 71, "issues": 0, "subscribers": 2, "stars": 4, @@ -47477,9 +47117,8 @@ "isPrivate": false, "description": "node.js os module for react-native", "topics": [ - "react-component", + "component", "reactnative", - "react-native", "os", "ios", "android" @@ -47494,13 +47133,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-os", "npm": { - "downloads": 159953, - "weekDownloads": 15379, + "downloads": 231263, + "weekDownloads": 61466, "size": 91581, "latestRelease": "1.2.6", "latestReleaseDate": "2019-11-29T21:14:35.511Z" @@ -47511,8 +47151,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.918, - "topicSearchString": "react-component reactnative react-native os ios android" + "popularity": -0.774, + "topicSearchString": "component reactnative os ios android" }, { "githubUrl": "https://github.com/tradle/react-native-level-fs", @@ -47534,7 +47174,7 @@ "pushedAt": "2019-10-09T21:33:03Z", "forks": 16, "issues": 0, - "subscribers": 7, + "subscribers": 6, "stars": 26, "dependencies": 2 }, @@ -47543,8 +47183,7 @@ "isPrivate": false, "description": "fs for the browser using level-filesystem and browserify", "topics": [ - "react-component", - "react-native", + "component", "ios", "fs", "level", @@ -47560,13 +47199,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-level-fs", "npm": { - "downloads": 180495, - "weekDownloads": 18700, + "downloads": 247730, + "weekDownloads": 65632, "size": 1738, "latestRelease": "3.0.1", "latestReleaseDate": "2018-04-20T13:00:58.290Z" @@ -47577,8 +47217,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.662, - "topicSearchString": "react-component react-native ios fs level filesystem" + "popularity": -0.525, + "topicSearchString": "component ios fs level filesystem" }, { "githubUrl": "https://github.com/ptelad/react-native-iphone-x-helper", @@ -47602,7 +47242,7 @@ "forks": 112, "issues": 11, "subscribers": 5, - "stars": 938, + "stars": 939, "dependencies": 0 }, "name": "react-native-iphone-x-helper", @@ -47610,7 +47250,6 @@ "isPrivate": false, "description": "A library to help you design your react-native app for notched iPhones", "topics": [ - "react-native", "ios", "iphone-x", "iphonex", @@ -47626,12 +47265,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-iphone-x-helper", "npm": { - "downloads": 1986473, - "weekDownloads": 334889, + "downloads": 2052692, + "weekDownloads": 465102, "size": 5649, "latestRelease": "1.3.1", "latestReleaseDate": "2020-11-08T09:08:22.914Z" @@ -47643,8 +47283,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, - "topicSearchString": "react-native ios iphone-x iphonex stylesheet" + "popularity": -0.557, + "topicSearchString": "ios iphone-x iphonex stylesheet" }, { "githubUrl": "https://github.com/tradle/react-native-crypto", @@ -47664,10 +47304,10 @@ "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": 11, - "stars": 384, + "subscribers": 10, + "stars": 385, "dependencies": 10 }, "name": "react-native-crypto", @@ -47675,8 +47315,7 @@ "isPrivate": false, "description": "partial implementation of node's `crypto` for react-native", "topics": [ - "react-native", - "react-component", + "component", "ios" ], "license": { @@ -47689,12 +47328,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-crypto", "npm": { - "downloads": 331390, - "weekDownloads": 39310, + "downloads": 395745, + "weekDownloads": 97607, "size": 9017, "latestRelease": "2.2.1", "latestReleaseDate": "2025-06-23T11:18:01.588Z" @@ -47704,8 +47344,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.101, - "topicSearchString": "react-native react-component ios" + "popularity": 0.21, + "topicSearchString": "component ios" }, { "githubUrl": "https://github.com/kyo504/react-native-marquee", @@ -47737,7 +47377,6 @@ "isPrivate": false, "description": "React Native Marquee Text Component", "topics": [ - "react-native", "marquee", "ios", "android" @@ -47752,13 +47391,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-marquee", "npm": { - "downloads": 6328, - "weekDownloads": 1242, + "downloads": 5929, + "weekDownloads": 1167, "size": 12587, "latestRelease": "0.5.0", "latestReleaseDate": "2023-03-06T12:59:10.300Z" @@ -47770,7 +47410,7 @@ "Not supporting New Architecture" ], "popularity": -0.583, - "topicSearchString": "react-native marquee ios android" + "topicSearchString": "marquee ios android" }, { "githubUrl": "https://github.com/ascoders/react-native-image-zoom", @@ -47792,9 +47432,9 @@ "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": 13, + "subscribers": 12, "stars": 640, "dependencies": 0 }, @@ -47815,12 +47455,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 436063, - "weekDownloads": 119043, + "downloads": 296239, + "weekDownloads": 68423, "size": 111252, "latestRelease": "2.1.12", "latestReleaseDate": "2020-05-19T21:18:51.496Z" @@ -47832,7 +47473,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.518, + "popularity": -0.554, "topicSearchString": "image-zoom" }, { @@ -47854,10 +47495,10 @@ "updatedAt": "2022-11-15T18:05:16Z", "createdAt": "2019-06-11T23:31:14Z", "pushedAt": "2022-11-15T18:05:16Z", - "forks": 132, + "forks": 133, "issues": 42, "subscribers": 2, - "stars": 715, + "stars": 717, "dependencies": 0 }, "name": "react-native-skeleton-placeholder", @@ -47880,13 +47521,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-skeleton-placeholder", "npm": { - "downloads": 368981, - "weekDownloads": 47886, + "downloads": 416129, + "weekDownloads": 105441, "size": 97041, "latestRelease": "5.2.4", "latestReleaseDate": "2022-11-15T18:05:28.354Z" @@ -47898,7 +47540,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.64, + "popularity": -0.535, "topicSearchString": "skeleton shimmer loading placeholder" }, { @@ -47921,9 +47563,9 @@ "updatedAt": "2022-06-28T01:58:46Z", "createdAt": "2018-03-22T20:14:30Z", "pushedAt": "2022-06-28T01:58:46Z", - "forks": 792, + "forks": 793, "issues": 488, - "subscribers": 20, + "subscribers": 19, "stars": 2859, "dependencies": 3 }, @@ -47932,7 +47574,6 @@ "isPrivate": false, "description": "A project committed to making file access and data transfer easier, efficient for React Native developers.", "topics": [ - "react-native", "fetch", "blob", "fs", @@ -47952,12 +47593,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-fetch-blob", "npm": { - "downloads": 337195, - "weekDownloads": 60955, + "downloads": 319191, + "weekDownloads": 74334, "size": 2979619, "latestRelease": "0.12.0", "latestReleaseDate": "2019-12-19T16:40:09.142Z" @@ -47971,8 +47613,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, - "topicSearchString": "react-native fetch blob fs upload file download filestream image-header" + "popularity": -0.552, + "topicSearchString": "fetch blob fs upload file download filestream image-header" }, { "githubUrl": "https://github.com/realtime-framework/RCTRealtimeMessagingIOS", @@ -47996,7 +47638,7 @@ "pushedAt": "2017-06-07T16:52:21Z", "forks": 7, "issues": 2, - "subscribers": 4, + "subscribers": 3, "stars": 31, "dependencies": 0 }, @@ -48005,9 +47647,8 @@ "isPrivate": false, "description": "Realtime Cloud Messaging React Native SDK for iOS", "topics": [ - "react-component", + "component", "reactnative", - "react-native", "realtimemessaging", "realtime", "ios", @@ -48024,10 +47665,11 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5, + "downloads": 87, "weekDownloads": 1, "latestRelease": "1.0.18", "latestReleaseDate": "2017-06-07T16:59:57.321Z" @@ -48037,8 +47679,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "react-component reactnative react-native realtimemessaging realtime ios push-notifications realtime-messaging" + "popularity": -1.49, + "topicSearchString": "component reactnative realtimemessaging realtime ios push-notifications realtime-messaging" }, { "githubUrl": "https://github.com/ivanph/react-native-webintent", @@ -48070,12 +47712,10 @@ "isPrivate": false, "description": "React-native module for android to open urls in the default browser", "topics": [ - "react", - "react-native", "intent", "android", "browser", - "react-component" + "component" ], "license": { "key": "mit", @@ -48087,12 +47727,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-webintent", "npm": { - "downloads": 1, - "weekDownloads": 0, + "downloads": 4, + "weekDownloads": 2, "latestRelease": "1.0.4", "latestReleaseDate": "2015-12-06T06:02:48.557Z" }, @@ -48102,7 +47743,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react react-native intent android browser react-component" + "topicSearchString": "intent android browser component" }, { "githubUrl": "https://github.com/colorfy-software/react-native-modalfy", @@ -48134,10 +47775,10 @@ "updatedAt": "2025-06-30T09:48:39Z", "createdAt": "2019-04-24T15:47:37Z", "pushedAt": "2025-06-30T09:48:39Z", - "forks": 47, + "forks": 48, "issues": 7, "subscribers": 11, - "stars": 1313, + "stars": 1329, "dependencies": 3 }, "name": "react-native-modalfy", @@ -48146,8 +47787,6 @@ "registry": "https://registry.npmjs.org/", "description": "🥞 Modal citizen of React Native.", "topics": [ - "react", - "react-native", "modal", "modals", "mobile", @@ -48166,12 +47805,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-modalfy", "npm": { - "downloads": 17447, - "weekDownloads": 2745, + "downloads": 17930, + "weekDownloads": 4036, "size": 528958, "latestRelease": "3.7.0", "latestReleaseDate": "2025-06-30T09:48:36.849Z" @@ -48182,8 +47822,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.134, - "topicSearchString": "react react-native modal modals mobile ios android animations stack" + "popularity": 0.191, + "topicSearchString": "modal modals mobile ios android animations stack" }, { "githubUrl": "https://github.com/benevbright/react-navigation-collapsible", @@ -48225,8 +47865,6 @@ "isPrivate": false, "description": "An extension of react-navigation that makes your header collapsible.", "topics": [ - "react-native", - "react-navigation", "navigation", "collapsible", "collapsible-header", @@ -48244,13 +47882,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-navigation-collapsible", "npm": { - "downloads": 4488, - "weekDownloads": 973, + "downloads": 4893, + "weekDownloads": 975, "size": 30120, "latestRelease": "6.3.0", "latestReleaseDate": "2021-11-07T08:09:30.365Z" @@ -48262,8 +47901,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.566, - "topicSearchString": "react-native react-navigation navigation collapsible collapsible-header hide-header animate-header hide-navigation" + "popularity": -0.581, + "topicSearchString": "navigation collapsible collapsible-header hide-header animate-header hide-navigation" }, { "githubUrl": "https://github.com/shahnawaz/react-native-barcode-mask", @@ -48299,7 +47938,6 @@ "isPrivate": false, "description": "A barcode and QR scan layout for react-native applications with customizable styling", "topics": [ - "react-native", "barcode-mask", "barcode", "scanning", @@ -48319,13 +47957,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-barcode-mask", "npm": { - "downloads": 46744, - "weekDownloads": 8300, + "downloads": 47097, + "weekDownloads": 10215, "size": 16669, "latestRelease": "1.2.4", "latestReleaseDate": "2020-06-22T13:38:16.470Z" @@ -48336,8 +47975,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, - "topicSearchString": "react-native barcode-mask barcode scanning style layout barcode-scanner border edges" + "popularity": -0.566, + "topicSearchString": "barcode-mask barcode scanning style layout barcode-scanner border edges" }, { "githubUrl": "https://github.com/auth0/react-native-auth0", @@ -48347,6 +47986,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/auth0/react-native-auth0", @@ -48358,14 +47998,14 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T08:18:36Z", + "updatedAt": "2025-10-17T07:15:48Z", "createdAt": "2016-06-14T23:10:12Z", - "pushedAt": "2025-09-12T08:18:36Z", - "forks": 214, - "issues": 5, - "subscribers": 25, - "stars": 531, - "dependencies": 3 + "pushedAt": "2025-10-17T07:15:48Z", + "forks": 220, + "issues": 7, + "subscribers": 24, + "stars": 534, + "dependencies": 4 }, "name": "react-native-auth0", "fullName": "auth0/react-native-auth0", @@ -48373,7 +48013,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native toolkit for Auth0 API", "topics": [ - "react-native", "ios", "android", "dx-sdk" @@ -48388,15 +48027,17 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-auth0", "npm": { - "downloads": 291520, - "weekDownloads": 50092, - "size": 604737, - "latestRelease": "4.6.0", - "latestReleaseDate": "2025-05-02T05:32:44.378Z" + "downloads": 293640, + "weekDownloads": 68469, + "size": 730844, + "latestRelease": "5.0.1", + "latestReleaseDate": "2025-10-03T10:57:09.735Z" }, "score": 76, "matchingScoreModifiers": [ @@ -48404,8 +48045,8 @@ "Known", "Recently updated" ], - "popularity": 0.146, - "topicSearchString": "react-native ios android dx-sdk" + "popularity": 0.198, + "topicSearchString": "ios android dx-sdk" }, { "githubUrl": "https://github.com/avishayil/react-native-restart", @@ -48433,10 +48074,10 @@ "updatedAt": "2024-07-21T11:50:06Z", "createdAt": "2016-07-17T06:11:54Z", "pushedAt": "2024-07-21T11:50:06Z", - "forks": 142, - "issues": 15, - "subscribers": 5, - "stars": 967, + "forks": 143, + "issues": 16, + "subscribers": 4, + "stars": 969, "dependencies": 0 }, "name": "react-native-restart", @@ -48444,7 +48085,6 @@ "isPrivate": false, "description": "React Native Package With One Purpose: To Restart Your React Native Project", "topics": [ - "react-native", "ios", "android", "restart", @@ -48461,12 +48101,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-restart", "npm": { - "downloads": 741977, - "weekDownloads": 124984, + "downloads": 694225, + "weekDownloads": 165247, "size": 599401, "latestRelease": "0.0.27", "latestReleaseDate": "2023-01-31T19:14:49.360Z" @@ -48478,8 +48119,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.143, - "topicSearchString": "react-native ios android restart reload bundle" + "popularity": 0.202, + "topicSearchString": "ios android restart reload bundle" }, { "githubUrl": "https://github.com/react-native-community/hooks", @@ -48504,8 +48145,8 @@ "pushedAt": "2025-02-21T17:39:09Z", "forks": 207, "issues": 14, - "subscribers": 39, - "stars": 3599, + "subscribers": 38, + "stars": 3607, "dependencies": 0 }, "name": "@react-native-community/hooks", @@ -48523,11 +48164,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 395916, - "weekDownloads": 68495, + "downloads": 356721, + "weekDownloads": 83847, "size": 46999, "latestRelease": "100.1.0", "latestReleaseDate": "2025-02-21T17:39:27.389Z" @@ -48539,7 +48181,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.147, + "popularity": 0.2, "topicSearchString": "" }, { @@ -48566,7 +48208,7 @@ "forks": 134, "issues": 21, "subscribers": 16, - "stars": 1597, + "stars": 1598, "dependencies": 0 }, "name": "react-native-responsive-screen", @@ -48574,7 +48216,6 @@ "isPrivate": false, "description": "Make React Native views responsive for all devices with the use of 2 simple methods", "topics": [ - "react-native", "responsive-ui", "responsive-view", "responsive-screen", @@ -48594,13 +48235,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-responsive-screen", "npm": { - "downloads": 148026, - "weekDownloads": 22572, + "downloads": 129052, + "weekDownloads": 30249, "size": 796149, "latestRelease": "1.4.2", "latestReleaseDate": "2020-12-23T20:44:13.323Z" @@ -48612,8 +48254,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.62, - "topicSearchString": "react-native responsive-ui responsive-view responsive-screen responsive android ios responsive-layout ui" + "popularity": -0.551, + "topicSearchString": "responsive-ui responsive-view responsive-screen responsive android ios responsive-layout ui" }, { "githubUrl": "https://github.com/Monte9/react-native-ratings", @@ -48647,8 +48289,8 @@ "pushedAt": "2024-04-02T02:12:34Z", "forks": 191, "issues": 60, - "subscribers": 8, - "stars": 933, + "subscribers": 7, + "stars": 935, "dependencies": 1 }, "name": "react-native-ratings", @@ -48656,7 +48298,6 @@ "isPrivate": false, "description": "Tap and Swipe Ratings component for React Native.", "topics": [ - "react-native", "reactjs", "reactnative", "gestures", @@ -48676,12 +48317,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ratings", "npm": { - "downloads": 700017, - "weekDownloads": 116852, + "downloads": 661895, + "weekDownloads": 153162, "size": 103752, "latestRelease": "8.1.0", "latestReleaseDate": "2021-05-23T13:58:52.855Z" @@ -48693,8 +48335,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "react-native reactjs reactnative gestures ios stars android ratings ui-components" + "popularity": 0.197, + "topicSearchString": "reactjs reactnative gestures ios stars android ratings ui-components" }, { "githubUrl": "https://github.com/xamous/react-native-smooth-pincode-input", @@ -48722,7 +48364,7 @@ "forks": 136, "issues": 38, "subscribers": 4, - "stars": 413, + "stars": 414, "dependencies": 2 }, "name": "react-native-smooth-pincode-input", @@ -48730,11 +48372,9 @@ "isPrivate": false, "description": "A cross-platform, smooth, lightweight, customizable PIN code input component for React Native.", "topics": [ - "react-native", "pincode", "password", "textinput", - "react", "javascript", "pin", "android", @@ -48750,13 +48390,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-smooth-pincode-input", "npm": { - "downloads": 21868, - "weekDownloads": 3503, + "downloads": 20454, + "weekDownloads": 4620, "size": 534133, "latestRelease": "1.0.9", "latestReleaseDate": "2019-11-12T02:38:04.751Z" @@ -48767,8 +48408,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.614, - "topicSearchString": "react-native pincode password textinput react javascript pin android ios" + "popularity": -0.558, + "topicSearchString": "pincode password textinput javascript pin android ios" }, { "githubUrl": "https://github.com/Agontuk/react-native-geolocation-service", @@ -48792,9 +48433,9 @@ "createdAt": "2018-01-11T06:42:18Z", "pushedAt": "2022-10-08T15:42:23Z", "forks": 289, - "issues": 114, - "subscribers": 19, - "stars": 1646, + "issues": 115, + "subscribers": 18, + "stars": 1651, "dependencies": 0 }, "name": "react-native-geolocation-service", @@ -48802,9 +48443,6 @@ "isPrivate": false, "description": "React native geolocation service for iOS and android", "topics": [ - "react-native", - "react", - "native", "fused", "location", "geolocation", @@ -48822,13 +48460,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-geolocation-service", "npm": { - "downloads": 421108, - "weekDownloads": 71710, + "downloads": 393398, + "weekDownloads": 92523, "size": 90943, "latestRelease": "5.3.1", "latestReleaseDate": "2022-09-23T05:57:55.248Z" @@ -48841,8 +48480,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, - "topicSearchString": "react-native react native fused location geolocation android ios fusedlocationproviderclient" + "popularity": -0.55, + "topicSearchString": "fused location geolocation android ios fusedlocationproviderclient" }, { "githubUrl": "https://github.com/react-native-sensors/react-native-sensors", @@ -48869,8 +48508,8 @@ "pushedAt": "2023-02-13T23:11:34Z", "forks": 217, "issues": 32, - "subscribers": 16, - "stars": 929, + "subscribers": 15, + "stars": 932, "dependencies": 1 }, "name": "react-native-sensors", @@ -48878,7 +48517,6 @@ "isPrivate": false, "description": "A developer friendly approach for sensors in React Native", "topics": [ - "react-native", "sensor", "gyroscope", "acceleration", @@ -48896,13 +48534,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sensors", "npm": { - "downloads": 180794, - "weekDownloads": 16949, + "downloads": 257943, + "weekDownloads": 67197, "size": 90891, "latestRelease": "7.3.6", "latestReleaseDate": "2022-11-21T15:13:24.446Z" @@ -48914,8 +48553,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.67, - "topicSearchString": "react-native sensor gyroscope acceleration rxjs magnetometer barometer" + "popularity": -0.529, + "topicSearchString": "sensor gyroscope acceleration rxjs magnetometer barometer" }, { "githubUrl": "https://github.com/computerjazz/react-native-draggable-flatlist", @@ -48940,10 +48579,10 @@ "updatedAt": "2025-05-06T05:05:27Z", "createdAt": "2018-06-23T22:07:51Z", "pushedAt": "2025-05-06T05:05:27Z", - "forks": 411, - "issues": 198, + "forks": 414, + "issues": 201, "subscribers": 10, - "stars": 2103, + "stars": 2121, "dependencies": 1 }, "name": "react-native-draggable-flatlist", @@ -48951,7 +48590,6 @@ "isPrivate": false, "description": "A drag-and-drop-enabled FlatList for React Native", "topics": [ - "react-native", "sortable", "draggable", "flatlist", @@ -48970,25 +48608,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-draggable-flatlist", "npm": { - "downloads": 632334, - "weekDownloads": 105421, + "downloads": 589083, + "weekDownloads": 129685, "size": 523106, "latestRelease": "4.0.3", "latestReleaseDate": "2025-05-06T05:05:46.134Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Lots of open issues", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.142, - "topicSearchString": "react-native sortable draggable flatlist drag drop sort list" + "popularity": 0.187, + "topicSearchString": "sortable draggable flatlist drag drop sort list" }, { "githubUrl": "https://github.com/hieuvp/react-native-fingerprint-scanner", @@ -49030,11 +48668,7 @@ "isPrivate": false, "description": "Provide Fingerprint, Touch ID, and Face ID Scanner for React Native (Compatible with both Android and iOS)", "topics": [ - "react-native", "component", - "react-component", - "react", - "native", "touch", "touchid", "touch-id", @@ -49057,12 +48691,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fingerprint-scanner", "npm": { - "downloads": 19535, - "weekDownloads": 3103, + "downloads": 20819, + "weekDownloads": 4674, "size": 66869, "latestRelease": "6.0.0", "latestReleaseDate": "2020-06-20T13:54:04.348Z" @@ -49074,8 +48709,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.615, - "topicSearchString": "react-native component react-component react native touch touchid touch-id fingerprint fingerprint-scanner authentication authenticate auth face-id faceid biometrics" + "popularity": -0.559, + "topicSearchString": "component touch touchid touch-id fingerprint fingerprint-scanner authentication authenticate auth face-id faceid biometrics" }, { "githubUrl": "https://github.com/react-native-google-cast/react-native-google-cast", @@ -49085,6 +48720,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/react-native-google-cast/react-native-google-cast", @@ -49100,9 +48736,9 @@ "createdAt": "2016-05-23T04:06:07Z", "pushedAt": "2025-08-07T09:40:47Z", "forks": 232, - "issues": 57, - "subscribers": 19, - "stars": 686, + "issues": 58, + "subscribers": 18, + "stars": 690, "dependencies": 0 }, "name": "react-native-google-cast", @@ -49110,7 +48746,6 @@ "isPrivate": false, "description": "React Native wrapper for the Google Cast SDK", "topics": [ - "react-native", "ios", "android", "chromecast", @@ -49130,24 +48765,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-google-cast", "npm": { - "downloads": 99310, - "weekDownloads": 13903, + "downloads": 84539, + "weekDownloads": 27747, "size": 976622, "latestRelease": "4.9.1", "latestReleaseDate": "2025-07-26T10:41:27.347Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.119, - "topicSearchString": "react-native ios android chromecast google cast google-cast sdk cast-library" + "popularity": 0.529, + "topicSearchString": "ios android chromecast google cast google-cast sdk cast-library" }, { "githubUrl": "https://github.com/Gil2015/react-native-table-component", @@ -49175,7 +48810,7 @@ "updatedAt": "2023-05-05T09:54:34Z", "createdAt": "2017-05-12T03:06:24Z", "pushedAt": "2023-05-05T09:54:34Z", - "forks": 159, + "forks": 158, "issues": 42, "subscribers": 10, "stars": 733, @@ -49186,7 +48821,6 @@ "isPrivate": false, "description": "🌱Build table for react native", "topics": [ - "react-native", "table", "cell", "table-component" @@ -49201,12 +48835,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-table-component", "npm": { - "downloads": 135198, - "weekDownloads": 23014, + "downloads": 118154, + "weekDownloads": 26521, "size": 34602, "latestRelease": "1.2.2", "latestReleaseDate": "2022-02-10T13:14:04.759Z" @@ -49218,8 +48853,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.605, - "topicSearchString": "react-native table cell table-component" + "popularity": -0.559, + "topicSearchString": "table cell table-component" }, { "githubUrl": "https://github.com/codemotionapps/react-native-dynamic/tree/master/library", @@ -49248,9 +48883,9 @@ "updatedAt": "2020-08-07T10:53:45Z", "createdAt": "2020-06-20T08:03:51Z", "pushedAt": "2020-08-07T10:53:45Z", - "forks": 18, - "issues": 12, - "subscribers": 8, + "forks": 19, + "issues": 11, + "subscribers": 7, "stars": 233, "dependencies": 3 }, @@ -49269,12 +48904,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 5843, - "weekDownloads": 1494, + "downloads": 5413, + "weekDownloads": 1214, "size": 31171, "latestRelease": "1.0.0", "latestReleaseDate": "2020-08-07T10:53:39.424Z" @@ -49285,7 +48921,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.533, + "popularity": -0.559, "topicSearchString": "" }, { @@ -49317,8 +48953,8 @@ "pushedAt": "2022-08-14T05:56:58Z", "forks": 152, "issues": 60, - "subscribers": 9, - "stars": 933, + "subscribers": 8, + "stars": 931, "dependencies": 3 }, "name": "rn-sliding-up-panel", @@ -49326,9 +48962,7 @@ "isPrivate": false, "description": "Draggable sliding up panel implemented in React Native https://octopitus.github.io/rn-sliding-up-panel/", "topics": [ - "react", - "react-native", - "react-component", + "component", "ios", "android", "sliding", @@ -49345,13 +48979,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-sliding-up-panel", "npm": { - "downloads": 13130, - "weekDownloads": 2292, + "downloads": 12384, + "weekDownloads": 2814, "size": 43672, "latestRelease": "2.4.6", "latestReleaseDate": "2022-08-14T05:57:04.170Z" @@ -49363,8 +48998,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, - "topicSearchString": "react react-native react-component ios android sliding panel sliding-up-panel" + "popularity": -0.557, + "topicSearchString": "component ios android sliding panel sliding-up-panel" }, { "githubUrl": "https://github.com/FormidableLabs/react-native-app-auth/tree/main/packages/react-native-app-auth", @@ -49375,6 +49010,7 @@ "android": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/FormidableLabs/react-native-app-auth", @@ -49386,13 +49022,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": 127, - "subscribers": 59, - "stars": 2186, + "pushedAt": "2025-10-17T18:34:27Z", + "forks": 424, + "issues": 131, + "subscribers": 58, + "stars": 2200, "dependencies": 2 }, "name": "react-native-app-auth", @@ -49400,8 +49036,6 @@ "isPrivate": false, "description": "React Native bridge for AppAuth for supporting any OAuth 2 provider", "topics": [ - "react", - "react-native", "auth", "authentication", "oauth", @@ -49418,25 +49052,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-app-auth", "npm": { - "downloads": 571239, - "weekDownloads": 136803, - "size": 144688, - "latestRelease": "8.0.3", - "latestReleaseDate": "2025-05-23T21:16:44.519Z" + "downloads": 509801, + "weekDownloads": 128497, + "size": 176559, + "latestRelease": "8.1.0", + "latestReleaseDate": "2025-10-17T18:36:04.768Z" }, - "score": 57, + "score": 65, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.204, - "topicSearchString": "react react-native auth authentication oauth oauth2 appauth" + "popularity": 0.214, + "topicSearchString": "auth authentication oauth oauth2 appauth" }, { "githubUrl": "https://github.com/nandorojo/react-navigation-heavy-screen", @@ -49458,7 +49094,7 @@ "pushedAt": "2023-05-18T15:36:48Z", "forks": 16, "issues": 2, - "subscribers": 4, + "subscribers": 3, "stars": 375, "dependencies": 2 }, @@ -49467,7 +49103,6 @@ "isPrivate": false, "description": "⚡️Optimize heavy screens to prevent lags during React Navigation transitions.", "topics": [ - "react-native", "ios", "android" ], @@ -49481,13 +49116,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-navigation-heavy-screen", "npm": { - "downloads": 1386, - "weekDownloads": 204, + "downloads": 1642, + "weekDownloads": 444, "size": 38385, "latestRelease": "1.2.1", "latestReleaseDate": "2021-05-08T21:36:26.089Z" @@ -49498,8 +49134,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.625, - "topicSearchString": "react-native ios android" + "popularity": -0.52, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/vadimdemedes/tailwind-rn", @@ -49525,7 +49161,7 @@ "pushedAt": "2024-05-11T17:28:26Z", "forks": 167, "issues": 34, - "subscribers": 21, + "subscribers": 20, "stars": 4277, "dependencies": 7 }, @@ -49535,8 +49171,7 @@ "description": "🦎 Use Tailwind CSS in React Native projects", "topics": [ "tailwind", - "tailwindcss", - "react-native" + "tailwindcss" ], "license": { "key": "mit", @@ -49548,12 +49183,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "tailwind-rn", "npm": { - "downloads": 18879, - "weekDownloads": 2954, + "downloads": 22487, + "weekDownloads": 4961, "size": 36184, "latestRelease": "4.2.0", "latestReleaseDate": "2022-02-07T14:49:40.222Z" @@ -49565,8 +49201,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.133, - "topicSearchString": "tailwind tailwindcss react-native" + "popularity": 0.188, + "topicSearchString": "tailwind tailwindcss" }, { "githubUrl": "https://github.com/charpeni/react-native-url-polyfill", @@ -49585,13 +49221,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-04-01T22:41:57Z", + "updatedAt": "2025-09-24T10:55:43Z", "createdAt": "2019-11-22T04:28:41Z", - "pushedAt": "2025-04-01T22:41:57Z", + "pushedAt": "2025-09-24T10:55:43Z", "forks": 26, - "issues": 8, + "issues": 7, "subscribers": 3, - "stars": 379, + "stars": 386, "dependencies": 1 }, "name": "react-native-url-polyfill", @@ -49602,7 +49238,6 @@ "url", "urlsearchparams", "polyfill", - "react-native", "whatwg-url", "javascript" ], @@ -49616,24 +49251,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-url-polyfill", "npm": { - "downloads": 4481893, - "weekDownloads": 718448, - "size": 27502, - "latestRelease": "2.0.0", - "latestReleaseDate": "2023-07-13T22:53:54.242Z" + "downloads": 4600901, + "weekDownloads": 1053000, + "size": 28670, + "latestRelease": "3.0.0", + "latestReleaseDate": "2025-09-24T15:49:33.442Z" }, - "score": 68, + "score": 97, "matchingScoreModifiers": [ + "Very popular", "Popular", "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.136, - "topicSearchString": "url urlsearchparams polyfill react-native whatwg-url javascript" + "popularity": 0.195, + "topicSearchString": "url urlsearchparams polyfill whatwg-url javascript" }, { "githubUrl": "https://github.com/danilowoz/react-content-loader", @@ -49659,10 +49297,10 @@ "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": 84, - "stars": 13943, + "subscribers": 83, + "stars": 13964, "dependencies": 0 }, "name": "react-content-loader", @@ -49670,8 +49308,6 @@ "isPrivate": false, "description": "⚪ SVG-Powered component to easily create skeleton loadings.", "topics": [ - "react", - "react-native", "skeleton", "placeholder", "loader", @@ -49692,12 +49328,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-content-loader", "npm": { - "downloads": 2569161, - "weekDownloads": 422655, + "downloads": 2466374, + "weekDownloads": 555046, "size": 164170, "latestRelease": "7.1.1", "latestReleaseDate": "2025-07-14T08:39:30.452Z" @@ -49709,8 +49346,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.14, - "topicSearchString": "react react-native skeleton placeholder loader loading content svg facebook-cards-loaders skeleton-screen components" + "popularity": 0.191, + "topicSearchString": "skeleton placeholder loader loading content svg facebook-cards-loaders skeleton-screen components" }, { "githubUrl": "https://github.com/n4kz/react-native-material-ripple", @@ -49737,7 +49374,7 @@ "forks": 80, "issues": 16, "subscribers": 5, - "stars": 416, + "stars": 417, "dependencies": 1 }, "name": "react-native-material-ripple", @@ -49745,9 +49382,7 @@ "isPrivate": false, "description": "Base component for touchable elements", "topics": [ - "react", - "react-component", - "react-native", + "component", "ios", "android", "ripple", @@ -49764,13 +49399,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-ripple", "npm": { - "downloads": 79423, - "weekDownloads": 15460, + "downloads": 71991, + "weekDownloads": 17146, "size": 12244, "latestRelease": "0.9.1", "latestReleaseDate": "2019-09-26T10:18:45.375Z" @@ -49781,16 +49417,15 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, - "topicSearchString": "react react-component react-native ios android ripple material material-design" + "popularity": -0.548, + "topicSearchString": "component ios android ripple material material-design" }, { "npmPkg": "@testing-library/react-native", "githubUrl": "https://github.com/callstack/react-native-testing-library", "examples": [ "https://github.com/callstack/react-native-testing-library/tree/main/examples/basic", - "https://github.com/callstack/react-native-testing-library/tree/main/examples/cookbook", - "https://github.com/callstack/react-native-testing-library/tree/main/examples/react-navigation" + "https://github.com/callstack/react-native-testing-library/tree/main/examples/cookbook" ], "ios": true, "android": true, @@ -49808,13 +49443,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-03T08:00:10Z", + "updatedAt": "2025-10-12T20:17:25Z", "createdAt": "2018-10-01T14:32:13Z", - "pushedAt": "2025-09-03T08:00:10Z", - "forks": 278, + "pushedAt": "2025-10-12T20:17:25Z", + "forks": 275, "issues": 6, - "subscribers": 28, - "stars": 3265, + "subscribers": 27, + "stars": 3280, "dependencies": 4 }, "name": "@testing-library/react-native", @@ -49823,8 +49458,6 @@ "registry": "https://registry.npmjs.org", "description": "🦉 Simple and complete React Native testing utilities that encourage good testing practices.", "topics": [ - "react-native", - "react", "test", "integration", "testing", @@ -49841,11 +49474,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4361601, - "weekDownloads": 740338, + "downloads": 4481864, + "weekDownloads": 1023245, "size": 705256, "latestRelease": "13.3.3", "latestReleaseDate": "2025-08-26T11:55:10.022Z" @@ -49858,8 +49492,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.144, - "topicSearchString": "react-native react test integration testing jest hacktoberfest" + "popularity": 0.194, + "topicSearchString": "test integration testing jest hacktoberfest" }, { "githubUrl": "https://github.com/retyui/react-native-confirmation-code-field", @@ -49891,10 +49525,10 @@ "updatedAt": "2025-06-22T11:16:33Z", "createdAt": "2018-08-17T14:40:34Z", "pushedAt": "2025-06-22T11:16:33Z", - "forks": 129, + "forks": 131, "issues": 1, - "subscribers": 4, - "stars": 1160, + "subscribers": 3, + "stars": 1176, "dependencies": 0 }, "name": "react-native-confirmation-code-field", @@ -49902,9 +49536,6 @@ "isPrivate": false, "description": "A react-native confirmation code field compatible with iOS, Android and Web", "topics": [ - "react", - "react-component", - "react-native", "component", "android", "ios", @@ -49929,12 +49560,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-confirmation-code-field", "npm": { - "downloads": 625130, - "weekDownloads": 90969, + "downloads": 689498, + "weekDownloads": 170165, "size": 24213, "latestRelease": "8.0.1", "latestReleaseDate": "2025-06-10T20:53:19.767Z" @@ -49945,8 +49577,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.124, - "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" + "popularity": 0.21, + "topicSearchString": "component android ios code-input confirmation-code pin-code confirmation-code-input pin-code-input library code-verification web otp-inputs one-time-password" }, { "githubUrl": "https://github.com/KjellConnelly/react-native-rate", @@ -49977,8 +49609,6 @@ "isPrivate": false, "description": "Send your app users to Apple App Store, Google Play, Amazon, or other using the newest APIs", "topics": [ - "react-native", - "react", "rate", "review", "rating", @@ -49994,13 +49624,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-rate", "npm": { - "downloads": 168595, - "weekDownloads": 29105, + "downloads": 144595, + "weekDownloads": 37748, "size": 39033, "latestRelease": "1.2.12", "latestReleaseDate": "2023-01-23T06:43:23.205Z" @@ -50012,8 +49643,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, - "topicSearchString": "react-native react rate review rating rate-me" + "popularity": -0.528, + "topicSearchString": "rate review rating rate-me" }, { "githubUrl": "https://github.com/rh389/react-native-securerandom", @@ -50045,7 +49676,6 @@ "isPrivate": false, "description": "A crypto-secure random bytes generator for react native", "topics": [ - "react-native", "secrandomcopybytes", "prng", "csprng", @@ -50064,13 +49694,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-securerandom", "npm": { - "downloads": 657649, - "weekDownloads": 103494, + "downloads": 505428, + "weekDownloads": 116345, "size": 51400, "latestRelease": "1.0.1", "latestReleaseDate": "2022-09-22T12:11:53.796Z" @@ -50081,8 +49712,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, - "topicSearchString": "react-native secrandomcopybytes prng csprng securerandom crypto randomnumbergenerator cryptography" + "popularity": -0.554, + "topicSearchString": "secrandomcopybytes prng csprng securerandom crypto randomnumbergenerator cryptography" }, { "githubUrl": "https://github.com/Kishanjvaghela/react-native-cardview", @@ -50109,7 +49740,7 @@ "updatedAt": "2021-04-12T18:10:51Z", "createdAt": "2017-04-26T12:28:19Z", "pushedAt": "2021-04-12T18:10:51Z", - "forks": 76, + "forks": 75, "issues": 14, "subscribers": 8, "stars": 509, @@ -50120,9 +49751,7 @@ "isPrivate": false, "description": "Native CardView for react-native (All Android version and iOS)", "topics": [ - "react", - "react-native", - "react-component", + "component", "card", "cardview", "card-view", @@ -50133,7 +49762,6 @@ "support", "android", "ios", - "component", "elevation" ], "license": { @@ -50146,13 +49774,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-cardview", "npm": { - "downloads": 3803, - "weekDownloads": 686, + "downloads": 7765, + "weekDownloads": 1010, "size": 1581220, "latestRelease": "2.0.5", "latestReleaseDate": "2019-10-21T05:43:37.376Z" @@ -50163,8 +49792,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, - "topicSearchString": "react react-native react-component card cardview card-view shadow shadow-view shadowview appcompat support android ios component elevation" + "popularity": -0.639, + "topicSearchString": "component card cardview card-view shadow shadow-view shadowview appcompat support android ios elevation" }, { "githubUrl": "https://github.com/wonsikin/react-native-barcode-builder", @@ -50201,7 +49830,6 @@ "isPrivate": false, "description": "Component for generating barcode in react native app", "topics": [ - "react-native", "barcode" ], "license": { @@ -50214,13 +49842,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-barcode-builder", "npm": { - "downloads": 22295, - "weekDownloads": 3834, + "downloads": 23231, + "weekDownloads": 5289, "size": 242759539, "latestRelease": "2.0.0", "latestReleaseDate": "2020-03-29T09:13:35.558Z" @@ -50232,8 +49861,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, - "topicSearchString": "react-native barcode" + "popularity": -0.556, + "topicSearchString": "barcode" }, { "githubUrl": "https://github.com/jacse/react-native-app-intro-slider", @@ -50262,10 +49891,10 @@ "updatedAt": "2020-09-22T06:14:17Z", "createdAt": "2017-11-14T16:20:09Z", "pushedAt": "2020-09-22T06:14:17Z", - "forks": 312, + "forks": 313, "issues": 45, "subscribers": 18, - "stars": 1694, + "stars": 1702, "dependencies": 0 }, "name": "react-native-app-intro-slider", @@ -50278,8 +49907,7 @@ "intro", "ios", "android", - "react-component", - "react-native", + "component", "slider" ], "license": { @@ -50292,26 +49920,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-app-intro-slider", "npm": { - "downloads": 110732, - "weekDownloads": 20216, + "downloads": 72157, + "weekDownloads": 16602, "size": 28526, "latestRelease": "4.0.4", "latestReleaseDate": "2020-05-26T13:35:26.877Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.595, - "topicSearchString": "swiper app intro ios android react-component react-native slider" + "popularity": -0.554, + "topicSearchString": "swiper app intro ios android component slider" }, { "githubUrl": "https://github.com/pradeep1991singh/react-native-secure-key-store", @@ -50334,10 +49962,10 @@ "updatedAt": "2022-08-18T02:50:45Z", "createdAt": "2017-05-06T05:09:10Z", "pushedAt": "2022-08-18T02:50:45Z", - "forks": 59, + "forks": 60, "issues": 28, "subscribers": 4, - "stars": 238, + "stars": 239, "dependencies": 0 }, "name": "react-native-secure-key-store", @@ -50346,7 +49974,6 @@ "registry": "https://registry.npmjs.org", "description": "React Native Library for securely storing keys to iOS KeyChain and Android KeyStore.", "topics": [ - "react-native", "ios", "android", "keychain-service", @@ -50365,13 +49992,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-secure-key-store", "npm": { - "downloads": 43375, - "weekDownloads": 8382, + "downloads": 42549, + "weekDownloads": 8309, "size": 523934, "latestRelease": "2.0.10", "latestReleaseDate": "2022-08-18T03:01:30.247Z" @@ -50382,8 +50010,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, - "topicSearchString": "react-native ios android keychain-service keystore-service device-security keychain-services keystore-services" + "popularity": -0.584, + "topicSearchString": "ios android keychain-service keystore-service device-security keychain-services keystore-services" }, { "githubUrl": "https://github.com/rnmapbox/maps", @@ -50400,6 +50028,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/rnmapbox/maps", @@ -50411,26 +50040,26 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-07T08:48:51Z", + "updatedAt": "2025-10-18T15:43:24Z", "createdAt": "2019-04-07T21:53:54Z", - "pushedAt": "2025-09-07T08:48:51Z", - "forks": 886, - "issues": 134, - "subscribers": 36, - "stars": 2595, + "pushedAt": "2025-10-18T15:43:24Z", + "forks": 893, + "issues": 81, + "subscribers": 34, + "stars": 2643, "dependencies": 7 }, "name": "@rnmapbox/maps", "fullName": "rnmapbox/maps", "isPrivate": false, + "registry": "https://registry.npmjs.org/", "description": "A Mapbox react native module for creating custom maps", "topics": [ - "gl", "ios", "android", "mapbox", - "react-native", - "mapbox-gl-native", + "maps", + "mapbox-gl", "map", "expo", "maplibre" @@ -50445,26 +50074,27 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 288716, - "weekDownloads": 47084, - "size": 6200737, - "latestRelease": "10.1.43", - "latestReleaseDate": "2025-09-07T08:17:36.475Z" + "downloads": 317010, + "weekDownloads": 68326, + "size": 3135088, + "latestRelease": "10.2.6", + "latestReleaseDate": "2025-10-18T15:45:34.909Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.139, - "topicSearchString": "gl ios android mapbox react-native mapbox-gl-native map expo maplibre" + "popularity": 0.183, + "topicSearchString": "ios android mapbox maps mapbox-gl map expo maplibre" }, { "githubUrl": "https://github.com/venits/react-native-map-clustering", @@ -50488,10 +50118,10 @@ "updatedAt": "2025-07-23T18:05:40Z", "createdAt": "2017-09-01T15:25:34Z", "pushedAt": "2025-07-23T18:05:40Z", - "forks": 217, - "issues": 73, + "forks": 220, + "issues": 76, "subscribers": 8, - "stars": 731, + "stars": 737, "dependencies": 2 }, "name": "react-native-map-clustering", @@ -50499,8 +50129,6 @@ "isPrivate": false, "description": "React Native map clustering both for Android and iOS.", "topics": [ - "react-native", - "react", "cluster", "android", "ios", @@ -50520,24 +50148,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-map-clustering", "npm": { - "downloads": 87278, - "weekDownloads": 14233, + "downloads": 93526, + "weekDownloads": 21563, "size": 37695, "latestRelease": "4.0.0", "latestReleaseDate": "2025-07-23T18:05:32.983Z" }, - "score": 68, + "score": 57, "matchingScoreModifiers": [ "Popular", "Known", + "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.139, - "topicSearchString": "react-native react cluster android ios map clustering mapview markers maps" + "popularity": 0.196, + "topicSearchString": "cluster android ios map clustering mapview markers maps" }, { "githubUrl": "https://github.com/revtel/react-native-nfc-manager", @@ -50546,6 +50176,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/revtel/react-native-nfc-manager", @@ -50557,13 +50188,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-19T11:42:46Z", + "updatedAt": "2025-09-27T00:37:44Z", "createdAt": "2017-06-17T00:05:59Z", - "pushedAt": "2025-08-19T11:42:46Z", - "forks": 328, + "pushedAt": "2025-09-27T00:37:44Z", + "forks": 329, "issues": 6, "subscribers": 31, - "stars": 1526, + "stars": 1552, "dependencies": 0 }, "name": "react-native-nfc-manager", @@ -50571,7 +50202,6 @@ "isPrivate": false, "description": "React Native NFC module for Android & iOS", "topics": [ - "react-native", "android", "ios", "nfc" @@ -50586,15 +50216,16 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-nfc-manager", "npm": { - "downloads": 170394, - "weekDownloads": 27167, - "size": 224665, - "latestRelease": "3.16.3", - "latestReleaseDate": "2025-08-19T11:42:03.144Z" + "downloads": 172758, + "weekDownloads": 41302, + "size": 227298, + "latestRelease": "3.17.1", + "latestReleaseDate": "2025-09-27T00:37:42.685Z" }, "score": 73, "matchingScoreModifiers": [ @@ -50603,8 +50234,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.136, - "topicSearchString": "react-native android ios nfc" + "popularity": 0.203, + "topicSearchString": "android ios nfc" }, { "githubUrl": "https://github.com/mtford90/react-native-watch-connectivity", @@ -50628,8 +50259,8 @@ "pushedAt": "2024-02-12T08:54:59Z", "forks": 89, "issues": 18, - "subscribers": 14, - "stars": 755, + "subscribers": 13, + "stars": 759, "dependencies": 1 }, "name": "react-native-watch-connectivity", @@ -50637,12 +50268,10 @@ "isPrivate": false, "description": "Enable communication between apple watch app and react native", "topics": [ - "react-native", "ios", "watch", "apple-watch", - "iwatch", - "react" + "iwatch" ], "license": { "key": "mit", @@ -50654,12 +50283,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-watch-connectivity", "npm": { - "downloads": 48800, - "weekDownloads": 8840, + "downloads": 50750, + "weekDownloads": 10939, "size": 118589, "latestRelease": "1.1.0", "latestReleaseDate": "2022-09-29T06:08:45.964Z" @@ -50671,8 +50301,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.154, - "topicSearchString": "react-native ios watch apple-watch iwatch react" + "popularity": 0.183, + "topicSearchString": "ios watch apple-watch iwatch" }, { "githubUrl": "https://github.com/EkoLabs/react-native-background-downloader", @@ -50704,7 +50334,6 @@ "isPrivate": false, "description": "A library for React-Native to help you download large files on iOS and Android both in the foreground and most importantly in the background.", "topics": [ - "react-native", "background", "download", "large-files" @@ -50719,12 +50348,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-background-downloader", "npm": { - "downloads": 1162, - "weekDownloads": 191, + "downloads": 1042, + "weekDownloads": 190, "size": 89133, "latestRelease": "2.3.4", "latestReleaseDate": "2019-12-10T14:13:55.311Z" @@ -50735,8 +50365,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.61, - "topicSearchString": "react-native background download large-files" + "popularity": -0.595, + "topicSearchString": "background download large-files" }, { "githubUrl": "https://github.com/mrousavy/react-native-google-nearby-messages", @@ -50761,7 +50391,7 @@ "pushedAt": "2022-05-03T18:47:28Z", "forks": 34, "issues": 14, - "subscribers": 2, + "subscribers": 1, "stars": 225, "dependencies": 0 }, @@ -50770,13 +50400,12 @@ "isPrivate": false, "description": "📲 Communicate with nearby devices using Bluetooth, BLE, WiFi and near-ultrasonic audio. Broadcast and receive small payloads (like strings) using the easy-to-use React Native API!", "topics": [ - "react-native", "google", "nearby", "messages", "android", "ios", - "native-module", + "module", "nearby-messages", "google-nearby", "swift", @@ -50802,13 +50431,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-google-nearby-messages", "npm": { - "downloads": 39, - "weekDownloads": 2, + "downloads": 102, + "weekDownloads": 5, "size": 207047, "latestRelease": "1.0.22", "latestReleaseDate": "2021-10-05T12:29:39.538Z" @@ -50819,8 +50449,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.456, - "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" + "popularity": -1.458, + "topicSearchString": "google nearby messages android ios module nearby-messages google-nearby swift java kotlin bluetooth ble wifi broadcast audio microphone api library typescript" }, { "githubUrl": "https://github.com/bberak/react-native-game-engine", @@ -50841,10 +50471,10 @@ "updatedAt": "2024-12-31T04:31:41Z", "createdAt": "2017-06-19T05:41:41Z", "pushedAt": "2024-12-31T04:31:41Z", - "forks": 183, + "forks": 185, "issues": 17, - "subscribers": 64, - "stars": 3043, + "subscribers": 63, + "stars": 3054, "dependencies": 1 }, "name": "react-native-game-engine", @@ -50852,8 +50482,6 @@ "isPrivate": false, "description": "A lightweight Game Engine for React Native 🕹⚡🎮", "topics": [ - "react", - "react-native", "game", "gaming", "game-dev", @@ -50871,12 +50499,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-game-engine", "npm": { - "downloads": 8946, - "weekDownloads": 1664, + "downloads": 8826, + "weekDownloads": 1830, "size": 54003, "latestRelease": "1.2.0", "latestReleaseDate": "2020-06-09T06:13:40.275Z" @@ -50888,8 +50517,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, - "topicSearchString": "react react-native game gaming game-dev game-development game-engine game-2d" + "popularity": 0.176, + "topicSearchString": "game gaming game-dev game-development game-engine game-2d" }, { "githubUrl": "https://github.com/Kjens93/react-native-font-faces", @@ -50925,7 +50554,6 @@ "isPrivate": false, "description": "Easily emulate font-face behavior in react-native", "topics": [ - "react-native", "fonts", "font-weight", "font-face", @@ -50944,13 +50572,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-font-faces", "npm": { - "downloads": 814, - "weekDownloads": 116, + "downloads": 491, + "weekDownloads": 85, "size": 260519, "latestRelease": "4.1.4", "latestReleaseDate": "2023-04-17T12:32:48.084Z" @@ -50960,8 +50589,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.629, - "topicSearchString": "react-native fonts font-weight font-face font-style custom-fonts expo web" + "popularity": -1.602, + "topicSearchString": "fonts font-weight font-face font-style custom-fonts expo web" }, { "githubUrl": "https://github.com/ammarahm-ed/react-native-actions-sheet", @@ -50986,13 +50615,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-02T18:18:30Z", + "updatedAt": "2025-10-16T03:57:56Z", "createdAt": "2020-01-09T10:31:03Z", - "pushedAt": "2025-07-02T18:18:30Z", - "forks": 143, - "issues": 105, - "subscribers": 15, - "stars": 1850, + "pushedAt": "2025-10-16T03:57:56Z", + "forks": 145, + "issues": 104, + "subscribers": 14, + "stars": 1879, "dependencies": 0 }, "name": "react-native-actions-sheet", @@ -51001,7 +50630,6 @@ "description": "A Cross Platform(Android, iOS & Web) ActionSheet with a flexible api, native performance and zero dependency code for react native. Create anything you want inside ActionSheet.", "topics": [ "bottom-animated", - "react-native", "javascript", "actionsheet", "android", @@ -51015,8 +50643,6 @@ "drawer", "raw-bottom-sheet", "bottom-app-bar", - "react", - "native", "action", "sheet", "bottom" @@ -51031,25 +50657,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-actions-sheet", "npm": { - "downloads": 207355, - "weekDownloads": 34289, - "size": 152034, - "latestRelease": "0.9.7", - "latestReleaseDate": "2024-08-01T10:20:33.694Z" + "downloads": 207611, + "weekDownloads": 48257, + "size": 153489, + "latestRelease": "0.9.8", + "latestReleaseDate": "2025-10-16T03:57:29.699Z" }, - "score": 57, + "score": 62, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.141, - "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" + "popularity": 0.198, + "topicSearchString": "bottom-animated javascript actionsheet android ios action-sheet bottom-sheet bottom-drawer dialog picker modal drawer raw-bottom-sheet bottom-app-bar action sheet bottom" }, { "githubUrl": "https://github.com/prscX/react-native-photo-editor", @@ -51075,10 +50703,10 @@ "updatedAt": "2022-04-05T12:24:03Z", "createdAt": "2018-08-25T16:09:26Z", "pushedAt": "2022-04-05T12:24:03Z", - "forks": 228, + "forks": 229, "issues": 106, "subscribers": 12, - "stars": 1129, + "stars": 1128, "dependencies": 0 }, "name": "react-native-photo-editor", @@ -51086,7 +50714,6 @@ "isPrivate": false, "description": "React Native: Native Photo Editor", "topics": [ - "react-native", "android", "ios" ], @@ -51100,13 +50727,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-photo-editor", "npm": { - "downloads": 7096, - "weekDownloads": 2291, + "downloads": 3601, + "weekDownloads": 655, "size": 19488820, "latestRelease": "1.0.13", "latestReleaseDate": "2022-02-08T11:18:05.990Z" @@ -51119,8 +50747,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.475, - "topicSearchString": "react-native android ios" + "popularity": -0.595, + "topicSearchString": "android ios" }, { "githubUrl": "https://github.com/mrousavy/react-native-blurhash", @@ -51149,10 +50777,10 @@ "updatedAt": "2025-08-13T11:18:07Z", "createdAt": "2020-06-08T09:08:36Z", "pushedAt": "2025-08-13T11:18:07Z", - "forks": 77, + "forks": 76, "issues": 16, - "subscribers": 9, - "stars": 2135, + "subscribers": 8, + "stars": 2153, "dependencies": 0 }, "name": "react-native-blurhash", @@ -51161,7 +50789,6 @@ "registry": "https://registry.npmjs.org/", "description": "🖼️ A library to show colorful blurry placeholders while your content loads.", "topics": [ - "react-native", "blurhash", "image", "ui", @@ -51171,7 +50798,7 @@ "placeholder", "swift", "kotlin", - "native-module", + "module", "typescript", "node", "javascript", @@ -51187,24 +50814,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-blurhash", "npm": { - "downloads": 50758, - "weekDownloads": 8652, + "downloads": 57651, + "weekDownloads": 13847, "size": 108855, "latestRelease": "2.1.2", "latestReleaseDate": "2025-08-08T14:06:57.598Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.145, - "topicSearchString": "react-native blurhash image ui ux component loading placeholder swift kotlin native-module typescript node javascript library" + "popularity": 0.204, + "topicSearchString": "blurhash image ui ux component loading placeholder swift kotlin module typescript node javascript library" }, { "githubUrl": "https://github.com/LonelyCpp/react-native-youtube-iframe", @@ -51229,9 +50857,9 @@ "createdAt": "2019-12-14T12:05:10Z", "pushedAt": "2025-07-01T04:24:21Z", "forks": 164, - "issues": 59, + "issues": 60, "subscribers": 8, - "stars": 661, + "stars": 671, "dependencies": 1 }, "name": "react-native-youtube-iframe", @@ -51239,10 +50867,7 @@ "isPrivate": false, "description": "A wrapper of the Youtube-iframe API built for react native.", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -51265,12 +50890,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-youtube-iframe", "npm": { - "downloads": 433562, - "weekDownloads": 76192, + "downloads": 394760, + "weekDownloads": 91826, "size": 74746, "latestRelease": "2.4.1", "latestReleaseDate": "2025-07-01T04:27:12.457Z" @@ -51281,8 +50907,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.149, - "topicSearchString": "react-native react-component component react mobile ios android ui youtube youtube-iframe iframe youtube-api youtube-player youtube-video expo" + "popularity": 0.198, + "topicSearchString": "component mobile ios android ui youtube youtube-iframe iframe youtube-api youtube-player youtube-video expo" }, { "githubUrl": "https://github.com/mrousavy/react-native-notification-badge", @@ -51306,7 +50932,7 @@ "pushedAt": "2020-09-17T19:08:51Z", "forks": 8, "issues": 2, - "subscribers": 4, + "subscribers": 3, "stars": 54, "dependencies": 0 }, @@ -51315,15 +50941,13 @@ "isPrivate": false, "description": "🔴 A notification badge count manager for React Native", "topics": [ - "react-native", "notification", "badge", "count", - "native-module", + "module", "notifications", "manager", - "library", - "react" + "library" ], "license": { "key": "mit", @@ -51335,13 +50959,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-notification-badge", "npm": { - "downloads": 2848, - "weekDownloads": 591, + "downloads": 3076, + "weekDownloads": 664, "size": 32594, "latestRelease": "1.0.5", "latestReleaseDate": "2020-07-29T13:22:37.555Z" @@ -51351,8 +50976,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.574, - "topicSearchString": "react-native notification badge count native-module notifications manager library react" + "popularity": -0.566, + "topicSearchString": "notification badge count module notifications manager library" }, { "githubUrl": "https://github.com/mcodex/react-native-rooster", @@ -51378,28 +51003,28 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-05-13T18:26:44Z", + "updatedAt": "2025-10-21T13:48:38Z", "createdAt": "2020-07-25T14:16:01Z", - "pushedAt": "2025-05-13T18:26:44Z", + "pushedAt": "2025-10-21T13:48:38Z", "forks": 0, "issues": 0, - "subscribers": 4, - "stars": 31, - "dependencies": 1 + "subscribers": 3, + "stars": 30, + "dependencies": 0 }, "name": "react-native-rooster", "fullName": "mCodex/react-native-rooster", "isPrivate": false, - "description": "Your toast solution for react-native apps 🐔", + "registry": "https://registry.npmjs.org/", + "description": "Fully-customisable toast notifications for React Native apps. Lightweight, animated, and built for delightful UX 🐔", "topics": [ - "react-native", - "rooster", "ios", "android", "toast", "typescript", "macos", - "windows" + "windows", + "expo" ], "license": { "key": "mit", @@ -51411,22 +51036,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-rooster", "npm": { - "downloads": 60, - "weekDownloads": 11, + "downloads": 114, + "weekDownloads": 2, "size": 719280, "latestRelease": "2.0.1", "latestReleaseDate": "2025-05-13T18:22:15.902Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.593, - "topicSearchString": "react-native rooster ios android toast typescript macos windows" + "popularity": -0.735, + "topicSearchString": "ios android toast typescript macos windows expo" }, { "githubUrl": "https://github.com/vydimitrov/use-count-up", @@ -51460,7 +51087,7 @@ "forks": 15, "issues": 1, "subscribers": 2, - "stars": 433, + "stars": 434, "dependencies": 1 }, "name": "use-count-up", @@ -51468,15 +51095,11 @@ "isPrivate": false, "description": "React/React Native component and hook to animate counting up or down to a number", "topics": [ - "react", "reactjs", - "react-native", "animate-numerical-value", "animations", "count-up", "countup", - "react-count-up", - "react-countup", "countdown", "count-down", "counting", @@ -51499,23 +51122,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "use-count-up", "npm": { - "downloads": 155011, - "weekDownloads": 26160, + "downloads": 144509, + "weekDownloads": 32526, "size": 27496, "latestRelease": "3.0.1", "latestReleaseDate": "2021-09-05T13:22:52.417Z" }, - "score": 51, + "score": 41, "matchingScoreModifiers": [ "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.143, - "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" + "popularity": 0.191, + "topicSearchString": "reactjs animate-numerical-value animations count-up countup countdown count-down counting hooks ios android use use-count-up use-countup typescript animate-counting" }, { "githubUrl": "https://github.com/vydimitrov/react-countdown-circle-timer/tree/master/packages/mobile", @@ -51547,8 +51172,8 @@ "pushedAt": "2025-04-14T14:55:53Z", "forks": 88, "issues": 2, - "subscribers": 6, - "stars": 710, + "subscribers": 7, + "stars": 713, "dependencies": 0 }, "name": "react-native-countdown-circle-timer", @@ -51556,7 +51181,6 @@ "isPrivate": false, "description": "Lightweight React Native countdown timer component with color and progress animation based on SVG", "topics": [ - "react-native", "countdown", "timer", "circle", @@ -51573,23 +51197,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 56680, - "weekDownloads": 9675, + "downloads": 58831, + "weekDownloads": 12022, "size": 22520, "latestRelease": "3.2.1", "latestReleaseDate": "2023-03-15T07:26:20.362Z" }, - "score": 68, + "score": 57, "matchingScoreModifiers": [ "Popular", "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "react-native countdown timer circle clock svg" + "popularity": 0.174, + "topicSearchString": "countdown timer circle clock svg" }, { "githubUrl": "https://github.com/jordanbyron/react-native-event-source", @@ -51624,8 +51250,7 @@ "isPrivate": false, "description": "A react-native interface for EventSource: Server-Sent Events for iOS and Android", "topics": [ - "react-native", - "react-component", + "component", "event-source", "sse" ], @@ -51639,13 +51264,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-event-source", "npm": { - "downloads": 18178, - "weekDownloads": 3249, + "downloads": 14751, + "weekDownloads": 4422, "size": 16849, "latestRelease": "1.1.0", "latestReleaseDate": "2019-05-27T20:31:38.679Z" @@ -51656,8 +51282,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, - "topicSearchString": "react-native react-component event-source sse" + "popularity": -0.495, + "topicSearchString": "component event-source sse" }, { "githubUrl": "https://github.com/chaimPaneth/react-native-zoom-bridge", @@ -51692,7 +51318,6 @@ "isPrivate": false, "description": "React-native bridge for ZoomUs video conference calls SDK", "topics": [ - "react-native", "zoom-sdk", "mobilertc", "zoom.us", @@ -51718,13 +51343,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-zoom-bridge", "npm": { - "downloads": 45, - "weekDownloads": 13, + "downloads": 140, + "weekDownloads": 4, "size": 103880, "latestRelease": "1.0.18", "latestReleaseDate": "2020-07-14T14:11:07.347Z" @@ -51734,8 +51360,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.49, - "topicSearchString": "react-native zoom-sdk mobilertc zoom.us video-calls conference-calls chat-online zoom-us sdk bridge ios android confrence calls meetings" + "popularity": -1.725, + "topicSearchString": "zoom-sdk mobilertc zoom.us video-calls conference-calls chat-online zoom-us sdk bridge ios android confrence calls meetings" }, { "githubUrl": "https://github.com/chaimPaneth/react-native-jw-media-player", @@ -51769,7 +51395,7 @@ "forks": 82, "issues": 89, "subscribers": 8, - "stars": 196, + "stars": 197, "dependencies": 0 }, "name": "react-native-jw-media-player", @@ -51777,8 +51403,6 @@ "isPrivate": false, "description": "React-Native Android/iOS bridge for JWPlayer SDK (https://www.jwplayer.com/)", "topics": [ - "react", - "react-native", "jwplayer", "media", "player", @@ -51801,12 +51425,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-jw-media-player", "npm": { - "downloads": 1339, - "weekDownloads": 262, + "downloads": 1242, + "weekDownloads": 196, "size": 1232934, "latestRelease": "0.2.46", "latestReleaseDate": "2024-04-18T16:21:07.942Z" @@ -51818,8 +51443,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.584, - "topicSearchString": "react react-native jwplayer media player mediaplayer media-player jw android ios audio video sdk" + "popularity": -0.616, + "topicSearchString": "jwplayer media player mediaplayer media-player jw android ios audio video sdk" }, { "githubUrl": "https://github.com/callstack/react-native-ios-kit", @@ -51844,8 +51469,8 @@ "pushedAt": "2021-06-22T06:41:53Z", "forks": 53, "issues": 18, - "subscribers": 4, - "stars": 538, + "subscribers": 3, + "stars": 541, "dependencies": 3 }, "name": "react-native-ios-kit", @@ -51853,7 +51478,6 @@ "isPrivate": false, "description": "The missing React Native UI Kit for iOS", "topics": [ - "react-native", "ios-ui", "ui-kit" ], @@ -51867,13 +51491,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ios-kit", "npm": { - "downloads": 2006, - "weekDownloads": 317, + "downloads": 2328, + "weekDownloads": 416, "size": 289678, "latestRelease": "0.0.22", "latestReleaseDate": "2020-05-13T10:44:26.857Z" @@ -51884,8 +51509,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, - "topicSearchString": "react-native ios-ui ui-kit" + "popularity": -0.598, + "topicSearchString": "ios-ui ui-kit" }, { "githubUrl": "https://github.com/arronhunt/react-native-emoji-selector", @@ -51908,10 +51533,10 @@ "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": 8, - "stars": 310, + "subscribers": 7, + "stars": 312, "dependencies": 1 }, "name": "react-native-emoji-selector", @@ -51920,8 +51545,6 @@ "description": "⚛️😎 Simple, customizable and theme-able Emoji selector for React Native", "topics": [ "emoji", - "react", - "react-native", "emoji-keyboard" ], "license": { @@ -51934,12 +51557,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-emoji-selector", "npm": { - "downloads": 19601, - "weekDownloads": 2978, + "downloads": 15485, + "weekDownloads": 3889, "size": 15476, "latestRelease": "0.2.0", "latestReleaseDate": "2020-12-04T19:35:57.846Z" @@ -51950,8 +51574,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.129, - "topicSearchString": "emoji react react-native emoji-keyboard" + "popularity": 0.214, + "topicSearchString": "emoji emoji-keyboard" }, { "githubUrl": "https://github.com/rgommezz/react-native-scroll-bottom-sheet", @@ -51977,8 +51601,8 @@ "pushedAt": "2023-01-24T23:03:29Z", "forks": 62, "issues": 17, - "subscribers": 14, - "stars": 1549, + "subscribers": 13, + "stars": 1547, "dependencies": 1 }, "name": "react-native-scroll-bottom-sheet", @@ -51986,8 +51610,6 @@ "isPrivate": false, "description": "Cross platform scrollable bottom sheet with virtualisation support, native animations at 60 FPS and fully implemented in JS land :fire:", "topics": [ - "react-native", - "react", "ios", "android", "bottom-sheet", @@ -52007,13 +51629,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-scroll-bottom-sheet", "npm": { - "downloads": 1889, - "weekDownloads": 206, + "downloads": 2493, + "weekDownloads": 441, "size": 204895, "latestRelease": "0.7.0", "latestReleaseDate": "2020-08-24T22:22:17.293Z" @@ -52025,8 +51648,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.657, - "topicSearchString": "react-native react ios android bottom-sheet bottomsheet cross-platform 60fps reanimated gesture-handler" + "popularity": -0.599, + "topicSearchString": "ios android bottom-sheet bottomsheet cross-platform 60fps reanimated gesture-handler" }, { "githubUrl": "https://github.com/RafaelAugustoS/react-native-popup-ui", @@ -52053,8 +51676,8 @@ "pushedAt": "2021-03-30T16:04:12Z", "forks": 63, "issues": 11, - "subscribers": 10, - "stars": 400, + "subscribers": 9, + "stars": 398, "dependencies": 0 }, "name": "popup-ui", @@ -52062,10 +51685,7 @@ "isPrivate": false, "description": "A simple and fully customizable React Native component that implements a popup UI.", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -52084,12 +51704,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 6472, - "weekDownloads": 1300, + "downloads": 6939, + "weekDownloads": 2151, "size": 4170390, "latestRelease": "1.2.2", "latestReleaseDate": "2020-10-27T01:20:57.332Z" @@ -52100,8 +51721,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, - "topicSearchString": "react-native react-component component react mobile ios android ui popup popup-ui popup-ui-design" + "popularity": -0.486, + "topicSearchString": "component mobile ios android ui popup popup-ui popup-ui-design" }, { "githubUrl": "https://github.com/WrathChaos/react-native-header-view", @@ -52128,7 +51749,7 @@ "pushedAt": "2023-02-08T23:29:02Z", "forks": 36, "issues": 1, - "subscribers": 10, + "subscribers": 9, "stars": 657, "dependencies": 0 }, @@ -52148,14 +51769,12 @@ "modern", "modern-header", "classic-header", - "react-native", "icons", "javascript", "ui-lib", "rn", "header-view", "view", - "react", "reactjs", "ios", "mobile", @@ -52172,12 +51791,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 43, - "weekDownloads": 5, + "downloads": 1061, + "weekDownloads": 48, "size": 31102, "latestRelease": "1.2.0", "latestReleaseDate": "2021-09-20T16:39:32.999Z" @@ -52188,8 +51808,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.4, - "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" + "popularity": -0.711, + "topicSearchString": "elegant elegant-header gorgeous gorgeous-header apple apple-header header classic modern modern-header classic-header icons javascript ui-lib rn header-view view reactjs ios mobile mobile-app-development android" }, { "githubUrl": "https://github.com/thegamenicorus/react-native-phone-input", @@ -52212,7 +51832,7 @@ "updatedAt": "2019-12-25T19:38:46Z", "createdAt": "2017-02-01T08:01:01Z", "pushedAt": "2019-12-25T19:38:46Z", - "forks": 353, + "forks": 351, "issues": 70, "subscribers": 7, "stars": 395, @@ -52223,7 +51843,6 @@ "isPrivate": false, "description": "Phone input box for React Native", "topics": [ - "react-native", "phone", "telephone", "phone-input", @@ -52246,13 +51865,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-phone-input", "npm": { - "downloads": 65699, - "weekDownloads": 11444, + "downloads": 51595, + "weekDownloads": 12531, "size": 2011977, "latestRelease": "1.3.7", "latestReleaseDate": "2023-07-28T15:10:30.658Z" @@ -52264,8 +51884,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, - "topicSearchString": "react-native phone telephone phone-input input tel input-text international component ios android country-picker" + "popularity": -0.544, + "topicSearchString": "phone telephone phone-input input tel input-text international component ios android country-picker" }, { "githubUrl": "https://github.com/Gustash/react-native-siri-shortcut", @@ -52273,6 +51893,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", @@ -52290,7 +51911,7 @@ "forks": 51, "issues": 9, "subscribers": 4, - "stars": 327, + "stars": 328, "dependencies": 0 }, "name": "react-native-siri-shortcut", @@ -52298,16 +51919,13 @@ "isPrivate": false, "description": "A React Native package for using iOS 12+ Siri Shortcuts.", "topics": [ - "react-native", "siri", "ios", "siri-shortcuts", "shortcuts", "automation", "swift", - "react-component", - "native", - "react" + "component" ], "license": { "key": "mit", @@ -52319,12 +51937,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-siri-shortcut", "npm": { - "downloads": 16523, - "weekDownloads": 2676, + "downloads": 15996, + "weekDownloads": 3644, "size": 67729, "latestRelease": "3.2.4", "latestReleaseDate": "2023-12-13T17:29:12.036Z" @@ -52335,8 +51954,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.138, - "topicSearchString": "react-native siri ios siri-shortcuts shortcuts automation swift react-component native react" + "popularity": 0.194, + "topicSearchString": "siri ios siri-shortcuts shortcuts automation swift component" }, { "githubUrl": "https://github.com/Gustash/react-native-image-keyboard", @@ -52359,7 +51978,7 @@ "updatedAt": "2023-11-13T11:56:14Z", "createdAt": "2020-04-17T15:22:50Z", "pushedAt": "2023-11-13T11:56:14Z", - "forks": 15, + "forks": 16, "issues": 2, "subscribers": 3, "stars": 151, @@ -52370,7 +51989,6 @@ "isPrivate": false, "description": "React Native TextInput expansion to enable media input.", "topics": [ - "react-native", "text-input", "gif", "png", @@ -52390,12 +52008,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-image-keyboard", "npm": { - "downloads": 1442, - "weekDownloads": 366, + "downloads": 1064, + "weekDownloads": 181, "size": 35437, "latestRelease": "2.2.1", "latestReleaseDate": "2023-11-13T11:57:33.635Z" @@ -52405,8 +52024,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.216, - "topicSearchString": "react-native text-input gif png clipboard ime gboard stickers media" + "popularity": 0.145, + "topicSearchString": "text-input gif png clipboard ime gboard stickers media" }, { "githubUrl": "https://github.com/ushelp/EasyQRCode-React-Native", @@ -52445,11 +52064,9 @@ "qrcode", "easyqrcode", "qrcodejs", - "react-native", "reactnative", "rn-qrcode", "reactnative-qrcode", - "qrcode-react-native", "javascript-qrcode", "qrcode-logo", "qrcode-generator", @@ -52468,11 +52085,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 246, - "weekDownloads": 33, + "downloads": 320, + "weekDownloads": 17, "size": 1496141, "latestRelease": "4.0.11", "latestReleaseDate": "2024-02-05T16:36:31.211Z" @@ -52482,8 +52100,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.634, - "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" + "popularity": -0.705, + "topicSearchString": "qrcode easyqrcode qrcodejs reactnative rn-qrcode reactnative-qrcode javascript-qrcode qrcode-logo qrcode-generator easyqrcodejs javascript javascript-qrcode-generator qrcode-javascript" }, { "githubUrl": "https://github.com/safaiyeh/react-native-app-review", @@ -52517,7 +52135,6 @@ "isPrivate": false, "description": "React Native module to request users to leave an app review.", "topics": [ - "react-native", "ios", "android", "macos", @@ -52538,13 +52155,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-app-review", "npm": { - "downloads": 8, - "weekDownloads": 2, + "downloads": 11, + "weekDownloads": 0, "size": 59108, "latestRelease": "1.1.0", "latestReleaseDate": "2020-08-16T03:34:23.831Z" @@ -52554,8 +52172,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.1, - "topicSearchString": "react-native ios android macos app-review in-app-review play-store app-store playstore appstore" + "popularity": -1, + "topicSearchString": "ios android macos app-review in-app-review play-store app-store playstore appstore" }, { "githubUrl": "https://github.com/xanderdeseyn/react-native-responsive-linechart", @@ -52582,7 +52200,7 @@ "updatedAt": "2021-03-30T12:01:10Z", "createdAt": "2018-03-28T20:28:07Z", "pushedAt": "2021-03-30T12:01:10Z", - "forks": 49, + "forks": 51, "issues": 34, "subscribers": 3, "stars": 209, @@ -52594,7 +52212,6 @@ "registry": "https://registry.npmjs.org/", "description": "A customizable and responsive line or area chart for react-native", "topics": [ - "react-native", "chart", "flex", "responsive", @@ -52612,13 +52229,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-responsive-linechart", "npm": { - "downloads": 7165, - "weekDownloads": 1390, + "downloads": 7902, + "weekDownloads": 1730, "size": 72429, "latestRelease": "5.7.1", "latestReleaseDate": "2021-03-30T12:01:26.776Z" @@ -52629,8 +52247,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, - "topicSearchString": "react-native chart flex responsive linechart svg area-chart" + "popularity": -0.564, + "topicSearchString": "chart flex responsive linechart svg area-chart" }, { "githubUrl": "https://github.com/pmadruga/react-native-clean-project", @@ -52655,7 +52273,7 @@ "forks": 53, "issues": 15, "subscribers": 8, - "stars": 1256, + "stars": 1261, "dependencies": 0 }, "name": "react-native-clean-project", @@ -52663,10 +52281,7 @@ "isPrivate": false, "description": "Automating the clean up of a React Native project", "topics": [ - "react", - "native", "clean", - "react-native", "reactnative" ], "license": { @@ -52679,12 +52294,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-clean-project", "npm": { - "downloads": 303253, - "weekDownloads": 45826, + "downloads": 269758, + "weekDownloads": 58501, "size": 33122, "latestRelease": "4.0.3", "latestReleaseDate": "2023-12-05T19:19:52.543Z" @@ -52696,8 +52312,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.128, - "topicSearchString": "react native clean react-native reactnative" + "popularity": 0.184, + "topicSearchString": "clean reactnative" }, { "githubUrl": "https://github.com/kristerkari/react-native-sass-transformer", @@ -52720,7 +52336,7 @@ "pushedAt": "2024-11-30T18:36:36Z", "forks": 17, "issues": 18, - "subscribers": 2, + "subscribers": 1, "stars": 223, "dependencies": 2 }, @@ -52729,7 +52345,6 @@ "isPrivate": false, "description": "Use Sass to style your React Native apps.", "topics": [ - "react-native", "sass", "scss", "loader", @@ -52745,12 +52360,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sass-transformer", "npm": { - "downloads": 37029, - "weekDownloads": 6138, + "downloads": 44967, + "weekDownloads": 7591, "size": 16584, "latestRelease": "3.0.0", "latestReleaseDate": "2024-05-15T13:00:22.063Z" @@ -52761,8 +52377,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.141, - "topicSearchString": "react-native sass scss loader transform" + "popularity": 0.143, + "topicSearchString": "sass scss loader transform" }, { "githubUrl": "https://github.com/khalisafkari/react-native-bigimageviewer", @@ -52795,7 +52411,6 @@ "isPrivate": false, "description": "react native Big image viewer supporting pan and zoom", "topics": [ - "react-native", "ios", "android", "image", @@ -52812,13 +52427,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bigimageviewer", "npm": { - "downloads": 5, - "weekDownloads": 0, + "downloads": 11, + "weekDownloads": 1, "size": 1185687, "latestRelease": "0.1.0", "latestReleaseDate": "2020-08-19T10:44:20.606Z" @@ -52828,8 +52444,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native ios android image bigimageviewer imageview" + "popularity": -1.65, + "topicSearchString": "ios android image bigimageviewer imageview" }, { "githubUrl": "https://github.com/AndreiCalazans/rn-tooltip", @@ -52878,13 +52494,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-tooltip", "npm": { - "downloads": 70496, - "weekDownloads": 12934, + "downloads": 78556, + "weekDownloads": 17541, "size": 21185, "latestRelease": "3.0.3", "latestReleaseDate": "2022-09-05T12:06:44.532Z" @@ -52895,7 +52512,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.594, + "popularity": -0.56, "topicSearchString": "" }, { @@ -52930,7 +52547,7 @@ "forks": 82, "issues": 12, "subscribers": 8, - "stars": 821, + "stars": 833, "dependencies": 2 }, "name": "react-qr-code", @@ -52941,8 +52558,6 @@ "code", "generator", "qr", - "react", - "react-native", "qr-code", "component" ], @@ -52956,25 +52571,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-qr-code", "npm": { - "downloads": 3699332, - "weekDownloads": 603823, + "downloads": 3746921, + "weekDownloads": 850727, "size": 13763, "latestRelease": "2.0.18", "latestReleaseDate": "2025-07-06T20:47:33.365Z" }, - "score": 73, + "score": 68, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.139, - "topicSearchString": "code generator qr react react-native qr-code component" + "popularity": 0.193, + "topicSearchString": "code generator qr qr-code component" }, { "githubUrl": "https://github.com/BlackBoxVision/react-native-mercadopago-px", @@ -53000,7 +52615,7 @@ "pushedAt": "2022-09-08T13:13:59Z", "forks": 24, "issues": 16, - "subscribers": 5, + "subscribers": 4, "stars": 106, "dependencies": 0 }, @@ -53009,10 +52624,8 @@ "isPrivate": false, "description": "🚀 MercadoPago PX bridge for react-native", "topics": [ - "react-native", "ios", "android", - "react", "mercadopago", "sdk", "library", @@ -53029,12 +52642,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 338, - "weekDownloads": 16, + "downloads": 376, + "weekDownloads": 24, "size": 113071, "latestRelease": "0.8.0", "latestReleaseDate": "2022-09-08T13:14:14.303Z" @@ -53044,8 +52658,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.459, - "topicSearchString": "react-native ios android react mercadopago sdk library mercadopago-api bridge" + "popularity": -1.445, + "topicSearchString": "ios android mercadopago sdk library mercadopago-api bridge" }, { "githubUrl": "https://github.com/iRoachie/react-native-material-tabs", @@ -53080,8 +52694,6 @@ "isPrivate": false, "description": "Material Design implementation of Tabs", "topics": [ - "react", - "react-native", "material-design", "tabs", "material", @@ -53098,13 +52710,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-material-tabs", "npm": { - "downloads": 1661, - "weekDownloads": 255, + "downloads": 5839, + "weekDownloads": 285, "size": 51971, "latestRelease": "4.2.0", "latestReleaseDate": "2021-03-29T06:11:20.573Z" @@ -53115,8 +52728,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, - "topicSearchString": "react react-native material-design tabs material component typescript" + "popularity": -0.708, + "topicSearchString": "material-design tabs material component typescript" }, { "githubUrl": "https://github.com/storybookjs/react-native/tree/next/packages/react-native", @@ -53140,13 +52753,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T23:14:39Z", + "updatedAt": "2025-09-29T14:40:49Z", "createdAt": "2020-01-22T15:17:28Z", - "pushedAt": "2025-09-10T23:14:39Z", - "forks": 176, - "issues": 29, - "subscribers": 24, - "stars": 1206, + "pushedAt": "2025-09-29T14:40:49Z", + "forks": 173, + "issues": 30, + "subscribers": 23, + "stars": 1223, "dependencies": 13 }, "name": "@storybook/react-native", @@ -53154,8 +52767,6 @@ "isPrivate": false, "description": "A better way to develop React Native Components for your app", "topics": [ - "react", - "react-native", "storybook" ], "license": { @@ -53168,14 +52779,15 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1425631, - "weekDownloads": 276864, - "size": 141627, - "latestRelease": "9.1.2", - "latestReleaseDate": "2025-09-10T23:15:24.964Z" + "downloads": 1297866, + "weekDownloads": 310074, + "size": 142539, + "latestRelease": "9.1.4", + "latestReleaseDate": "2025-09-29T14:41:31.331Z" }, "score": 73, "matchingScoreModifiers": [ @@ -53184,8 +52796,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, - "topicSearchString": "react react-native storybook" + "popularity": 0.203, + "topicSearchString": "storybook" }, { "githubUrl": "https://github.com/WrathChaos/react-native-apple-card-views", @@ -53212,7 +52824,7 @@ "pushedAt": "2025-05-13T08:45:27Z", "forks": 23, "issues": 0, - "subscribers": 5, + "subscribers": 4, "stars": 407, "dependencies": 1 }, @@ -53229,7 +52841,6 @@ "view", "card-view", "apple-card-view", - "react-native", "icons", "javascript", "ui-lib", @@ -53245,12 +52856,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-apple-card-views", "npm": { - "downloads": 124, - "weekDownloads": 13, + "downloads": 280, + "weekDownloads": 26, "size": 994737, "latestRelease": "3.0.0", "latestReleaseDate": "2023-02-04T10:55:33.103Z" @@ -53260,8 +52872,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.66, - "topicSearchString": "bounceable bouncy apple apple-card card view card-view apple-card-view react-native icons javascript ui-lib rn" + "popularity": -0.67, + "topicSearchString": "bounceable bouncy apple apple-card card view card-view apple-card-view icons javascript ui-lib rn" }, { "githubUrl": "https://github.com/invertase/react-native-apple-authentication", @@ -53291,9 +52903,9 @@ "createdAt": "2019-12-01T21:56:36Z", "pushedAt": "2025-04-03T17:31:14Z", "forks": 222, - "issues": 20, - "subscribers": 14, - "stars": 1541, + "issues": 21, + "subscribers": 13, + "stars": 1548, "dependencies": 0 }, "name": "@invertase/react-native-apple-authentication", @@ -53301,8 +52913,6 @@ "isPrivate": false, "description": "A React Native library providing support for Apple Authentication on iOS and Android.", "topics": [ - "react", - "react-native", "apple", "ios", "button", @@ -53322,23 +52932,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 514462, - "weekDownloads": 82894, + "downloads": 482032, + "weekDownloads": 110094, "size": 125320, "latestRelease": "2.4.1", "latestReleaseDate": "2025-04-03T17:31:38.981Z" }, - "score": 68, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.137, - "topicSearchString": "react react-native apple ios button firebase aws authentication apple-auth apple-authentication" + "popularity": 0.194, + "topicSearchString": "apple ios button firebase aws authentication apple-auth apple-authentication" }, { "githubUrl": "https://github.com/edamameldn/tape-cli", @@ -53366,7 +52977,7 @@ "pushedAt": "2020-12-18T16:21:49Z", "forks": 3, "issues": 6, - "subscribers": 3, + "subscribers": 2, "stars": 87, "dependencies": 34 }, @@ -53401,13 +53012,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "tape-cli", "npm": { - "downloads": 47, - "weekDownloads": 16, + "downloads": 227, + "weekDownloads": 1, "size": 106713, "latestRelease": "0.14.0", "latestReleaseDate": "2020-12-18T16:22:31.941Z" @@ -53417,7 +53029,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.209, + "popularity": -1.496, "topicSearchString": "oclif simulator ios android screen-record record share-screen gif screenshot emulator recording recorder screen-capture screenrecord screen-recorder" }, { @@ -53459,7 +53071,6 @@ "description": "It is a simple logger for React-Native to log things more clearly using coloured logs", "topics": [ "simple-logger", - "react-native", "logger", "simple" ], @@ -53473,13 +53084,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-simple-logger", "npm": { - "downloads": 33, - "weekDownloads": 9, + "downloads": 83, + "weekDownloads": 12, "size": 13676, "latestRelease": "0.1.1", "latestReleaseDate": "2020-07-13T17:39:56.101Z" @@ -53489,8 +53101,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.493, - "topicSearchString": "simple-logger react-native logger simple" + "popularity": -1.624, + "topicSearchString": "simple-logger logger simple" }, { "githubUrl": "https://github.com/aryella-lacerda/react-native-easy-calendar", @@ -53528,7 +53140,6 @@ "isPrivate": false, "description": "A customizable, easy-to-use, performant calendar component for React Native.", "topics": [ - "react-native", "ios", "android", "calendar" @@ -53543,13 +53154,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-easy-calendar", "npm": { - "downloads": 661, - "weekDownloads": 46, + "downloads": 633, + "weekDownloads": 100, "size": 732039, "latestRelease": "0.3.0", "latestReleaseDate": "2021-02-26T14:20:47.500Z" @@ -53559,8 +53171,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.441, - "topicSearchString": "react-native ios android calendar" + "popularity": -1.365, + "topicSearchString": "ios android calendar" }, { "githubUrl": "https://github.com/NataliaLinnik/react-native-nested-list", @@ -53600,9 +53212,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Nested List", "topics": [ - "react-native", - "react", - "native", "nestedlist", "nestedview", "nested", @@ -53620,12 +53229,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 27, - "weekDownloads": 7, + "downloads": 208, + "weekDownloads": 1, "size": 19015, "latestRelease": "0.2.2", "latestReleaseDate": "2021-07-12T21:09:31.907Z" @@ -53635,8 +53245,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.517, - "topicSearchString": "react-native react native nestedlist nestedview nested android ios simple" + "popularity": -1.746, + "topicSearchString": "nestedlist nestedview nested android ios simple" }, { "githubUrl": "https://github.com/smarkets/react-native-paypal", @@ -53659,10 +53269,10 @@ "updatedAt": "2021-04-09T06:55:35Z", "createdAt": "2018-10-12T11:53:04Z", "pushedAt": "2021-04-09T06:55:35Z", - "forks": 53, + "forks": 52, "issues": 20, "subscribers": 12, - "stars": 117, + "stars": 118, "dependencies": 0 }, "name": "react-native-paypal", @@ -53670,7 +53280,6 @@ "isPrivate": false, "description": "React Native library that implements PayPal Checkout flow using purely native code", "topics": [ - "react-native", "paypal", "checkout", "paypal-checkout", @@ -53689,13 +53298,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-paypal", "npm": { - "downloads": 968, - "weekDownloads": 138, + "downloads": 1489, + "weekDownloads": 298, "size": 231473012, "latestRelease": "4.1.0", "latestReleaseDate": "2021-02-14T23:30:22.494Z" @@ -53706,8 +53316,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.378, - "topicSearchString": "react-native paypal checkout paypal-checkout braintree android ios payment" + "popularity": -0.58, + "topicSearchString": "paypal checkout paypal-checkout braintree android ios payment" }, { "githubUrl": "https://github.com/rainbow-me/react-native-animated-charts", @@ -53737,8 +53347,8 @@ "pushedAt": "2021-10-25T17:08:17Z", "forks": 102, "issues": 56, - "subscribers": 14, - "stars": 947, + "subscribers": 13, + "stars": 951, "dependencies": 4 }, "name": "@rainbow-me/animated-charts", @@ -53747,9 +53357,6 @@ "description": "Set of components and helpers for building complex and beautifully animated charts", "topics": [ "charts", - "react", - "native", - "react-native", "animations", "reanimated2", "reanimated" @@ -53764,12 +53371,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 463, - "weekDownloads": 87, + "downloads": 353, + "weekDownloads": 80, "size": 56016, "latestRelease": "1.0.0-alpha.6", "latestReleaseDate": "2021-09-20T14:29:51.799Z" @@ -53781,8 +53389,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.339, - "topicSearchString": "charts react native react-native animations reanimated2 reanimated" + "popularity": -1.307, + "topicSearchString": "charts animations reanimated2 reanimated" }, { "githubUrl": "https://github.com/gevgasparyan/rn-qr-generator", @@ -53802,10 +53410,10 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-02T17:45:22Z", + "updatedAt": "2025-10-13T19:54:05Z", "createdAt": "2019-12-20T12:08:40Z", - "pushedAt": "2025-07-02T17:45:22Z", - "forks": 21, + "pushedAt": "2025-10-13T19:54:05Z", + "forks": 22, "issues": 6, "subscribers": 5, "stars": 156, @@ -53816,7 +53424,6 @@ "isPrivate": false, "description": "A QR code image generator and detector for React Native.", "topics": [ - "react-native", "qr", "qr-code", "decode-qr", @@ -53845,23 +53452,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-qr-generator", "npm": { - "downloads": 96981, - "weekDownloads": 12301, - "size": 114517, - "latestRelease": "1.4.4", - "latestReleaseDate": "2025-07-02T17:45:43.497Z" + "downloads": 78854, + "weekDownloads": 17216, + "size": 121016, + "latestRelease": "1.4.5", + "latestReleaseDate": "2025-10-13T19:54:14.444Z" }, - "score": 51, + "score": 57, "matchingScoreModifiers": [ "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.108, - "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" + "popularity": 0.186, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/alpha0010/react-native-pdf-viewer", @@ -53882,13 +53491,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": 83, + "stars": 88, "dependencies": 0 }, "name": "react-native-pdf-light", @@ -53897,7 +53506,6 @@ "registry": "https://registry.npmjs.org/", "description": "Minimalist PDF viewer for React Native", "topics": [ - "react-native", "pdf", "ios", "android", @@ -53913,21 +53521,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 6760, - "weekDownloads": 1244, + "downloads": 5183, + "weekDownloads": 1326, "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.156, - "topicSearchString": "react-native pdf ios android pdf-viewer" + "popularity": 0.218, + "topicSearchString": "pdf ios android pdf-viewer" }, { "githubUrl": "https://github.com/hoangnm/react-native-week-view", @@ -53967,12 +53577,9 @@ "topics": [ "android", "ios", - "react-native", - "react", - "react-component", + "component", "weekview", "calendar", - "component", "calendar-view" ], "license": { @@ -53985,12 +53592,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-week-view", "npm": { - "downloads": 4352, - "weekDownloads": 1094, + "downloads": 4207, + "weekDownloads": 363, "size": 136059, "latestRelease": "0.30.0", "latestReleaseDate": "2023-08-27T09:13:18.186Z" @@ -54001,8 +53609,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.214, - "topicSearchString": "android ios react-native react react-component weekview calendar component calendar-view" + "popularity": 0.073, + "topicSearchString": "android ios component weekview calendar calendar-view" }, { "githubUrl": "https://github.com/ammarahm-ed/react-native-mmkv-storage", @@ -54019,13 +53627,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-25T19:31:27Z", + "updatedAt": "2025-09-24T17:53:56Z", "createdAt": "2020-03-10T15:23:29Z", - "pushedAt": "2025-08-25T19:31:27Z", - "forks": 114, - "issues": 45, - "subscribers": 15, - "stars": 1726, + "pushedAt": "2025-09-24T17:53:56Z", + "forks": 113, + "issues": 38, + "subscribers": 14, + "stars": 1738, "dependencies": 0 }, "name": "react-native-mmkv-storage", @@ -54033,10 +53641,7 @@ "isPrivate": false, "description": "An ultra fast (0.0002s read/write), small & encrypted mobile key-value storage framework for React Native written in C++ using JSI", "topics": [ - "react-native", "fast-storage", - "react", - "native", "asyncstorage", "async-storage", "mmkv-database", @@ -54066,25 +53671,26 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-mmkv-storage", "npm": { - "downloads": 100629, - "weekDownloads": 18661, + "downloads": 72553, + "weekDownloads": 17277, "size": 971324, "latestRelease": "12.0.0", "latestReleaseDate": "2025-08-25T19:31:15.761Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.158, - "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" + "popularity": 0.202, + "topicSearchString": "fast-storage 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" }, { "githubUrl": "https://github.com/WrathChaos/react-native-bouncy-checkbox", @@ -54108,9 +53714,9 @@ "updatedAt": "2025-08-18T12:26:47Z", "createdAt": "2019-10-12T18:40:48Z", "pushedAt": "2025-08-18T12:26:47Z", - "forks": 58, - "issues": 5, - "subscribers": 6, + "forks": 57, + "issues": 4, + "subscribers": 5, "stars": 869, "dependencies": 2 }, @@ -54129,8 +53735,6 @@ "rn-checkbox", "freakycoder", "kuray", - "react", - "react-native", "javascript", "ui-lib", "rn", @@ -54151,25 +53755,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-bouncy-checkbox", "npm": { - "downloads": 105509, - "weekDownloads": 17278, + "downloads": 102733, + "weekDownloads": 24044, "size": 318386, "latestRelease": "4.1.2", "latestReleaseDate": "2024-08-21T07:40:46.689Z" }, - "score": 73, + "score": 68, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.139, - "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" + "popularity": 0.199, + "topicSearchString": "toggle switch bouncy checkbox animated check customizable rn-checkbox freakycoder kuray javascript ui-lib rn reactjs ios android mobile mobile-app customizable-ui" }, { "githubUrl": "https://github.com/gorhom/react-native-bottom-sheet", @@ -54198,10 +53802,10 @@ "updatedAt": "2025-09-05T09:25:37Z", "createdAt": "2020-07-31T12:28:32Z", "pushedAt": "2025-09-05T09:25:37Z", - "forks": 836, - "issues": 60, - "subscribers": 30, - "stars": 8282, + "forks": 853, + "issues": 65, + "subscribers": 29, + "stars": 8414, "dependencies": 2 }, "name": "@gorhom/bottom-sheet", @@ -54209,7 +53813,6 @@ "isPrivate": false, "description": "A performant interactive bottom sheet with fully configurable options 🚀", "topics": [ - "react-native", "ios", "android", "web", @@ -54229,25 +53832,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3260784, - "weekDownloads": 573977, + "downloads": 3040668, + "weekDownloads": 706199, "size": 1306476, "latestRelease": "5.2.6", "latestReleaseDate": "2025-09-05T09:25:52.717Z" }, - "score": 97, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.15, - "topicSearchString": "react-native ios android web bottom-sheet bottomsheet reanimated sheet modal" + "popularity": 0.197, + "topicSearchString": "ios android web bottom-sheet bottomsheet reanimated sheet modal" }, { "githubUrl": "https://github.com/react-keycloak/react-native-keycloak", @@ -54273,7 +53875,7 @@ "pushedAt": "2022-09-30T17:31:46Z", "forks": 45, "issues": 24, - "subscribers": 4, + "subscribers": 3, "stars": 176, "dependencies": 3 }, @@ -54282,8 +53884,6 @@ "isPrivate": false, "description": "React Native components for Keycloak", "topics": [ - "react", - "react-native", "ios", "android", "keycloak", @@ -54300,12 +53900,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 4836, - "weekDownloads": 1079, + "downloads": 4014, + "weekDownloads": 903, "size": 86118, "latestRelease": "0.6.4", "latestReleaseDate": "2022-09-30T17:31:42.704Z" @@ -54316,8 +53917,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.56, - "topicSearchString": "react react-native ios android keycloak keycloak-js hacktoberfest" + "popularity": -0.559, + "topicSearchString": "ios android keycloak keycloak-js hacktoberfest" }, { "githubUrl": "https://github.com/facebook/flipper/tree/master/react-native/react-native-flipper", @@ -54343,10 +53944,10 @@ "updatedAt": "2024-11-21T15:08:55Z", "createdAt": "2018-04-12T16:47:36Z", "pushedAt": "2024-11-21T15:08:55Z", - "forks": 961, + "forks": 966, "issues": 419, - "subscribers": 163, - "stars": 13414, + "subscribers": 160, + "stars": 13430, "dependencies": 0 }, "name": "react-native-flipper", @@ -54354,7 +53955,6 @@ "isPrivate": false, "description": "Flipper bindings for React Native", "topics": [ - "react-native", "flipper" ], "license": { @@ -54367,12 +53967,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-flipper", "npm": { - "downloads": 323422, - "weekDownloads": 58707, + "downloads": 269985, + "weekDownloads": 63905, "size": 120282, "latestRelease": "0.273.0", "latestReleaseDate": "2024-11-21T15:15:45.801Z" @@ -54386,8 +53987,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, - "topicSearchString": "react-native flipper" + "popularity": -0.549, + "topicSearchString": "flipper" }, { "githubUrl": "https://github.com/testfairy/react-native-testfairy", @@ -54422,9 +54023,8 @@ "isPrivate": false, "description": "React Native component for TestFairy SDK", "topics": [ - "react-component", + "component", "testfairy", - "react-native", "ios", "android" ], @@ -54438,12 +54038,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-testfairy", "npm": { - "downloads": 13821, - "weekDownloads": 2837, + "downloads": 7707, + "weekDownloads": 2254, "size": 41009591, "latestRelease": "2.65.0", "latestReleaseDate": "2025-02-27T15:30:30.523Z" @@ -54453,8 +54054,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.174, - "topicSearchString": "react-component testfairy react-native ios android" + "popularity": 0.249, + "topicSearchString": "component testfairy ios android" }, { "githubUrl": "https://github.com/terrysahaidak/react-native-gallery-toolkit", @@ -54495,11 +54096,9 @@ "gallery", "android", "ios", - "react-native", "reanimated", "reanimated2", "imageviewer", - "react", "animations", "pinch-to-zoom" ], @@ -54513,13 +54112,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-gallery-toolkit", "npm": { - "downloads": 11, - "weekDownloads": 2, + "downloads": 37, + "weekDownloads": 6, "size": 422110, "latestRelease": "1.0.0-alpha.1.2", "latestReleaseDate": "2020-10-27T18:15:14.587Z" @@ -54530,8 +54130,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "gallery android ios react-native reanimated reanimated2 imageviewer react animations pinch-to-zoom" + "popularity": -1.35, + "topicSearchString": "gallery android ios reanimated reanimated2 imageviewer animations pinch-to-zoom" }, { "githubUrl": "https://github.com/junedomingo/react-native-rename", @@ -54555,10 +54155,10 @@ "updatedAt": "2025-07-08T15:55:51Z", "createdAt": "2016-09-20T12:46:31Z", "pushedAt": "2025-07-08T15:55:51Z", - "forks": 256, + "forks": 255, "issues": 13, - "subscribers": 15, - "stars": 2732, + "subscribers": 14, + "stars": 2741, "dependencies": 10 }, "name": "react-native-rename", @@ -54566,12 +54166,10 @@ "isPrivate": false, "description": "Rename react-native app with just one command", "topics": [ - "react-native", "ios", "android", "rename", "renamer", - "react", "space", "cli" ], @@ -54585,12 +54183,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-rename", "npm": { - "downloads": 35283, - "weekDownloads": 5909, + "downloads": 28745, + "weekDownloads": 6920, "size": 624119, "latestRelease": "3.2.17", "latestReleaseDate": "2025-07-08T15:56:50.615Z" @@ -54601,8 +54200,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "react-native ios android rename renamer react space cli" + "popularity": 0.205, + "topicSearchString": "ios android rename renamer space cli" }, { "githubUrl": "https://github.com/dcangulo/react-native-pkce-challenge", @@ -54631,8 +54230,8 @@ "pushedAt": "2025-09-01T12:53:03Z", "forks": 10, "issues": 1, - "subscribers": 2, - "stars": 32, + "subscribers": 3, + "stars": 35, "dependencies": 1 }, "name": "react-native-pkce-challenge", @@ -54640,14 +54239,12 @@ "isPrivate": false, "description": "Proof Key for Code Exchange (PKCE) challenge generator for React Native.", "topics": [ - "react-native", "web", "macos", "pkce", "oauth2", "jsi", "c++", - "react", "reactjs", "windows", "expo" @@ -54662,23 +54259,22 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-pkce-challenge", "npm": { - "downloads": 36939, - "weekDownloads": 6732, + "downloads": 29687, + "weekDownloads": 8490, "size": 83089, "latestRelease": "6.2.0", "latestReleaseDate": "2025-09-01T12:58:21.409Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": 0.155, - "topicSearchString": "react-native web macos pkce oauth2 jsi c++ react reactjs windows expo" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.243, + "topicSearchString": "web macos pkce oauth2 jsi c++ reactjs windows expo" }, { "githubUrl": "https://github.com/Forward-Software/react-native-toolbox", @@ -54697,13 +54293,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T15:34:17Z", + "updatedAt": "2025-10-15T18:19:45Z", "createdAt": "2018-09-23T15:28:22Z", - "pushedAt": "2025-09-11T15:34:17Z", + "pushedAt": "2025-10-15T18:19:45Z", "forks": 1, "issues": 0, "subscribers": 0, - "stars": 27, + "stars": 29, "dependencies": 4 }, "name": "@forward-software/react-native-toolbox", @@ -54711,7 +54307,6 @@ "isPrivate": false, "description": "A set of scripts to simplify React Native development", "topics": [ - "react-native", "scripts", "utils", "development", @@ -54729,22 +54324,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 236, - "weekDownloads": 56, - "size": 49116, - "latestRelease": "4.1.5", - "latestReleaseDate": "2025-06-24T23:35:37.014Z" + "downloads": 443, + "weekDownloads": 66, + "size": 49173, + "latestRelease": "4.1.7", + "latestReleaseDate": "2025-10-07T21:42:55.757Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.546, - "topicSearchString": "react-native scripts utils development utilities cli development-tools" + "popularity": -0.623, + "topicSearchString": "scripts utils development utilities cli development-tools" }, { "githubUrl": "https://github.com/Naturalclar/react-native-color-picker-ios", @@ -54773,8 +54369,8 @@ "pushedAt": "2025-08-01T00:05:41Z", "forks": 7, "issues": 4, - "subscribers": 3, - "stars": 117, + "subscribers": 2, + "stars": 116, "dependencies": 0 }, "name": "react-native-color-picker-ios", @@ -54782,7 +54378,6 @@ "isPrivate": false, "description": "iOS14 UIColorPicker Module for react-native", "topics": [ - "react-native", "ios", "android", "hacktoberfest", @@ -54799,12 +54394,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-color-picker-ios", "npm": { - "downloads": 324, - "weekDownloads": 52, + "downloads": 376, + "weekDownloads": 75, "size": 32413, "latestRelease": "0.1.3", "latestReleaseDate": "2024-04-17T12:28:22.027Z" @@ -54813,8 +54409,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.613, - "topicSearchString": "react-native ios android hacktoberfest color-picker typescript" + "popularity": -0.58, + "topicSearchString": "ios android hacktoberfest color-picker typescript" }, { "githubUrl": "https://github.com/chirag04/react-native-in-app-utils", @@ -54835,7 +54431,7 @@ "pushedAt": "2021-06-09T16:30:45Z", "forks": 156, "issues": 75, - "subscribers": 19, + "subscribers": 18, "stars": 893, "dependencies": 0 }, @@ -54844,9 +54440,7 @@ "isPrivate": false, "description": "A react-native wrapper for handling in-app payments", "topics": [ - "react", - "react-native", - "react-component", + "component", "ios", "in-app", "payments", @@ -54862,13 +54456,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-in-app-utils", "npm": { - "downloads": 4849, - "weekDownloads": 878, + "downloads": 6943, + "weekDownloads": 1297, "size": 37607, "latestRelease": "6.1.0", "latestReleaseDate": "2020-09-23T15:39:00.493Z" @@ -54881,8 +54476,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, - "topicSearchString": "react react-native react-component ios in-app payments purchases" + "popularity": -0.591, + "topicSearchString": "component ios in-app payments purchases" }, { "githubUrl": "https://github.com/mybigday/react-native-external-display/tree/master/packages/react-native-external-display", @@ -54906,8 +54501,8 @@ "createdAt": "2020-02-26T08:49:06Z", "pushedAt": "2024-09-01T01:23:45Z", "forks": 28, - "issues": 11, - "subscribers": 7, + "issues": 12, + "subscribers": 6, "stars": 232, "dependencies": 0 }, @@ -54916,11 +54511,10 @@ "isPrivate": false, "description": "React Native view renderer in External Display", "topics": [ - "react-native", "external-display", "uiscene", - "native-module", - "native-ui-component", + "module", + "ui-component", "ios", "android" ], @@ -54934,24 +54528,24 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-external-display", "npm": { - "downloads": 9903, - "weekDownloads": 2022, + "downloads": 6906, + "weekDownloads": 1472, "size": 90278, "latestRelease": "0.6.6", "latestReleaseDate": "2024-09-01T01:23:50.013Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.174, - "topicSearchString": "react-native external-display uiscene native-module native-ui-component ios android" + "popularity": 0.181, + "topicSearchString": "external-display uiscene module ui-component ios android" }, { "githubUrl": "https://github.com/birkir/react-native-carplay/tree/master/packages/react-native-carplay", @@ -54979,13 +54573,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2024-08-07T22:46:52Z", + "updatedAt": "2025-06-12T12:12:54Z", "createdAt": "2019-03-26T03:45:34Z", - "pushedAt": "2024-08-07T22:46:52Z", - "forks": 120, - "issues": 46, - "subscribers": 21, - "stars": 757, + "pushedAt": "2025-06-12T12:12:54Z", + "forks": 122, + "issues": 47, + "subscribers": 20, + "stars": 764, "dependencies": 0 }, "name": "react-native-carplay", @@ -54993,8 +54587,6 @@ "isPrivate": false, "description": "CarPlay for React Native", "topics": [ - "react", - "native", "carplay", "navigation", "car", @@ -55010,25 +54602,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-carplay", "npm": { - "downloads": 4077, - "weekDownloads": 633, + "downloads": 3587, + "weekDownloads": 763, "size": 4079938, "latestRelease": "2.4.1-beta.0", "latestReleaseDate": "2024-06-12T10:22:08.199Z" }, - "score": 57, + "score": 68, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.132, - "topicSearchString": "react native carplay navigation car auto" + "popularity": 0.181, + "topicSearchString": "carplay navigation car auto" }, { "githubUrl": "https://github.com/arnnis/react-native-toast-notifications", @@ -55056,10 +54648,10 @@ "updatedAt": "2023-08-23T15:08:42Z", "createdAt": "2020-09-08T15:51:18Z", "pushedAt": "2023-08-23T15:08:42Z", - "forks": 88, - "issues": 24, - "subscribers": 5, - "stars": 582, + "forks": 89, + "issues": 25, + "subscribers": 4, + "stars": 585, "dependencies": 0 }, "name": "react-native-toast-notifications", @@ -55068,8 +54660,6 @@ "description": "Toast component for React Native, supports Android, iOS and Web", "topics": [ "component", - "react-component", - "react-native", "ios", "android", "windows", @@ -55091,13 +54681,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-toast-notifications", "npm": { - "downloads": 143890, - "weekDownloads": 27034, + "downloads": 129055, + "weekDownloads": 29256, "size": 153307, "latestRelease": "3.4.0", "latestReleaseDate": "2023-08-23T14:59:59.550Z" @@ -55108,8 +54699,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, - "topicSearchString": "component react-component react-native ios android windows toast animated animation message typescript swipe web" + "popularity": -0.557, + "topicSearchString": "component ios android windows toast animated animation message typescript swipe web" }, { "githubUrl": "https://github.com/rootstrap/react-native-use-styles", @@ -55135,7 +54726,7 @@ "pushedAt": "2021-02-08T13:16:31Z", "forks": 16, "issues": 3, - "subscribers": 3, + "subscribers": 2, "stars": 65, "dependencies": 0 }, @@ -55144,8 +54735,6 @@ "isPrivate": false, "description": "A classy approach to manage your react native styles.", "topics": [ - "react", - "react-native", "styles", "namespace", "hooks", @@ -55163,13 +54752,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-use-styles", "npm": { - "downloads": 31, - "weekDownloads": 7, + "downloads": 80, + "weekDownloads": 1, "size": 49111, "latestRelease": "1.3.7", "latestReleaseDate": "2020-12-22T14:49:36.307Z" @@ -55179,8 +54769,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "react react-native styles namespace hooks classes css usestyles" + "popularity": -1.489, + "topicSearchString": "styles namespace hooks classes css usestyles" }, { "githubUrl": "https://github.com/jhen0409/react-native-debugger", @@ -55202,10 +54792,10 @@ "updatedAt": "2023-07-31T05:03:45Z", "createdAt": "2016-05-29T22:40:01Z", "pushedAt": "2023-07-31T05:03:45Z", - "forks": 812, - "issues": 174, - "subscribers": 79, - "stars": 10453, + "forks": 811, + "issues": 171, + "subscribers": 78, + "stars": 10457, "dependencies": 28 }, "name": "react-native-debugger", @@ -55213,9 +54803,8 @@ "isPrivate": false, "description": "The standalone app based on official debugger of React Native, and includes React Inspector / Redux DevTools", "topics": [ - "react-native", "debugger", - "react-devtools", + "devtools", "redux-devtools-extension", "electron" ], @@ -55229,13 +54818,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-debugger", "npm": { - "downloads": 4673, - "weekDownloads": 673, + "downloads": 4343, + "weekDownloads": 1052, "size": 21018, "latestRelease": "1.1.0", "latestReleaseDate": "2018-05-20T16:21:04.077Z" @@ -55249,8 +54839,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.628, - "topicSearchString": "react-native debugger react-devtools redux-devtools-extension electron" + "popularity": -0.544, + "topicSearchString": "debugger devtools redux-devtools-extension electron" }, { "githubUrl": "https://github.com/cjam/react-native-spotify-remote", @@ -55270,9 +54860,9 @@ "updatedAt": "2025-01-11T17:49:01Z", "createdAt": "2019-03-09T03:58:51Z", "pushedAt": "2025-01-11T17:49:01Z", - "forks": 98, + "forks": 99, "issues": 52, - "subscribers": 7, + "subscribers": 6, "stars": 271, "dependencies": 0 }, @@ -55281,7 +54871,6 @@ "isPrivate": false, "description": "React Native wrapper around the Spotify Remote SDK", "topics": [ - "react-native", "spotify", "music", "audio", @@ -55305,12 +54894,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-spotify-remote", "npm": { - "downloads": 914, - "weekDownloads": 191, + "downloads": 1081, + "weekDownloads": 183, "size": 17045075, "latestRelease": "0.3.10", "latestReleaseDate": "2021-07-15T14:04:06.538Z" @@ -55321,8 +54911,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.572, - "topicSearchString": "react-native spotify music audio remote mobile player objective-c cocoapods xcode typescript android ios" + "popularity": 0.144, + "topicSearchString": "spotify music audio remote mobile player objective-c cocoapods xcode typescript android ios" }, { "githubUrl": "https://github.com/rt2zz/redux-persist", @@ -55344,10 +54934,10 @@ "updatedAt": "2021-10-24T01:11:37Z", "createdAt": "2015-07-23T04:43:58Z", "pushedAt": "2021-10-24T01:11:37Z", - "forks": 831, - "issues": 518, - "subscribers": 84, - "stars": 13010, + "forks": 833, + "issues": 519, + "subscribers": 82, + "stars": 13008, "dependencies": 0 }, "name": "redux-persist", @@ -55370,13 +54960,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "redux-persist", "npm": { - "downloads": 5552828, - "weekDownloads": 927168, + "downloads": 5482635, + "weekDownloads": 1272786, "size": 417857, "latestRelease": "6.0.0", "latestReleaseDate": "2019-09-02T00:39:26.341Z" @@ -55390,7 +54981,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, + "popularity": -0.553, "topicSearchString": "persistor storage redux redux-middleware" }, { @@ -55431,13 +55022,12 @@ "registry": "https://registry.npmjs.org/", "description": "A react-native component for displaying a modal on iOS by natively wrapping a react-native view inside a UIViewController and presenting it.", "topics": [ - "react-native", "ios", "android", "modal", "ios-swift", - "native-module", - "native-ui-component", + "module", + "ui-component", "component" ], "license": { @@ -55450,23 +55040,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-ios-modal", "npm": { - "downloads": 6001, - "weekDownloads": 773, + "downloads": 5131, + "weekDownloads": 1031, "size": 286736, "latestRelease": "0.1.8", "latestReleaseDate": "2020-10-21T03:05:04.853Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.109, - "topicSearchString": "react-native ios android modal ios-swift native-module native-ui-component component" + "popularity": 0.171, + "topicSearchString": "ios android modal ios-swift module ui-component component" }, { "githubUrl": "https://github.com/nandorojo/dripsy/tree/master/packages/dripsy", @@ -55492,10 +55083,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": 14, - "stars": 2135, + "subscribers": 13, + "stars": 2148, "dependencies": 4 }, "name": "dripsy", @@ -55503,7 +55094,6 @@ "isPrivate": false, "description": "🍷 A super-simple responsive design system for React Native Web.", "topics": [ - "react-native", "ios", "android" ], @@ -55517,12 +55107,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "dripsy", "npm": { - "downloads": 21405, - "weekDownloads": 3885, + "downloads": 20133, + "weekDownloads": 4617, "size": 322952, "latestRelease": "4.3.8", "latestReleaseDate": "2024-10-22T21:22:00.278Z" @@ -55534,8 +55125,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.154, - "topicSearchString": "react-native ios android" + "popularity": 0.195, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/khalisafkari/react-native-sdkx", @@ -55573,7 +55164,6 @@ "isPrivate": false, "description": "GreedyGame is an end-to-end implementation, mediation and optimization platform for Ads, support Admob, FacebookAds, Mopub,", "topics": [ - "react-native", "ios", "android", "greedygame", @@ -55592,13 +55182,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sdkx", "npm": { - "downloads": 9, - "weekDownloads": 0, + "downloads": 39, + "weekDownloads": 1, "size": 3870738, "latestRelease": "0.1.8", "latestReleaseDate": "2020-11-02T02:38:39.880Z" @@ -55608,8 +55199,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native ios android greedygame admob monetization facebook mopub-ads" + "popularity": -1.728, + "topicSearchString": "ios android greedygame admob monetization facebook mopub-ads" }, { "githubUrl": "https://github.com/artxty/typed-async-storage", @@ -55641,8 +55232,6 @@ "isPrivate": false, "description": "Validate your AsyncStorage using PropTypes!", "topics": [ - "react", - "react-native", "asyncstorage", "storage", "asyncstorage-wrapper", @@ -55658,13 +55247,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "typed-async-storage", "npm": { - "downloads": 224, - "weekDownloads": 26, + "downloads": 409, + "weekDownloads": 177, "size": 32243, "latestRelease": "3.1.2", "latestReleaseDate": "2020-11-21T23:12:03.160Z" @@ -55674,8 +55264,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.65, - "topicSearchString": "react react-native asyncstorage storage asyncstorage-wrapper proptype-validators" + "popularity": -1.381, + "topicSearchString": "asyncstorage storage asyncstorage-wrapper proptype-validators" }, { "githubUrl": "https://github.com/hyochan/react-native-nitro-sound", @@ -55684,6 +55274,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/hyochan/react-native-nitro-sound", @@ -55695,13 +55286,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T17:53:37Z", + "updatedAt": "2025-09-25T11:48:34Z", "createdAt": "2018-04-11T08:37:46Z", - "pushedAt": "2025-09-12T17:53:37Z", - "forks": 228, - "issues": 141, - "subscribers": 7, - "stars": 837, + "pushedAt": "2025-09-25T11:48:34Z", + "forks": 232, + "issues": 147, + "subscribers": 6, + "stars": 868, "dependencies": 1 }, "name": "react-native-nitro-sound", @@ -55710,7 +55301,6 @@ "registry": "https://registry.npmjs.org/", "description": "react-native native module for audio recorder and player with nitromodule!", "topics": [ - "react-native", "ios", "android", "audio-player", @@ -55733,15 +55323,17 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-sound", "npm": { - "downloads": 1862, - "weekDownloads": 0, - "size": 488172, - "latestRelease": "0.2.5", - "latestReleaseDate": "2025-09-12T17:57:40.560Z" + "downloads": 20880, + "weekDownloads": 2458, + "size": 490020, + "latestRelease": "0.2.8", + "latestReleaseDate": "2025-09-25T14:47:23.094Z" }, "score": 62, "matchingScoreModifiers": [ @@ -55751,8 +55343,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native ios android audio-player audio-recorder typescript java objective-c swift kotlin turbomodule nitromodule" + "popularity": 0.1, + "topicSearchString": "ios android audio-player audio-recorder typescript java objective-c swift kotlin turbomodule nitromodule" }, { "githubUrl": "https://github.com/enesozturk/rn-swipeable-panel", @@ -55781,7 +55373,7 @@ "forks": 130, "issues": 37, "subscribers": 10, - "stars": 971, + "stars": 969, "dependencies": 1 }, "name": "rn-swipeable-panel", @@ -55789,8 +55381,6 @@ "isPrivate": false, "description": "Zero dependency swipeable bottom panel for React Native 📱", "topics": [ - "react", - "react-native", "component", "mobile", "ios", @@ -55817,13 +55407,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-swipeable-panel", "npm": { - "downloads": 2758, - "weekDownloads": 474, + "downloads": 2664, + "weekDownloads": 518, "size": 96633, "latestRelease": "1.2.7", "latestReleaseDate": "2021-12-31T07:00:06.914Z" @@ -55835,8 +55426,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, - "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" + "popularity": -0.585, + "topicSearchString": "component mobile ios android swipeable panel swipeable-panel swipe-up swipe-down bottom bottom-panel bottom-up bottom-up-panel bottom-sheet sheet" }, { "githubUrl": "https://github.com/arniu/react-native-ionicons", @@ -55867,7 +55458,6 @@ "isPrivate": false, "description": "Ionic icons for React Native", "topics": [ - "react-native", "ionicons", "ionic", "icons", @@ -55885,13 +55475,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ionicons", "npm": { - "downloads": 2797, - "weekDownloads": 646, + "downloads": 2882, + "weekDownloads": 554, "size": 141080, "latestRelease": "4.6.5", "latestReleaseDate": "2020-05-27T06:49:03.299Z" @@ -55901,8 +55492,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.554, - "topicSearchString": "react-native ionicons ionic icons icon vector-icons component" + "popularity": -0.587, + "topicSearchString": "ionicons ionic icons icon vector-icons component" }, { "githubUrl": "https://github.com/shahen94/react-native-video-processing", @@ -55922,10 +55513,10 @@ "updatedAt": "2024-04-15T12:44:03Z", "createdAt": "2016-11-13T14:10:21Z", "pushedAt": "2024-04-15T12:44:03Z", - "forks": 278, + "forks": 276, "issues": 133, - "subscribers": 26, - "stars": 1279, + "subscribers": 25, + "stars": 1282, "dependencies": 5 }, "name": "react-native-video-processing", @@ -55933,8 +55524,6 @@ "isPrivate": false, "description": "Native Video editing/trimming/compressing :movie_camera: library for React-Native", "topics": [ - "react", - "react-native", "ios", "android", "video", @@ -55956,12 +55545,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-video-processing", "npm": { - "downloads": 6596, - "weekDownloads": 1304, + "downloads": 5977, + "weekDownloads": 997, "size": 102821217, "latestRelease": "1.7.2", "latestReleaseDate": "2022-09-08T10:38:35.654Z" @@ -55974,8 +55564,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.168, - "topicSearchString": "react react-native ios android video processing edit videoedit javascript xcode ios-video-editor android-video-editor" + "popularity": 0.142, + "topicSearchString": "ios android video processing edit videoedit javascript xcode ios-video-editor android-video-editor" }, { "githubUrl": "https://github.com/react-native-menu/menu", @@ -56006,10 +55596,10 @@ "updatedAt": "2025-09-12T15:38:32Z", "createdAt": "2020-11-03T14:20:50Z", "pushedAt": "2025-09-12T15:38:32Z", - "forks": 71, - "issues": 44, - "subscribers": 7, - "stars": 1140, + "forks": 72, + "issues": 47, + "subscribers": 6, + "stars": 1158, "dependencies": 0 }, "name": "@react-native-menu/menu", @@ -56017,7 +55607,6 @@ "isPrivate": false, "description": "UIMenu Component for React Native", "topics": [ - "react-native", "ios", "android", "uimenu", @@ -56034,23 +55623,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 298765, - "weekDownloads": 50200, + "downloads": 295885, + "weekDownloads": 64037, "size": 124048, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-10T00:20:59.390Z" }, - "score": 76, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Recently updated" + "Known" ], - "popularity": 0.143, - "topicSearchString": "react-native ios android uimenu uiaction hacktoberfest" + "popularity": 0.184, + "topicSearchString": "ios android uimenu uiaction hacktoberfest" }, { "githubUrl": "https://github.com/dominicstop/react-native-ios-context-menu", @@ -56107,13 +55697,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T13:30:42Z", + "updatedAt": "2025-09-28T15:06:36Z", "createdAt": "2020-10-24T07:20:41Z", - "pushedAt": "2025-09-11T13:30:42Z", - "forks": 37, - "issues": 36, + "pushedAt": "2025-09-28T15:06:36Z", + "forks": 39, + "issues": 35, "subscribers": 4, - "stars": 652, + "stars": 658, "dependencies": 1 }, "name": "react-native-ios-context-menu", @@ -56122,12 +55712,11 @@ "registry": "https://registry.npmjs.org/", "description": "A react-native component to use context menu's (UIMenu) on iOS 13/14+", "topics": [ - "react-native", "ios", "ios-context-menu", "reactnativeioscontextmenu", "component", - "native-ui-component", + "ui-component", "contextmenu" ], "license": { @@ -56140,23 +55729,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-ios-context-menu", "npm": { - "downloads": 173648, - "weekDownloads": 29838, - "size": 679425, - "latestRelease": "3.1.3", - "latestReleaseDate": "2025-08-14T03:41:13.643Z" + "downloads": 162252, + "weekDownloads": 34290, + "size": 447974, + "latestRelease": "3.2.1", + "latestReleaseDate": "2025-09-28T15:08:00.238Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": 0.146, - "topicSearchString": "react-native ios ios-context-menu reactnativeioscontextmenu component native-ui-component contextmenu" + "popularity": 0.18, + "topicSearchString": "ios ios-context-menu reactnativeioscontextmenu component ui-component contextmenu" }, { "githubUrl": "https://github.com/srk-sharingan/sharingan-rn-modal-dropdown", @@ -56190,7 +55781,6 @@ "isPrivate": false, "description": "A simple and customizable react-native dropdown created using react-native-modal and react-native-paper.", "topics": [ - "react-native", "ios", "android", "dropdown", @@ -56207,13 +55797,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "sharingan-rn-modal-dropdown", "npm": { - "downloads": 540, - "weekDownloads": 97, + "downloads": 345, + "weekDownloads": 74, "size": 481869, "latestRelease": "1.4.0", "latestReleaseDate": "2021-08-14T17:20:04.641Z" @@ -56223,8 +55814,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.347, - "topicSearchString": "react-native ios android dropdown material-dropdown group-dropdown" + "popularity": -1.317, + "topicSearchString": "ios android dropdown material-dropdown group-dropdown" }, { "githubUrl": "https://github.com/khalisafkari/react-native-latlon", @@ -56257,7 +55848,6 @@ "isPrivate": false, "description": "react native latlon by ip internet", "topics": [ - "react-native", "ios", "android" ], @@ -56271,7 +55861,8 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-latlon", @@ -56288,7 +55879,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/StefanoMartella/react-native-simple-bottom-sheet", @@ -56317,7 +55908,7 @@ "forks": 9, "issues": 1, "subscribers": 2, - "stars": 138, + "stars": 137, "dependencies": 1 }, "name": "react-native-simple-bottom-sheet", @@ -56325,8 +55916,6 @@ "isPrivate": false, "description": "A simple react native bottom sheet component", "topics": [ - "react", - "react-native", "component", "slider", "panel", @@ -56350,12 +55939,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-simple-bottom-sheet", "npm": { - "downloads": 9285, - "weekDownloads": 1356, + "downloads": 10645, + "weekDownloads": 2456, "size": 543504, "latestRelease": "1.0.4", "latestReleaseDate": "2022-09-10T07:56:37.674Z" @@ -56365,8 +55955,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.124, - "topicSearchString": "react react-native component slider panel bottom-sheet sheet simple slider-panel bottom bottom-slider ios android mobile" + "popularity": 0.196, + "topicSearchString": "component slider panel bottom-sheet sheet simple slider-panel bottom bottom-slider ios android mobile" }, { "githubUrl": "https://github.com/fasky-software/react-native-widgetkit", @@ -56399,7 +55989,6 @@ "isPrivate": false, "description": "React-Native library for the WidgetKit framework. Integrate a Widget into your App 🍏📱", "topics": [ - "react-native", "ios", "android", "widgetkit", @@ -56415,25 +56004,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-widgetkit", "npm": { - "downloads": 35216, - "weekDownloads": 1827, + "downloads": 18211, + "weekDownloads": 4511, "size": 55181, "latestRelease": "1.0.9", "latestReleaseDate": "2020-11-02T17:26:01.081Z" }, - "score": 41, + "score": 32, "matchingScoreModifiers": [ - "Known", "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.706, - "topicSearchString": "react-native ios android widgetkit ios14" + "popularity": -0.539, + "topicSearchString": "ios android widgetkit ios14" }, { "githubUrl": "https://github.com/web-ridge/react-native-paper-dates", @@ -56462,10 +56051,10 @@ "updatedAt": "2025-09-05T18:50:26Z", "createdAt": "2020-08-07T14:49:02Z", "pushedAt": "2025-09-05T18:50:26Z", - "forks": 182, + "forks": 184, "issues": 4, - "subscribers": 4, - "stars": 739, + "subscribers": 3, + "stars": 745, "dependencies": 1 }, "name": "react-native-paper-dates", @@ -56474,7 +56063,6 @@ "registry": "https://registry.npmjs.org/", "description": "Smooth and fast cross platform Material Design date and time picker for React Native Paper", "topics": [ - "react-native", "ios", "android", "material", @@ -56483,7 +56071,6 @@ "material-design", "datepicker", "timepicker", - "react", "picker" ], "license": { @@ -56496,25 +56083,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-paper-dates", "npm": { - "downloads": 151479, - "weekDownloads": 25622, + "downloads": 142832, + "weekDownloads": 34273, "size": 990972, "latestRelease": "0.22.50", "latestReleaseDate": "2025-09-05T18:50:25.832Z" }, - "score": 73, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.144, - "topicSearchString": "react-native ios android material web paper material-design datepicker timepicker react picker" + "popularity": 0.204, + "topicSearchString": "ios android material web paper material-design datepicker timepicker picker" }, { "githubUrl": "https://github.com/retyui/react-native-stylex", @@ -56541,8 +56127,8 @@ "pushedAt": "2024-02-25T22:15:35Z", "forks": 3, "issues": 0, - "subscribers": 5, - "stars": 111, + "subscribers": 4, + "stars": 113, "dependencies": 0 }, "name": "react-native-stylex", @@ -56550,7 +56136,6 @@ "isPrivate": false, "description": "Better styling for react-native", "topics": [ - "react-native", "theme", "style", "media-queries" @@ -56565,12 +56150,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-stylex", "npm": { - "downloads": 420, - "weekDownloads": 105, + "downloads": 916, + "weekDownloads": 136, "size": 34054, "latestRelease": "4.2.1", "latestReleaseDate": "2023-01-07T21:11:32.621Z" @@ -56580,8 +56166,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.536, - "topicSearchString": "react-native theme style media-queries" + "popularity": -0.623, + "topicSearchString": "theme style media-queries" }, { "githubUrl": "https://github.com/facebook/fbt/tree/main/packages/react-native-fbt", @@ -56609,7 +56195,7 @@ "pushedAt": "2022-04-26T18:52:15Z", "forks": 181, "issues": 33, - "subscribers": 46, + "subscribers": 45, "stars": 3902, "dependencies": 0 }, @@ -56618,7 +56204,6 @@ "isPrivate": false, "description": "Native module to enable the usage of the FBT translation framework in React Native apps.", "topics": [ - "react-native", "android", "ios", "fbt" @@ -56633,26 +56218,26 @@ "hasTypes": false, "newArchitecture": true, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-fbt", "npm": { - "downloads": 10, + "downloads": 84, "weekDownloads": 0, "size": 49577, "latestRelease": "0.0.7", "latestReleaseDate": "2021-10-07T23:52:09.831Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], "popularity": -1, - "topicSearchString": "react-native android ios fbt" + "topicSearchString": "android ios fbt" }, { "githubUrl": "https://github.com/thebylito/react-native-navigation-bar-color", @@ -56679,7 +56264,7 @@ "forks": 51, "issues": 24, "subscribers": 3, - "stars": 284, + "stars": 283, "dependencies": 0 }, "name": "react-native-navigation-bar-color", @@ -56687,11 +56272,7 @@ "isPrivate": false, "description": "React Native component to change bottom bar/navigation bar color on Android", "topics": [ - "react-native", "component", - "react-component", - "react", - "native", "navigation-bar", "navigation-bar-color", "navigation-theme", @@ -56708,13 +56289,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-navigation-bar-color", "npm": { - "downloads": 82065, - "weekDownloads": 13346, + "downloads": 73342, + "weekDownloads": 20849, "size": 72034, "latestRelease": "2.0.2", "latestReleaseDate": "2022-12-28T23:06:30.475Z" @@ -56725,8 +56307,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, - "topicSearchString": "react-native component react-component react native navigation-bar navigation-bar-color navigation-theme bottom-bar bottom-bar-color" + "popularity": -0.508, + "topicSearchString": "component navigation-bar navigation-bar-color navigation-theme bottom-bar bottom-bar-color" }, { "githubUrl": "https://github.com/Kamalnrf/react-native-google-play-install-referrer", @@ -56759,7 +56341,6 @@ "isPrivate": false, "description": "Retrieve referral details on app install from play store", "topics": [ - "react-native", "ios", "android" ], @@ -56773,13 +56354,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-google-play-install-referrer", "npm": { - "downloads": 110, - "weekDownloads": 11, + "downloads": 57, + "weekDownloads": 16, "size": 1028247, "latestRelease": "1.0.0", "latestReleaseDate": "2020-11-25T14:54:22.750Z" @@ -56789,8 +56371,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.662, - "topicSearchString": "react-native ios android" + "popularity": -1.504, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/Kudo/react-native-v8", @@ -56798,6 +56380,7 @@ "android": true, "expoGo": true, "dev": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Kudo/react-native-v8", @@ -56812,10 +56395,10 @@ "updatedAt": "2024-08-20T18:28:15Z", "createdAt": "2019-06-12T15:24:16Z", "pushedAt": "2024-08-20T18:28:15Z", - "forks": 71, + "forks": 74, "issues": 40, "subscribers": 16, - "stars": 952, + "stars": 954, "dependencies": 1 }, "name": "react-native-v8", @@ -56823,7 +56406,6 @@ "isPrivate": false, "description": "Opt-in V8 runtime for React Native Android", "topics": [ - "react-native", "android", "v8" ], @@ -56837,12 +56419,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-v8", "npm": { - "downloads": 21386, - "weekDownloads": 4145, + "downloads": 21505, + "weekDownloads": 5774, "size": 184890, "latestRelease": "2.5.1", "latestReleaseDate": "2024-08-20T18:29:21.956Z" @@ -56854,8 +56438,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.165, - "topicSearchString": "react-native android v8" + "popularity": 0.228, + "topicSearchString": "android v8" }, { "githubUrl": "https://github.com/dstaley/react-native-bootstrap-icons", @@ -56882,7 +56466,7 @@ "pushedAt": "2021-05-19T23:38:58Z", "forks": 3, "issues": 2, - "subscribers": 3, + "subscribers": 2, "stars": 4, "dependencies": 0 }, @@ -56892,8 +56476,7 @@ "description": "Bootstrap's SVG icons converted to react-native-svg components", "topics": [ "bootstrap", - "icons", - "react-native" + "icons" ], "license": { "key": "mit", @@ -56905,13 +56488,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bootstrap-icons", "npm": { - "downloads": 632, - "weekDownloads": 105, + "downloads": 1404, + "weekDownloads": 167, "size": 1104992, "latestRelease": "1.5.0", "latestReleaseDate": "2021-05-19T23:38:00.768Z" @@ -56921,8 +56505,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.608, - "topicSearchString": "bootstrap icons react-native" + "popularity": -0.899, + "topicSearchString": "bootstrap icons" }, { "githubUrl": "https://github.com/dominicstop/react-native-ios-popover", @@ -56968,13 +56552,11 @@ "registry": "https://registry.npmjs.org/", "description": "A react-native component to use the native popover in iOS", "topics": [ - "react-native", "ios", "uipopover", "popover", "popover-view", - "component", - "native-component" + "component" ], "license": { "key": "mit", @@ -56986,13 +56568,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ios-popover", "npm": { - "downloads": 17, - "weekDownloads": 7, + "downloads": 113, + "weekDownloads": 8, "size": 178102, "latestRelease": "3.0.0", "latestReleaseDate": "2022-10-29T16:06:47.151Z" @@ -57002,8 +56585,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.15, - "topicSearchString": "react-native ios uipopover popover popover-view component native-component" + "popularity": -1.438, + "topicSearchString": "ios uipopover popover popover-view component" }, { "githubUrl": "https://github.com/Vydia/react-native-background-upload", @@ -57026,10 +56609,10 @@ "updatedAt": "2022-10-09T15:12:36Z", "createdAt": "2016-12-13T00:19:14Z", "pushedAt": "2022-10-09T15:12:36Z", - "forks": 288, + "forks": 290, "issues": 126, - "subscribers": 25, - "stars": 752, + "subscribers": 24, + "stars": 755, "dependencies": 0 }, "name": "react-native-background-upload", @@ -57041,8 +56624,6 @@ "uploadservice", "background", "upload", - "react-native", - "react", "android", "ios", "file-upload", @@ -57058,13 +56639,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-background-upload", "npm": { - "downloads": 15926, - "weekDownloads": 3403, + "downloads": 15221, + "weekDownloads": 3485, "size": 689594, "latestRelease": "6.6.0", "latestReleaseDate": "2022-10-07T16:23:47.912Z" @@ -57077,8 +56659,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.568, - "topicSearchString": "nsurlsession uploadservice background upload react-native react android ios file-upload hacktoberfest" + "popularity": -0.555, + "topicSearchString": "nsurlsession uploadservice background upload android ios file-upload hacktoberfest" }, { "githubUrl": "https://github.com/Sifir-io/react-native-tor", @@ -57101,10 +56683,10 @@ "updatedAt": "2022-02-09T21:16:06Z", "createdAt": "2020-11-17T14:43:01Z", "pushedAt": "2022-02-09T21:16:06Z", - "forks": 18, + "forks": 19, "issues": 19, "subscribers": 11, - "stars": 101, + "stars": 102, "dependencies": 2 }, "name": "react-native-tor", @@ -57112,7 +56694,6 @@ "isPrivate": false, "description": "Tor Daemon and Socks5 client for React Native iOS and Android projects! ", "topics": [ - "react-native", "tor", "socks5", "streams", @@ -57132,13 +56713,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tor", "npm": { - "downloads": 2885, - "weekDownloads": 526, + "downloads": 2411, + "weekDownloads": 471, "size": 118987805, "latestRelease": "0.1.8", "latestReleaseDate": "2022-02-09T21:17:40.504Z" @@ -57148,8 +56730,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, - "topicSearchString": "react-native tor socks5 streams proxy vpn privacy ios android" + "popularity": -0.584, + "topicSearchString": "tor socks5 streams proxy vpn privacy ios android" }, { "githubUrl": "https://github.com/jsartisan/react-native-magnus", @@ -57176,7 +56758,7 @@ "pushedAt": "2022-09-22T11:53:18Z", "forks": 82, "issues": 27, - "subscribers": 9, + "subscribers": 8, "stars": 1216, "dependencies": 3 }, @@ -57185,11 +56767,9 @@ "isPrivate": false, "description": "A Utility-First React Native UI Framework 🚀🧩", "topics": [ - "react-native", "ios", "android", "design-system", - "react", "typescript", "ui-components" ], @@ -57203,13 +56783,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-magnus", "npm": { - "downloads": 3526, - "weekDownloads": 286, + "downloads": 3020, + "weekDownloads": 603, "size": 1698217, "latestRelease": "1.0.63", "latestReleaseDate": "2022-09-22T11:53:39.251Z" @@ -57221,8 +56802,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.681, - "topicSearchString": "react-native ios android design-system react typescript ui-components" + "popularity": -0.58, + "topicSearchString": "ios android design-system typescript ui-components" }, { "githubUrl": "https://github.com/GetStream/flat-list-mvcp", @@ -57245,8 +56826,8 @@ "pushedAt": "2023-05-17T11:40:24Z", "forks": 31, "issues": 15, - "subscribers": 18, - "stars": 140, + "subscribers": 17, + "stars": 139, "dependencies": 0 }, "name": "@stream-io/flat-list-mvcp", @@ -57254,7 +56835,6 @@ "isPrivate": false, "description": "\"maintainVisibleContentPosition\" prop support for Android react-native", "topics": [ - "react-native", "ios", "android", "flatlist", @@ -57271,12 +56851,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 130908, - "weekDownloads": 21719, + "downloads": 76002, + "weekDownloads": 18300, "size": 174596, "latestRelease": "0.10.3", "latestReleaseDate": "2023-05-17T09:37:10.470Z" @@ -57287,8 +56868,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, - "topicSearchString": "react-native ios android flatlist wrapper scrollview" + "popularity": -0.545, + "topicSearchString": "ios android flatlist wrapper scrollview" }, { "githubUrl": "https://github.com/alpha0010/react-native-file-access", @@ -57314,7 +56895,7 @@ "forks": 26, "issues": 17, "subscribers": 6, - "stars": 331, + "stars": 333, "dependencies": 0 }, "name": "react-native-file-access", @@ -57323,7 +56904,6 @@ "registry": "https://registry.npmjs.org/", "description": "Filesystem access for React Native", "topics": [ - "react-native", "ios", "android", "macos", @@ -57342,24 +56922,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-file-access", "npm": { - "downloads": 79275, - "weekDownloads": 11854, + "downloads": 78362, + "weekDownloads": 18757, "size": 201749, "latestRelease": "3.2.0", "latestReleaseDate": "2025-08-22T20:02:49.167Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.127, - "topicSearchString": "react-native ios android macos download file filesystem fs" + "popularity": 0.203, + "topicSearchString": "ios android macos download file filesystem fs" }, { "githubUrl": "https://github.com/christopherdro/react-native-print", @@ -57383,10 +56962,10 @@ "updatedAt": "2023-08-04T20:42:19Z", "createdAt": "2015-09-04T19:29:07Z", "pushedAt": "2023-08-04T20:42:19Z", - "forks": 137, + "forks": 138, "issues": 3, "subscribers": 14, - "stars": 341, + "stars": 344, "dependencies": 0 }, "name": "react-native-print", @@ -57394,11 +56973,8 @@ "isPrivate": false, "description": "Print documents using React Native", "topics": [ - "react-native", "print", - "ndef", - "react", - "native" + "ndef" ], "license": { "key": "mit", @@ -57410,13 +56986,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-print", "npm": { - "downloads": 59688, - "weekDownloads": 10557, + "downloads": 59146, + "weekDownloads": 14476, "size": 145699, "latestRelease": "0.11.0", "latestReleaseDate": "2023-01-22T06:11:15.154Z" @@ -57427,8 +57004,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.6, - "topicSearchString": "react-native print ndef react native" + "popularity": -0.542, + "topicSearchString": "print ndef" }, { "githubUrl": "https://github.com/react-hook-form/react-hook-form", @@ -57451,13 +57028,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-07T08:34:12Z", + "updatedAt": "2025-10-10T23:03:54Z", "createdAt": "2019-03-05T23:47:10Z", - "pushedAt": "2025-09-07T08:34:12Z", - "forks": 2260, - "issues": 83, - "subscribers": 177, - "stars": 43821, + "pushedAt": "2025-10-10T23:03:54Z", + "forks": 2279, + "issues": 90, + "subscribers": 178, + "stars": 44028, "dependencies": 0 }, "name": "react-hook-form", @@ -57465,15 +57042,12 @@ "isPrivate": false, "description": "📋 React Hooks for form state management and validation (Web + React Native)", "topics": [ - "react", "hooks", "form", "forms", "form-validation", "validation", "typescript", - "react-hooks", - "react-native", "form-builder", "dx", "ux", @@ -57489,15 +57063,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-hook-form", "npm": { - "downloads": 67636822, - "weekDownloads": 12431690, - "size": 1157029, - "latestRelease": "7.62.0", - "latestReleaseDate": "2025-08-01T22:33:19.444Z" + "downloads": 58588434, + "weekDownloads": 12820752, + "size": 1180785, + "latestRelease": "7.65.0", + "latestReleaseDate": "2025-10-10T22:43:28.298Z" }, "score": 86, "matchingScoreModifiers": [ @@ -57508,8 +57083,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, - "topicSearchString": "react hooks form forms form-validation validation typescript react-hooks react-native form-builder dx ux reactjs" + "popularity": 0.186, + "topicSearchString": "hooks form forms form-validation validation typescript form-builder dx ux reactjs" }, { "githubUrl": "https://github.com/aspect-apps/react-native-navigation-drawer-extension", @@ -57538,8 +57113,8 @@ "pushedAt": "2022-11-04T18:01:17Z", "forks": 31, "issues": 3, - "subscribers": 8, - "stars": 211, + "subscribers": 7, + "stars": 210, "dependencies": 0 }, "name": "react-native-navigation-drawer-extension", @@ -57549,12 +57124,10 @@ "topics": [ "wix", "navigation", - "react-native", "drawer", "side-menu", "ios", "android", - "native", "typescript" ], "license": { @@ -57567,13 +57140,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-navigation-drawer-extension", "npm": { - "downloads": 2941, - "weekDownloads": 600, + "downloads": 3090, + "weekDownloads": 659, "size": 52119, "latestRelease": "4.3.1", "latestReleaseDate": "2022-11-02T13:19:33.526Z" @@ -57584,8 +57158,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.577, - "topicSearchString": "wix navigation react-native drawer side-menu ios android native typescript" + "popularity": -0.569, + "topicSearchString": "wix navigation drawer side-menu ios android typescript" }, { "githubUrl": "https://github.com/Trancever/reanimated-collapsible-helpers", @@ -57613,7 +57187,7 @@ "forks": 21, "issues": 1, "subscribers": 4, - "stars": 159, + "stars": 160, "dependencies": 0 }, "name": "reanimated-collapsible-helpers", @@ -57622,7 +57196,6 @@ "registry": "https://registry.npmjs.org/", "description": "A cross-platform smooth expand/collapse animation helpers for React Native", "topics": [ - "react-native", "ios", "android", "animation", @@ -57639,12 +57212,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "reanimated-collapsible-helpers", "npm": { - "downloads": 495, - "weekDownloads": 87, + "downloads": 401, + "weekDownloads": 83, "size": 29012, "latestRelease": "2.0.1", "latestReleaseDate": "2025-06-12T13:27:55.938Z" @@ -57653,8 +57227,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.6, - "topicSearchString": "react-native ios android animation collapsible reanimated" + "popularity": -0.573, + "topicSearchString": "ios android animation collapsible reanimated" }, { "githubUrl": "https://github.com/carloscuesta/react-native-error-boundary", @@ -57679,21 +57253,20 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-04T12:23:38Z", + "updatedAt": "2025-10-08T19:16:58Z", "createdAt": "2019-02-08T19:13:18Z", - "pushedAt": "2025-09-04T12:23:38Z", - "forks": 32, + "pushedAt": "2025-10-08T19:16:58Z", + "forks": 33, "issues": 1, - "subscribers": 4, - "stars": 584, - "dependencies": 0 + "subscribers": 3, + "stars": 592, + "dependencies": 1 }, "name": "react-native-error-boundary", "fullName": "carloscuesta/react-native-error-boundary", "isPrivate": false, "description": "A simple React-Native error boundary component 🐛", "topics": [ - "react-native", "error", "error-boundary", "error-handler", @@ -57709,15 +57282,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-error-boundary", "npm": { - "downloads": 215529, - "weekDownloads": 36655, - "size": 25374, - "latestRelease": "2.0.0", - "latestReleaseDate": "2025-03-02T11:15:10.350Z" + "downloads": 226733, + "weekDownloads": 48798, + "size": 25584, + "latestRelease": "3.0.0", + "latestReleaseDate": "2025-10-08T19:19:21.868Z" }, "score": 57, "matchingScoreModifiers": [ @@ -57725,8 +57299,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "react-native error error-boundary error-handler componentdidcatch" + "popularity": 0.183, + "topicSearchString": "error error-boundary error-handler componentdidcatch" }, { "githubUrl": "https://github.com/OsmiCSX/osmicsx", @@ -57753,7 +57327,7 @@ "forks": 27, "issues": 2, "subscribers": 6, - "stars": 271, + "stars": 270, "dependencies": 0 }, "name": "osmicsx", @@ -57762,7 +57336,6 @@ "description": "An utility style framework for React Native", "topics": [ "style", - "react-native", "framework", "javascript", "utility", @@ -57779,12 +57352,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "osmicsx", "npm": { - "downloads": 24, - "weekDownloads": 3, + "downloads": 584, + "weekDownloads": 7, "size": 141348, "latestRelease": "1.1.3", "latestReleaseDate": "2023-04-11T08:49:00.707Z" @@ -57795,8 +57369,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.63, - "topicSearchString": "style react-native framework javascript utility frontend hacktoberfest" + "popularity": -0.74, + "topicSearchString": "style framework javascript utility frontend hacktoberfest" }, { "githubUrl": "https://github.com/OsmiCSX/osmi", @@ -57833,8 +57407,6 @@ "description": "OsmiCSX ordinary boilerplate for React Native", "topics": [ "cli", - "react", - "react-native", "boilerplate", "generator", "hacktoberfest" @@ -57849,12 +57421,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 20, - "weekDownloads": 6, + "downloads": 88, + "weekDownloads": 8, "size": 2942358, "latestRelease": "1.3.1", "latestReleaseDate": "2021-07-30T04:39:30.190Z" @@ -57864,8 +57437,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.2, - "topicSearchString": "cli react react-native boilerplate generator hacktoberfest" + "popularity": -1.42, + "topicSearchString": "cli boilerplate generator hacktoberfest" }, { "githubUrl": "https://github.com/adobe/react-native-acpmedia", @@ -57893,7 +57466,7 @@ "pushedAt": "2023-08-07T22:15:28Z", "forks": 6, "issues": 0, - "subscribers": 17, + "subscribers": 16, "stars": 5, "dependencies": 0 }, @@ -57902,7 +57475,6 @@ "isPrivate": false, "description": "A wrapper around the iOS and Android AEP Media Analytics SDK to allow for integration with React Native applications", "topics": [ - "react-native", "adobe", "adobe-experience-platform", "media", @@ -57920,11 +57492,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 294, - "weekDownloads": 63, + "downloads": 276, + "weekDownloads": 53, "size": 466829, "latestRelease": "3.0.1", "latestReleaseDate": "2022-04-28T20:46:35.823Z" @@ -57934,8 +57507,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.567, - "topicSearchString": "react-native adobe adobe-experience-platform media ios android adobe-analytics" + "popularity": -1.584, + "topicSearchString": "adobe adobe-experience-platform media ios android adobe-analytics" }, { "githubUrl": "https://github.com/naoufal/react-native-payments", @@ -57964,8 +57537,8 @@ "pushedAt": "2024-03-22T11:02:43Z", "forks": 331, "issues": 146, - "subscribers": 27, - "stars": 1613, + "subscribers": 26, + "stars": 1615, "dependencies": 3 }, "name": "react-native-payments", @@ -57973,8 +57546,6 @@ "isPrivate": false, "description": "Accept Payments with Apple Pay and Android Pay using the Payment Request API.", "topics": [ - "react", - "react-native", "apple-pay", "stripe", "braintree", @@ -57999,12 +57570,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-payments", "npm": { - "downloads": 17995, - "weekDownloads": 5563, + "downloads": 10878, + "weekDownloads": 2728, "size": 170548, "latestRelease": "0.8.4", "latestReleaseDate": "2021-05-25T11:04:19.845Z" @@ -58017,8 +57589,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.513, - "topicSearchString": "react react-native apple-pay stripe braintree payments payment-request sca strong-customer-authentication 2-factor 2fa android ios payment-intents cross-platform" + "popularity": 0.213, + "topicSearchString": "apple-pay stripe braintree payments payment-request sca strong-customer-authentication 2-factor 2fa android ios payment-intents cross-platform" }, { "githubUrl": "https://github.com/doville/rn-fitness-tracker", @@ -58042,7 +57614,7 @@ "forks": 22, "issues": 1, "subscribers": 4, - "stars": 123, + "stars": 122, "dependencies": 0 }, "name": "@kilohealth/rn-fitness-tracker", @@ -58050,7 +57622,6 @@ "isPrivate": false, "description": "React Native module to interact with Google Fit and Apple HealthKit.", "topics": [ - "react-native", "health-kit", "google-fit", "fitness", @@ -58079,11 +57650,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 712, - "weekDownloads": 69, + "downloads": 2330, + "weekDownloads": 133, "size": 160150, "latestRelease": "3.1.0", "latestReleaseDate": "2023-02-24T08:29:55.896Z" @@ -58093,8 +57665,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.667, - "topicSearchString": "react-native health-kit google-fit fitness step track tracker health android ios healthkit apple-health fit googlefit fitnessapi steps activity body" + "popularity": 0.049, + "topicSearchString": "health-kit google-fit fitness step track tracker health android ios healthkit apple-health fit googlefit fitnessapi steps activity body" }, { "githubUrl": "https://github.com/YanYuanFE/react-native-signature-canvas", @@ -58118,10 +57690,10 @@ "updatedAt": "2025-06-28T05:42:47Z", "createdAt": "2018-08-13T07:44:46Z", "pushedAt": "2025-06-28T05:42:47Z", - "forks": 151, - "issues": 99, - "subscribers": 4, - "stars": 468, + "forks": 152, + "issues": 100, + "subscribers": 3, + "stars": 474, "dependencies": 0 }, "name": "react-native-signature-canvas", @@ -58129,8 +57701,7 @@ "isPrivate": false, "description": ":black_nib: React Native Signature Component based WebView Canvas for Android && IOS && expo", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "signature", @@ -58155,12 +57726,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-signature-canvas", "npm": { - "downloads": 292440, - "weekDownloads": 41559, + "downloads": 319783, + "weekDownloads": 75177, "size": 102612, "latestRelease": "5.0.1", "latestReleaseDate": "2025-06-28T05:36:03.351Z" @@ -58172,8 +57744,8 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.121, - "topicSearchString": "react-native react-component ios android signature signature-pad canvas expo typescript drawing webview performance error-handling undo-redo svg-export" + "popularity": 0.2, + "topicSearchString": "component ios android signature signature-pad canvas expo typescript drawing webview performance error-handling undo-redo svg-export" }, { "githubUrl": "https://github.com/kevinresol/react-native-default-preference", @@ -58196,7 +57768,7 @@ "forks": 71, "issues": 4, "subscribers": 5, - "stars": 262, + "stars": 263, "dependencies": 0 }, "name": "react-native-default-preference", @@ -58204,7 +57776,6 @@ "isPrivate": false, "description": "Use SharedPreference (Android) and UserDefaults (iOS) with React Native over a unified interface", "topics": [ - "react-native", "nsuserdefaults", "user-defaults", "sharedpreferences", @@ -58223,23 +57794,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-default-preference", "npm": { - "downloads": 221411, - "weekDownloads": 24915, + "downloads": 280097, + "weekDownloads": 74229, "size": 89097, "latestRelease": "1.4.4", "latestReleaseDate": "2022-04-07T14:14:17.310Z" }, - "score": 51, + "score": 41, "matchingScoreModifiers": [ "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.096, - "topicSearchString": "react-native nsuserdefaults user-defaults sharedpreferences shared-preferences ios android userdefaults" + "popularity": 0.225, + "topicSearchString": "nsuserdefaults user-defaults sharedpreferences shared-preferences ios android userdefaults" }, { "githubUrl": "https://github.com/flyskywhy/react-native-gcanvas", @@ -58262,8 +57835,8 @@ "pushedAt": "2024-12-11T05:45:26Z", "forks": 23, "issues": 11, - "subscribers": 6, - "stars": 240, + "subscribers": 5, + "stars": 241, "dependencies": 1 }, "name": "@flyskywhy/react-native-gcanvas", @@ -58286,7 +57859,6 @@ "gpu", "ios", "multiple-touches", - "native", "offscreen-canvas", "particles-bg", "pixel-animation-editor", @@ -58296,7 +57868,6 @@ "pixel-editor", "pixi", "proton", - "react-native", "shader", "opengl", "webgl", @@ -58312,11 +57883,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2258, - "weekDownloads": 104, + "downloads": 4912, + "weekDownloads": 628, "size": 59070549, "latestRelease": "6.0.20", "latestReleaseDate": "2024-12-11T05:47:49.886Z" @@ -58327,8 +57899,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.039, - "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" + "popularity": 0.109, + "topicSearchString": "2d 3d android babylon babylon.js babylonjs canvas dogz emoji font gcanvas glsl gpu ios multiple-touches offscreen-canvas particles-bg pixel-animation-editor pixel-art-animation-editor pixel-art-editor pixel-gif-editor pixel-editor pixi proton shader opengl webgl zdog" }, { "githubUrl": "https://github.com/microsoft/react-native-xaml/tree/main/package", @@ -58356,8 +57928,8 @@ "pushedAt": "2025-06-18T23:13:24Z", "forks": 27, "issues": 21, - "subscribers": 15, - "stars": 108, + "subscribers": 14, + "stars": 107, "dependencies": 1 }, "name": "react-native-xaml", @@ -58365,7 +57937,6 @@ "isPrivate": false, "description": "Allows using XAML directly, inside of a React Native Windows app", "topics": [ - "react-native", "windows", "xaml", "winui", @@ -58384,11 +57955,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 10922, - "weekDownloads": 1979, + "downloads": 34419, + "weekDownloads": 4743, "size": 2139134, "latestRelease": "0.0.80", "latestReleaseDate": "2025-06-18T23:23:09.319Z" @@ -58398,8 +57970,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.154, - "topicSearchString": "react-native windows xaml winui uwp fluent fluent-ui windows" + "popularity": 0.117, + "topicSearchString": "windows xaml winui uwp fluent fluent-ui windows" }, { "githubUrl": "https://github.com/edeckers/react-native-blob-courier", @@ -58424,7 +57996,7 @@ "pushedAt": "2024-04-12T11:57:05Z", "forks": 11, "issues": 14, - "subscribers": 3, + "subscribers": 2, "stars": 136, "dependencies": 0 }, @@ -58434,7 +58006,6 @@ "registry": "https://registry.npmjs.org/", "description": "Use this library to efficiently download and upload blobs in React Native.", "topics": [ - "react-native", "ios", "android", "blob", @@ -58455,12 +58026,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-blob-courier", "npm": { - "downloads": 92, - "weekDownloads": 9, + "downloads": 739, + "weekDownloads": 18, "size": 468860, "latestRelease": "5.0.2", "latestReleaseDate": "2024-04-12T11:57:20.726Z" @@ -58470,8 +58042,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.664, - "topicSearchString": "react-native ios android blob transfer files download upload courier upload-blobs" + "popularity": -0.729, + "topicSearchString": "ios android blob transfer files download upload courier upload-blobs" }, { "githubUrl": "https://github.com/oblador/react-native-pinchable", @@ -58497,10 +58069,10 @@ "updatedAt": "2022-03-17T17:38:05Z", "createdAt": "2019-01-06T14:44:11Z", "pushedAt": "2022-03-17T17:38:05Z", - "forks": 26, + "forks": 27, "issues": 17, - "subscribers": 1, - "stars": 233, + "subscribers": 0, + "stars": 234, "dependencies": 0 }, "name": "react-native-pinchable", @@ -58508,10 +58080,7 @@ "isPrivate": false, "description": "Instagram like pinch to zoom for React Native", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "ui", @@ -58531,13 +58100,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-pinchable", "npm": { - "downloads": 6099, - "weekDownloads": 1053, + "downloads": 6806, + "weekDownloads": 1387, "size": 30979, "latestRelease": "0.2.1", "latestReleaseDate": "2021-02-14T17:39:23.795Z" @@ -58548,8 +58118,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, - "topicSearchString": "react-native react-component component react mobile ios ui gesture zoom pinch image pinch-to-zoom" + "popularity": -0.577, + "topicSearchString": "component mobile ios ui gesture zoom pinch image pinch-to-zoom" }, { "githubUrl": "https://github.com/oblador/react-native-performance/tree/master/packages/react-native-performance", @@ -58576,10 +58146,10 @@ "updatedAt": "2025-06-15T22:34:18Z", "createdAt": "2019-11-30T17:19:06Z", "pushedAt": "2025-06-15T22:34:18Z", - "forks": 45, + "forks": 46, "issues": 9, - "subscribers": 9, - "stars": 1006, + "subscribers": 8, + "stars": 1009, "dependencies": 0 }, "name": "react-native-performance", @@ -58587,7 +58157,6 @@ "isPrivate": false, "description": "Measure React Native performance", "topics": [ - "react-native", "performance", "perf", "benchmark" @@ -58602,24 +58171,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-performance", "npm": { - "downloads": 571384, - "weekDownloads": 79460, + "downloads": 696326, + "weekDownloads": 175393, "size": 208008, "latestRelease": "5.1.4", "latestReleaseDate": "2025-06-15T22:34:24.712Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.118, - "topicSearchString": "react-native performance perf benchmark" + "popularity": 0.214, + "topicSearchString": "performance perf benchmark" }, { "githubUrl": "https://github.com/GetStream/react-native-bidirectional-infinite-scroll", @@ -58644,7 +58214,7 @@ "pushedAt": "2021-04-06T21:15:35Z", "forks": 24, "issues": 29, - "subscribers": 31, + "subscribers": 30, "stars": 259, "dependencies": 0 }, @@ -58654,7 +58224,6 @@ "registry": "https://registry.npmjs.org/", "description": "📜 React Native - Bidirectional Infinite Smooth Scroll", "topics": [ - "react-native", "ios", "android", "infinite-scroll", @@ -58670,13 +58239,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-bidirectional-infinite-scroll", "npm": { - "downloads": 8900, - "weekDownloads": 1941, + "downloads": 9965, + "weekDownloads": 2347, "size": 63160, "latestRelease": "0.3.3", "latestReleaseDate": "2021-04-04T11:51:40.530Z" @@ -58687,8 +58257,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.565, - "topicSearchString": "react-native ios android infinite-scroll flatlist" + "popularity": -0.55, + "topicSearchString": "ios android infinite-scroll flatlist" }, { "githubUrl": "https://github.com/mrousavy/react-native-mmkv/tree/main/packages/react-native-mmkv", @@ -58711,22 +58281,21 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T08:19:51Z", + "updatedAt": "2025-10-20T12:43:43Z", "createdAt": "2021-02-24T07:33:00Z", - "pushedAt": "2025-09-10T08:19:51Z", - "forks": 296, - "issues": 14, - "subscribers": 33, - "stars": 7550, + "pushedAt": "2025-10-20T12:43:43Z", + "forks": 306, + "issues": 17, + "subscribers": 32, + "stars": 7660, "dependencies": 0 }, "name": "react-native-mmkv", "fullName": "mrousavy/react-native-mmkv", "isPrivate": false, "registry": "https://registry.npmjs.org/", - "description": "react-native-mmkv", + "description": "⚡️ The fastest key/value storage for React Native.", "topics": [ - "react-native", "nitro" ], "license": { @@ -58739,26 +58308,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-mmkv", "npm": { - "downloads": 1877047, - "weekDownloads": 286723, - "size": 804546, - "latestRelease": "3.3.1", - "latestReleaseDate": "2025-09-04T12:35:48.137Z" + "downloads": 2037310, + "weekDownloads": 492580, + "size": 146595, + "latestRelease": "4.0.0", + "latestReleaseDate": "2025-10-20T12:43:35.712Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.13, - "topicSearchString": "react-native nitro" + "popularity": 0.206, + "topicSearchString": "nitro" }, { "githubUrl": "https://github.com/mrousavy/react-native-vision-camera/tree/main/package", @@ -58775,6 +58345,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", @@ -58786,13 +58357,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-08T11:06:33Z", + "updatedAt": "2025-09-22T09:56:59Z", "createdAt": "2021-02-19T14:59:44Z", - "pushedAt": "2025-09-08T11:06:33Z", - "forks": 1216, - "issues": 230, + "pushedAt": "2025-09-22T09:56:59Z", + "forks": 1235, + "issues": 241, "subscribers": 57, - "stars": 8805, + "stars": 8910, "dependencies": 0 }, "name": "react-native-vision-camera", @@ -58801,10 +58372,7 @@ "registry": "https://registry.npmjs.org/", "description": "A powerful, high-performance React Native Camera library.", "topics": [ - "react", - "native", "camera", - "react-native", "camera", "vision", "javascript", @@ -58836,26 +58404,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 1170841, - "weekDownloads": 178292, + "downloads": 1256865, + "weekDownloads": 309733, "size": 1157619, "latestRelease": "4.7.2", "latestReleaseDate": "2025-09-02T20:41:12.748Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.129, - "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" + "popularity": 0.209, + "topicSearchString": "camera camera vision javascript typescript android ios library instagram snapchat ai scanner qrcode barcode qr-code jsi worklet module frame processing realtime" }, { "githubUrl": "https://github.com/dabakovich/react-native-controlled-mentions", @@ -58885,7 +58453,7 @@ "forks": 91, "issues": 8, "subscribers": 6, - "stars": 266, + "stars": 275, "dependencies": 1 }, "name": "react-native-controlled-mentions", @@ -58893,8 +58461,6 @@ "isPrivate": false, "description": "Fully controlled React Native mentions component", "topics": [ - "react", - "react-native", "mentions", "text", "text-input", @@ -58910,12 +58476,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-controlled-mentions", "npm": { - "downloads": 80783, - "weekDownloads": 15394, + "downloads": 74892, + "weekDownloads": 17546, "size": 83452, "latestRelease": "3.1.0", "latestReleaseDate": "2025-06-02T12:07:17.708Z" @@ -58925,8 +58492,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.162, - "topicSearchString": "react react-native mentions text text-input textinput" + "popularity": 0.199, + "topicSearchString": "mentions text text-input textinput" }, { "githubUrl": "https://github.com/Rapsssito/react-native-tcp-socket", @@ -58951,9 +58518,9 @@ "createdAt": "2019-10-05T10:22:34Z", "pushedAt": "2025-04-23T21:47:53Z", "forks": 95, - "issues": 24, + "issues": 25, "subscribers": 5, - "stars": 352, + "stars": 357, "dependencies": 2 }, "name": "react-native-tcp-socket", @@ -58961,7 +58528,6 @@ "isPrivate": false, "description": "React Native TCP socket API for Android, iOS & macOS with SSL/TLS support.", "topics": [ - "react-native", "ios", "android", "tcp-socket", @@ -58984,23 +58550,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-tcp-socket", "npm": { - "downloads": 106829, - "weekDownloads": 17411, + "downloads": 256926, + "weekDownloads": 31697, "size": 233583, "latestRelease": "6.3.0", "latestReleaseDate": "2025-04-23T21:48:01.365Z" }, - "score": 51, + "score": 41, "matchingScoreModifiers": [ "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.139, - "topicSearchString": "react-native ios android tcp-socket tls ssl tcp-server tcp-client tcp library net network" + "popularity": 0.105, + "topicSearchString": "ios android tcp-socket tls ssl tcp-server tcp-client tcp library net network" }, { "githubUrl": "https://github.com/deanhet/react-native-text-ticker", @@ -59031,7 +58599,7 @@ "forks": 79, "issues": 13, "subscribers": 5, - "stars": 463, + "stars": 464, "dependencies": 0 }, "name": "react-native-text-ticker", @@ -59039,7 +58607,6 @@ "isPrivate": false, "description": "React Native Text Ticker/Marquee Component", "topics": [ - "react-native", "marquee", "android", "ios", @@ -59059,12 +58626,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-text-ticker", "npm": { - "downloads": 43589, - "weekDownloads": 7416, + "downloads": 43690, + "weekDownloads": 10558, "size": 19552, "latestRelease": "1.15.0", "latestReleaseDate": "2025-08-10T17:12:43.746Z" @@ -59074,8 +58642,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "react-native marquee android ios text scroller ticker scrolling scroll" + "popularity": 0.205, + "topicSearchString": "marquee android ios text scroller ticker scrolling scroll" }, { "githubUrl": "https://github.com/gabimoncha/react-native-template", @@ -59100,7 +58668,7 @@ "forks": 22, "issues": 3, "subscribers": 5, - "stars": 138, + "stars": 137, "dependencies": 0 }, "name": "@gabimoncha/react-native-template", @@ -59108,7 +58676,6 @@ "isPrivate": false, "description": "An opinionated template to bootstrap your next React Native app with all the time-wasting packages you need to have.", "topics": [ - "react-native", "typescript", "jest", "template", @@ -59133,10 +58700,9 @@ "fast-image", "sentry", "authentication-flow", - "react-navigation", "push-notifications", "zustand", - "react-query", + "query", "styled-components", "styled-system", "codepush" @@ -59151,7 +58717,8 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": {}, @@ -59161,7 +58728,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native typescript jest template boilerplate starter absolute imports navigation svg webview async storage styled components bundle visualiser husky git hooks startup time fast-image sentry authentication-flow react-navigation push-notifications zustand react-query styled-components styled-system codepush" + "topicSearchString": "typescript jest template boilerplate starter absolute imports navigation svg webview async storage styled components bundle visualiser husky git hooks startup time fast-image sentry authentication-flow push-notifications zustand query styled-components styled-system codepush" }, { "githubUrl": "https://github.com/smallcasetech/react-native-simple-biometrics", @@ -59189,8 +58756,8 @@ "pushedAt": "2025-08-25T15:41:54Z", "forks": 19, "issues": 3, - "subscribers": 9, - "stars": 216, + "subscribers": 8, + "stars": 219, "dependencies": 0 }, "name": "react-native-simple-biometrics", @@ -59199,7 +58766,6 @@ "registry": "https://registry.npmjs.org/", "description": "simple interface to verify user authenticity", "topics": [ - "react-native", "ios", "android", "biometrics", @@ -59217,24 +58783,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-simple-biometrics", "npm": { - "downloads": 5605, - "weekDownloads": 975, + "downloads": 5153, + "weekDownloads": 1303, "size": 41628, "latestRelease": "2.0.0", "latestReleaseDate": "2025-08-25T15:46:01.318Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.148, - "topicSearchString": "react-native ios android biometrics fingerprint authentication faceid" + "popularity": 0.215, + "topicSearchString": "ios android biometrics fingerprint authentication faceid" }, { "githubUrl": "https://github.com/heineiuo/react-native-animated-linear-gradient", @@ -59271,9 +58837,7 @@ "isPrivate": false, "description": "Animated linear gradient as background animation or something else.", "topics": [ - "react-native", "linear-gradient", - "react", "background-animation", "ios", "android", @@ -59290,13 +58854,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-animated-linear-gradient", "npm": { - "downloads": 4927, - "weekDownloads": 770, + "downloads": 1846, + "weekDownloads": 452, "size": 7567808, "latestRelease": "1.3.0", "latestReleaseDate": "2022-02-28T03:31:31.593Z" @@ -59307,8 +58872,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, - "topicSearchString": "react-native linear-gradient react background-animation ios android component animation" + "popularity": -0.542, + "topicSearchString": "linear-gradient background-animation ios android component animation" }, { "githubUrl": "https://github.com/enesozturk/react-native-hold-menu", @@ -59337,7 +58902,7 @@ "forks": 98, "issues": 23, "subscribers": 13, - "stars": 1497, + "stars": 1500, "dependencies": 5 }, "name": "react-native-hold-menu", @@ -59345,7 +58910,6 @@ "isPrivate": false, "description": "📱 A performant, easy to use hold to open context menu for React Native powered by Reanimated 🚀", "topics": [ - "react-native", "ios", "android", "hold-menu", @@ -59364,13 +58928,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-hold-menu", "npm": { - "downloads": 653, - "weekDownloads": 80, + "downloads": 817, + "weekDownloads": 103, "size": 329219, "latestRelease": "0.1.6", "latestReleaseDate": "2023-04-06T20:02:35.552Z" @@ -59382,8 +58947,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.395, - "topicSearchString": "react-native ios android hold-menu context-menu hold-to-open reanimated menu" + "popularity": -1.393, + "topicSearchString": "ios android hold-menu context-menu hold-to-open reanimated menu" }, { "githubUrl": "https://github.com/mateosilguero/consistencss", @@ -59420,7 +58985,6 @@ "isPrivate": false, "description": "An \"atomic css\" style toolkit for React Native", "topics": [ - "react-native", "atomic-css", "css", "styles", @@ -59436,13 +59000,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "consistencss", "npm": { - "downloads": 967, - "weekDownloads": 70, + "downloads": 1399, + "weekDownloads": 261, "size": 137773, "latestRelease": "1.7.0", "latestReleaseDate": "2021-05-01T16:53:20.900Z" @@ -59452,8 +59017,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.438, - "topicSearchString": "react-native atomic-css css styles typescript" + "popularity": -0.591, + "topicSearchString": "atomic-css css styles typescript" }, { "githubUrl": "https://github.com/DieTime/react-native-date-picker", @@ -59492,14 +59057,11 @@ "isPrivate": false, "description": "React Native customizable date picker component for iOS and Android. Designed using ScrollView.", "topics": [ - "react", - "native", "datepicker", "date", "picker", "expo", - "select", - "react-native" + "select" ], "license": { "key": "mit", @@ -59511,12 +59073,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 586, - "weekDownloads": 106, + "downloads": 675, + "weekDownloads": 180, "size": 70499, "latestRelease": "1.2.1", "latestReleaseDate": "2023-08-26T22:20:57.793Z" @@ -59526,8 +59089,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.345, - "topicSearchString": "react native datepicker date picker expo select react-native" + "popularity": -1.272, + "topicSearchString": "datepicker date picker expo select" }, { "githubUrl": "https://github.com/Flair-Dev/react-native-awesome-gallery", @@ -59556,10 +59119,10 @@ "updatedAt": "2024-09-28T11:54:36Z", "createdAt": "2021-03-04T12:14:53Z", "pushedAt": "2024-09-28T11:54:36Z", - "forks": 59, - "issues": 19, + "forks": 62, + "issues": 20, "subscribers": 5, - "stars": 586, + "stars": 587, "dependencies": 0 }, "name": "react-native-awesome-gallery", @@ -59568,13 +59131,11 @@ "registry": "https://registry.npmjs.org/", "description": "Performant, native-like, and well-customizable gallery for React Native.", "topics": [ - "react-native", "ios", "android", "reanimated2", "image-viewer", "pinch-to-zoom", - "react", "image-gallery", "lightbox", "expo" @@ -59589,12 +59150,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-awesome-gallery", "npm": { - "downloads": 166605, - "weekDownloads": 31983, + "downloads": 128491, + "weekDownloads": 30079, "size": 271501, "latestRelease": "0.4.3", "latestReleaseDate": "2024-09-28T11:54:49.390Z" @@ -59605,8 +59167,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, - "topicSearchString": "react-native ios android reanimated2 image-viewer pinch-to-zoom react image-gallery lightbox expo" + "popularity": 0.199, + "topicSearchString": "ios android reanimated2 image-viewer pinch-to-zoom image-gallery lightbox expo" }, { "githubUrl": "https://github.com/zyslife/react-native-head-tab-view", @@ -59631,7 +59193,7 @@ "updatedAt": "2021-07-18T17:13:33Z", "createdAt": "2020-02-09T11:24:50Z", "pushedAt": "2021-07-18T17:13:33Z", - "forks": 79, + "forks": 80, "issues": 26, "subscribers": 5, "stars": 443 @@ -59642,13 +59204,14 @@ "license": null, "hasTypes": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-head-tab-view", "npm": { - "downloads": 9210, - "weekDownloads": 1776, + "downloads": 4943, + "weekDownloads": 1402, "size": 78240, "latestRelease": "4.0.0-rc.13", "latestReleaseDate": "2021-07-18T16:58:42.353Z" @@ -59660,7 +59223,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.586, + "popularity": -0.509, "topicSearchString": "" }, { @@ -59687,7 +59250,7 @@ "forks": 130, "issues": 44, "subscribers": 8, - "stars": 900, + "stars": 907, "dependencies": 1 }, "name": "react-native-background-actions", @@ -59695,7 +59258,6 @@ "isPrivate": false, "description": "React Native background service library for running background tasks forever in Android & iOS.", "topics": [ - "react-native", "background", "service", "task", @@ -59714,24 +59276,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-background-actions", "npm": { - "downloads": 43098, - "weekDownloads": 7511, + "downloads": 42957, + "weekDownloads": 9593, "size": 63191, "latestRelease": "4.0.1", "latestReleaseDate": "2024-07-09T09:44:41.067Z" }, - "score": 68, + "score": 57, "matchingScoreModifiers": [ "Popular", "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.148, - "topicSearchString": "react-native background service task android ios library background-task" + "popularity": 0.19, + "topicSearchString": "background service task android ios library background-task" }, { "githubUrl": "https://github.com/dev-yakuza/react-native-image-modal", @@ -59760,10 +59324,10 @@ "updatedAt": "2025-01-25T08:12:43Z", "createdAt": "2020-01-17T08:33:07Z", "pushedAt": "2025-01-25T08:12:43Z", - "forks": 45, + "forks": 44, "issues": 2, "subscribers": 5, - "stars": 654, + "stars": 662, "dependencies": 0 }, "name": "react-native-image-modal", @@ -59771,10 +59335,7 @@ "isPrivate": false, "description": "the simple image modal for React Native", "topics": [ - "react-native", - "react-component", "component", - "react", "ios", "android", "ui", @@ -59793,12 +59354,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-image-modal", "npm": { - "downloads": 11913, - "weekDownloads": 2280, + "downloads": 16129, + "weekDownloads": 3119, "size": 151369, "latestRelease": "3.0.13", "latestReleaseDate": "2024-11-23T13:02:03.185Z" @@ -59809,8 +59371,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, - "topicSearchString": "react-native react-component component react ios android ui image-box image gallery image-modal" + "popularity": 0.164, + "topicSearchString": "component ios android ui image-box image gallery image-modal" }, { "githubUrl": "https://github.com/rawewhat/stora", @@ -59847,7 +59409,6 @@ "description": "StoRa is a global state management library with no dependency and written purely on React hooks.", "topics": [ "stora", - "react", "redux", "state", "hooks" @@ -59862,11 +59423,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 9, + "downloads": 197, "weekDownloads": 0, "size": 27477, "latestRelease": "0.2.4", @@ -59878,7 +59440,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "stora react redux state hooks" + "topicSearchString": "stora redux state hooks" }, { "githubUrl": "https://github.com/shijingsh/react-native-customized-image-picker", @@ -59913,9 +59475,6 @@ "isPrivate": false, "description": "iOS/Android image picker with support for camera, video compression, multiple images and cropping", "topics": [ - "react", - "native", - "react-native", "image", "picker", "crop", @@ -59933,13 +59492,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-customized-image-picker", "npm": { - "downloads": 1826, - "weekDownloads": 316, + "downloads": 1530, + "weekDownloads": 242, "size": 1082592, "latestRelease": "1.3.4", "latestReleaseDate": "2022-03-12T04:08:12.296Z" @@ -59950,8 +59510,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, - "topicSearchString": "react native react-native image picker crop cropping multiple camera" + "popularity": -0.616, + "topicSearchString": "image picker crop cropping multiple camera" }, { "githubUrl": "https://github.com/aryella-lacerda/react-native-accessibility-engine", @@ -59978,7 +59538,7 @@ "forks": 16, "issues": 8, "subscribers": 6, - "stars": 172, + "stars": 173, "dependencies": 1 }, "name": "react-native-accessibility-engine", @@ -59986,7 +59546,6 @@ "isPrivate": false, "description": "Make accessibility-related assertions on React Native code using React Test Renderer", "topics": [ - "react-native", "jest", "testing", "testing-library", @@ -60005,13 +59564,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-accessibility-engine", "npm": { - "downloads": 33969, - "weekDownloads": 5234, + "downloads": 39125, + "weekDownloads": 8211, "size": 477893, "latestRelease": "3.2.0", "latestReleaseDate": "2022-11-15T20:26:24.025Z" @@ -60022,14 +59582,15 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, - "topicSearchString": "react-native jest testing testing-library a11y accessibility ios android" + "popularity": -0.572, + "topicSearchString": "jest testing testing-library a11y accessibility ios android" }, { "githubUrl": "https://github.com/thebergamo/react-native-fbsdk-next", "android": true, "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/thebergamo/react-native-fbsdk-next", @@ -60044,10 +59605,10 @@ "updatedAt": "2025-01-26T12:09:44Z", "createdAt": "2021-03-09T14:38:42Z", "pushedAt": "2025-01-26T12:09:44Z", - "forks": 159, - "issues": 5, - "subscribers": 14, - "stars": 750, + "forks": 163, + "issues": 7, + "subscribers": 13, + "stars": 758, "dependencies": 0 }, "name": "react-native-fbsdk-next", @@ -60055,9 +59616,7 @@ "isPrivate": false, "description": "Facebook SDK support for React Native apps.", "topics": [ - "react", - "react-native", - "react-component", + "component", "ios", "android", "facebook", @@ -60073,25 +59632,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-fbsdk-next", "npm": { - "downloads": 506661, - "weekDownloads": 84942, + "downloads": 482002, + "weekDownloads": 111685, "size": 657791, "latestRelease": "13.4.1", "latestReleaseDate": "2025-01-26T12:09:54.511Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.143, - "topicSearchString": "react react-native react-component ios android facebook core" + "popularity": 0.197, + "topicSearchString": "component ios android facebook core" }, { "githubUrl": "https://github.com/nandorojo/expo-next-react-navigation", @@ -60112,7 +59672,7 @@ "pushedAt": "2024-11-08T16:10:59Z", "forks": 32, "issues": 1, - "subscribers": 9, + "subscribers": 8, "stars": 411, "dependencies": 2 }, @@ -60131,12 +59691,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-next-react-navigation", "npm": { - "downloads": 3781, - "weekDownloads": 801, + "downloads": 6210, + "weekDownloads": 1057, "size": 41337, "latestRelease": "2.0.2", "latestReleaseDate": "2021-09-25T19:43:55.198Z" @@ -60147,7 +59709,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.18, + "popularity": 0.145, "topicSearchString": "" }, { @@ -60183,7 +59745,6 @@ "isPrivate": false, "description": "A simple search box with animation, inspired from ios search bar. Lightweight, fast, flexible.", "topics": [ - "react-native", "ios", "android", "anhtuank7c", @@ -60199,13 +59760,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-search-box", "npm": { - "downloads": 1145, - "weekDownloads": 234, + "downloads": 1163, + "weekDownloads": 288, "size": 26465, "latestRelease": "0.0.20", "latestReleaseDate": "2020-10-03T16:06:36.368Z" @@ -60216,8 +59778,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.576, - "topicSearchString": "react-native ios android anhtuank7c ctlabvn" + "popularity": -0.539, + "topicSearchString": "ios android anhtuank7c ctlabvn" }, { "githubUrl": "https://github.com/klarna-incubator/platform-colors", @@ -60242,7 +59804,7 @@ "pushedAt": "2022-10-27T15:46:11Z", "forks": 8, "issues": 2, - "subscribers": 10, + "subscribers": 9, "stars": 109, "dependencies": 8 }, @@ -60251,8 +59813,6 @@ "isPrivate": false, "description": "Generate platform native colors for iOS, Android & Web", "topics": [ - "react-native", - "react", "mobile", "ios", "android", @@ -60273,23 +59833,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "unmaintained": true, "npm": { - "downloads": 2759, - "weekDownloads": 510, + "downloads": 2658, + "weekDownloads": 603, "size": 44118, "latestRelease": "0.4.0", "latestReleaseDate": "2022-10-28T08:59:14.432Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.593, - "topicSearchString": "react-native react mobile ios android ui dark-mode accessibility css web klarna-featured" + "popularity": -0.557, + "topicSearchString": "mobile ios android ui dark-mode accessibility css web klarna-featured" }, { "githubUrl": "https://github.com/reactrondev/react-native-web-swiper", @@ -60317,7 +59878,7 @@ "forks": 55, "issues": 11, "subscribers": 5, - "stars": 217, + "stars": 216, "dependencies": 1 }, "name": "react-native-web-swiper", @@ -60325,7 +59886,6 @@ "isPrivate": false, "description": "Swiper-Slider for React-Native and React-Native-Web", "topics": [ - "react-native", "web", "swipe", "swiper", @@ -60341,13 +59901,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-web-swiper", "npm": { - "downloads": 42678, - "weekDownloads": 8468, + "downloads": 45778, + "weekDownloads": 8883, "size": 53727, "latestRelease": "2.2.4", "latestReleaseDate": "2022-10-02T12:54:46.383Z" @@ -60358,8 +59919,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.581, - "topicSearchString": "react-native web swipe swiper slider" + "popularity": -0.585, + "topicSearchString": "web swipe swiper slider" }, { "githubUrl": "https://github.com/eveningkid/react-native-popable", @@ -60389,8 +59950,8 @@ "pushedAt": "2021-08-27T15:50:45Z", "forks": 29, "issues": 11, - "subscribers": 6, - "stars": 347, + "subscribers": 5, + "stars": 348, "dependencies": 0 }, "name": "react-native-popable", @@ -60399,7 +59960,6 @@ "registry": "https://registry.npmjs.org/", "description": "Popovers, tooltips for React Native", "topics": [ - "react-native", "ios", "android", "web", @@ -60418,13 +59978,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-popable", "npm": { - "downloads": 17785, - "weekDownloads": 3168, + "downloads": 16833, + "weekDownloads": 4126, "size": 149855, "latestRelease": "0.4.3", "latestReleaseDate": "2021-08-27T15:50:40.651Z" @@ -60435,8 +59996,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, - "topicSearchString": "react-native ios android web popover tooltip alert expo" + "popularity": -0.542, + "topicSearchString": "ios android web popover tooltip alert expo" }, { "githubUrl": "https://github.com/swushi/react-native-input-outline", @@ -60465,7 +60026,7 @@ "forks": 15, "issues": 11, "subscribers": 1, - "stars": 125, + "stars": 124, "dependencies": 0 }, "name": "react-native-input-outline", @@ -60474,7 +60035,6 @@ "registry": "https://registry.npmjs.org/", "description": "Performant React Native Text Inputs", "topics": [ - "react-native", "ios", "android" ], @@ -60488,13 +60048,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-input-outline", "npm": { - "downloads": 1070, - "weekDownloads": 113, + "downloads": 1103, + "weekDownloads": 200, "size": 170311, "latestRelease": "1.5.2", "latestReleaseDate": "2021-09-06T18:51:27.488Z" @@ -60504,8 +60065,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.66, - "topicSearchString": "react-native ios android" + "popularity": -0.596, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/ihor/react-native-scalable-image", @@ -60526,7 +60087,7 @@ "createdAt": "2017-02-23T23:33:49Z", "pushedAt": "2021-02-12T23:02:54Z", "forks": 61, - "issues": 14, + "issues": 15, "subscribers": 9, "stars": 316, "dependencies": 0 @@ -60536,7 +60097,6 @@ "isPrivate": false, "description": "React Native Image component which scales width or height automatically to keep the original aspect ratio", "topics": [ - "react-native", "image", "component", "scalable", @@ -60556,13 +60116,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-scalable-image", "npm": { - "downloads": 56063, - "weekDownloads": 11934, + "downloads": 55340, + "weekDownloads": 12218, "size": 8370, "latestRelease": "1.1.0", "latestReleaseDate": "2021-02-12T23:12:01.997Z" @@ -60573,8 +60134,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.569, - "topicSearchString": "react-native image component scalable aspect-ratio scales-width scales-height responsive reactjs" + "popularity": -0.562, + "topicSearchString": "image component scalable aspect-ratio scales-width scales-height responsive reactjs" }, { "githubUrl": "https://github.com/homeeondemand/react-native-mapbox-navigation", @@ -60598,10 +60159,10 @@ "updatedAt": "2023-02-17T19:04:36Z", "createdAt": "2020-11-02T19:07:55Z", "pushedAt": "2023-02-17T19:04:36Z", - "forks": 112, + "forks": 113, "issues": 67, "subscribers": 13, - "stars": 174, + "stars": 175, "dependencies": 0 }, "name": "@homee/react-native-mapbox-navigation", @@ -60609,7 +60170,6 @@ "isPrivate": false, "description": "A navigation UI ready to drop into your React Native application", "topics": [ - "react-native", "mapbox", "navigation", "mapbox-navigation" @@ -60624,12 +60184,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 34, - "weekDownloads": 13, + "downloads": 288, + "weekDownloads": 6, "size": 1614808, "latestRelease": "1.1.0", "latestReleaseDate": "2021-07-21T22:10:56.632Z" @@ -60640,8 +60201,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.175, - "topicSearchString": "react-native mapbox navigation mapbox-navigation" + "popularity": -1.482, + "topicSearchString": "mapbox navigation mapbox-navigation" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-screen-capture", @@ -60664,13 +60225,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-13T17:01:51Z", + "updatedAt": "2025-10-01T11:57:23Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-13T17:01:51Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-01T11:57:23Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-screen-capture", @@ -60678,7 +60239,6 @@ "isPrivate": false, "description": "Protects screens in your app from being captured or recorded, and notifies if a screenshot is taken.", "topics": [ - "react-native", "expo", "expo-screen-capture" ], @@ -60692,27 +60252,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-screen-capture", "npm": { - "downloads": 217396, - "weekDownloads": 31629, + "downloads": 168409, + "weekDownloads": 36673, "size": 109411, "latestRelease": "8.0.8", "latestReleaseDate": "2025-09-13T20:52:46.740Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.124, - "topicSearchString": "react-native expo expo-screen-capture" + "popularity": 0.185, + "topicSearchString": "expo expo-screen-capture" }, { "githubUrl": "https://github.com/Agaweb/react-native-stripe", @@ -60747,7 +60308,6 @@ "isPrivate": false, "description": "Unofficial integration of the payment APIs from the Stripe SDK on react-native", "topics": [ - "react-native", "ios", "android", "stripe", @@ -60764,12 +60324,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 22, - "weekDownloads": 2, + "downloads": 132, + "weekDownloads": 52, "size": 131213, "latestRelease": "0.5.6", "latestReleaseDate": "2022-09-27T14:43:47.808Z" @@ -60779,8 +60340,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.67, - "topicSearchString": "react-native ios android stripe stripe-payments stripe-payment" + "popularity": -1.415, + "topicSearchString": "ios android stripe stripe-payments stripe-payment" }, { "githubUrl": "https://github.com/craftzdog/react-native-aes-gcm-crypto", @@ -60800,9 +60361,9 @@ "updatedAt": "2024-09-25T00:13:59Z", "createdAt": "2021-01-27T11:29:27Z", "pushedAt": "2024-09-25T00:13:59Z", - "forks": 31, - "issues": 7, - "subscribers": 4, + "forks": 32, + "issues": 8, + "subscribers": 3, "stars": 255, "dependencies": 0 }, @@ -60812,7 +60373,6 @@ "registry": "https://registry.npmjs.org/", "description": "AES-GCM encryption/decryption for React Native", "topics": [ - "react-native", "ios", "android", "cryptography" @@ -60827,12 +60387,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-aes-gcm-crypto", "npm": { - "downloads": 7929, - "weekDownloads": 1269, + "downloads": 11625, + "weekDownloads": 2317, "size": 69769, "latestRelease": "0.2.2", "latestReleaseDate": "2022-07-20T05:21:17.954Z" @@ -60843,8 +60404,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.136, - "topicSearchString": "react-native ios android cryptography" + "popularity": 0.169, + "topicSearchString": "ios android cryptography" }, { "githubUrl": "https://github.com/craftzdog/react-native-sqlite-2", @@ -60864,9 +60425,9 @@ "updatedAt": "2022-11-01T03:49:12Z", "createdAt": "2017-03-20T03:26:12Z", "pushedAt": "2022-11-01T03:49:12Z", - "forks": 83, - "issues": 25, - "subscribers": 15, + "forks": 84, + "issues": 26, + "subscribers": 14, "stars": 385, "dependencies": 3 }, @@ -60876,7 +60437,6 @@ "registry": "https://registry.npmjs.org/", "description": "SQLite3 Native Plugin for React Native for iOS, Android, Windows and macOS.", "topics": [ - "react-native", "ios", "android", "pouchdb", @@ -60893,13 +60453,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sqlite-2", "npm": { - "downloads": 14816, - "weekDownloads": 2540, + "downloads": 17428, + "weekDownloads": 2609, "size": 162192, "latestRelease": "3.6.2", "latestReleaseDate": "2022-11-01T03:49:23.465Z" @@ -60910,8 +60471,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, - "topicSearchString": "react-native ios android pouchdb sqlite sqlite3" + "popularity": -0.623, + "topicSearchString": "ios android pouchdb sqlite sqlite3" }, { "githubUrl": "https://github.com/breeffy/react-native-monorepo/tree/main/packages/calendars", @@ -60941,7 +60502,7 @@ "pushedAt": "2021-12-11T19:16:20Z", "forks": 7, "issues": 20, - "subscribers": 3, + "subscribers": 1, "stars": 183, "dependencies": 5 }, @@ -60951,7 +60512,6 @@ "description": "Calendars UI components", "topics": [ "breeffy", - "react-native", "android", "calendar", "component", @@ -60968,12 +60528,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 96, - "weekDownloads": 7, + "downloads": 254, + "weekDownloads": 15, "size": 185208, "latestRelease": "0.9.0", "latestReleaseDate": "2021-12-11T19:16:39.945Z" @@ -60983,8 +60544,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.436, - "topicSearchString": "breeffy react-native android calendar component reanimated ui" + "popularity": -1.449, + "topicSearchString": "breeffy android calendar component reanimated ui" }, { "githubUrl": "https://github.com/codingki/react-native-rapi-ui", @@ -61014,7 +60575,7 @@ "forks": 16, "issues": 3, "subscribers": 2, - "stars": 162, + "stars": 161, "dependencies": 0 }, "name": "react-native-rapi-ui", @@ -61022,7 +60583,6 @@ "isPrivate": false, "description": "React native components library", "topics": [ - "react-native", "components", "ui", "design" @@ -61037,13 +60597,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-rapi-ui", "npm": { - "downloads": 740, - "weekDownloads": 91, + "downloads": 640, + "weekDownloads": 126, "size": 2525166, "latestRelease": "0.2.1", "latestReleaseDate": "2021-06-06T08:03:28.329Z" @@ -61053,8 +60614,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.395, - "topicSearchString": "react-native components ui design" + "popularity": -1.332, + "topicSearchString": "components ui design" }, { "githubUrl": "https://github.com/YsnKsy/react-native-location-enabler", @@ -61085,7 +60646,7 @@ "forks": 18, "issues": 7, "subscribers": 1, - "stars": 165, + "stars": 164, "dependencies": 0 }, "name": "react-native-location-enabler", @@ -61094,7 +60655,6 @@ "registry": "https://registry.npmjs.org/", "description": "This package makes it easy for an React Native App to ensure that the Android device's system settings are properly configured for the app's location needs. If your app needs to request location, the device needs to enable the appropriate system settings, such as GPS or Wi-Fi scanning. Rather than directly enabling services such as the device's GPS, your app specifies the required level of accuracy/power consumption, and the device automatically makes the appropriate changes to system settings.", "topics": [ - "react-native", "android", "location", "settings", @@ -61119,13 +60679,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-location-enabler", "npm": { - "downloads": 3349, - "weekDownloads": 496, + "downloads": 2857, + "weekDownloads": 779, "size": 50350, "latestRelease": "4.1.1", "latestReleaseDate": "2022-04-14T02:12:09.349Z" @@ -61135,8 +60696,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.624, - "topicSearchString": "react-native android location settings gps wi-fi settings-enabler settingsclient resolution wifi bluetooth ble accuracy android-device" + "popularity": -0.518, + "topicSearchString": "android location settings gps wi-fi settings-enabler settingsclient resolution wifi bluetooth ble accuracy android-device" }, { "githubUrl": "https://github.com/nandorojo/moti/tree/master/packages/moti", @@ -61165,8 +60726,8 @@ "pushedAt": "2025-03-11T20:25:50Z", "forks": 150, "issues": 29, - "subscribers": 38, - "stars": 4432, + "subscribers": 37, + "stars": 4456, "dependencies": 1 }, "name": "moti", @@ -61174,7 +60735,6 @@ "isPrivate": false, "description": "The universal React Native animation library, powered by Reanimated 3. 🦉", "topics": [ - "react-native", "ios", "android", "web" @@ -61189,12 +60749,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "moti", "npm": { - "downloads": 831879, - "weekDownloads": 180529, + "downloads": 681009, + "weekDownloads": 152417, "size": 778634, "latestRelease": "0.30.0", "latestReleaseDate": "2025-01-29T15:16:12.794Z" @@ -61207,8 +60769,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.184, - "topicSearchString": "react-native ios android web" + "popularity": 0.19, + "topicSearchString": "ios android web" }, { "githubUrl": "https://github.com/wix/react-native-ui-lib", @@ -61235,13 +60797,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T12:51:31Z", + "updatedAt": "2025-09-28T12:59:09Z", "createdAt": "2017-02-08T09:55:18Z", - "pushedAt": "2025-09-10T12:51:31Z", - "forks": 721, - "issues": 38, - "subscribers": 317, - "stars": 6918, + "pushedAt": "2025-09-28T12:59:09Z", + "forks": 720, + "issues": 45, + "subscribers": 316, + "stars": 6957, "dependencies": 16 }, "name": "react-native-ui-lib", @@ -61250,7 +60812,6 @@ "registry": "https://registry.npmjs.org/", "description": "UI Components Library for React Native", "topics": [ - "react-native", "ui", "components", "ios", @@ -61268,12 +60829,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-ui-lib", "npm": { - "downloads": 91709, - "weekDownloads": 13652, + "downloads": 146754, + "weekDownloads": 21202, "size": 2646666, "latestRelease": "7.46.3", "latestReleaseDate": "2025-09-04T12:51:09.210Z" @@ -61286,8 +60848,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.127, - "topicSearchString": "react-native ui components ios android tools hacktoberfest" + "popularity": 0.123, + "topicSearchString": "ui components ios android tools hacktoberfest" }, { "githubUrl": "https://github.com/raulpesilva/re-state", @@ -61328,19 +60890,14 @@ "topics": [ "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", + "global-state-for", "expo" ], "license": { @@ -61353,12 +60910,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 324, - "weekDownloads": 23, + "downloads": 655, + "weekDownloads": 123, "size": 119256, "latestRelease": "1.2.32", "latestReleaseDate": "2022-09-07T03:12:00.836Z" @@ -61368,8 +60926,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.689, - "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" + "popularity": -1.59, + "topicSearchString": "re-state restate ios android web context global-state global state global-state-for expo" }, { "githubUrl": "https://github.com/kashishgrover/react-native-see-more-inline", @@ -61409,7 +60967,6 @@ "isPrivate": false, "description": "Show a \"read more\", \"see more\", \"read less\", \"see less\" inline with your text in React Native", "topics": [ - "react-native", "see-more", "read-more", "see-less", @@ -61429,13 +60986,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-see-more-inline", "npm": { - "downloads": 501, - "weekDownloads": 66, + "downloads": 470, + "weekDownloads": 102, "size": 21143, "latestRelease": "1.3.0", "latestReleaseDate": "2020-11-11T19:20:32.689Z" @@ -61446,8 +61004,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.387, - "topicSearchString": "react-native see-more read-more see-less javascript binary-search read-more-less text inline" + "popularity": -1.315, + "topicSearchString": "see-more read-more see-less javascript binary-search read-more-less text inline" }, { "githubUrl": "https://github.com/Chooin/react-native-lifecycle", @@ -61482,7 +61040,6 @@ "isPrivate": false, "description": "React Native Lifecycle", "topics": [ - "react-native", "hooks", "lifecycle" ], @@ -61496,12 +61053,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-lifecycle", "npm": { - "downloads": 122, - "weekDownloads": 28, + "downloads": 119, + "weekDownloads": 14, "size": 19152, "latestRelease": "2.1.2", "latestReleaseDate": "2023-10-09T16:56:53.364Z" @@ -61511,8 +61069,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.55, - "topicSearchString": "react-native hooks lifecycle" + "popularity": -0.65, + "topicSearchString": "hooks lifecycle" }, { "githubUrl": "https://github.com/RonRadtke/react-native-blob-util", @@ -61524,6 +61082,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", @@ -61538,10 +61097,10 @@ "updatedAt": "2025-08-12T13:49:08Z", "createdAt": "2021-01-16T10:04:35Z", "pushedAt": "2025-08-12T13:49:08Z", - "forks": 158, - "issues": 96, - "subscribers": 6, - "stars": 868, + "forks": 162, + "issues": 97, + "subscribers": 5, + "stars": 873, "dependencies": 2 }, "name": "react-native-blob-util", @@ -61549,7 +61108,6 @@ "isPrivate": false, "description": "A project committed to making file access and data transfer easier, efficient for React Native developers.", "topics": [ - "react-native", "fetch", "blob", "fs", @@ -61569,25 +61127,25 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-blob-util", "npm": { - "downloads": 1662256, - "weekDownloads": 263891, + "downloads": 1789460, + "weekDownloads": 411965, "size": 784336, "latestRelease": "0.22.2", "latestReleaseDate": "2025-05-28T21:18:56.200Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Lots of open issues", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.135, - "topicSearchString": "react-native fetch blob fs upload file download filestream image-header" + "popularity": 0.196, + "topicSearchString": "fetch blob fs upload file download filestream image-header" }, { "githubUrl": "https://github.com/guhungry/react-native-photo-manipulator", @@ -61619,10 +61177,10 @@ "updatedAt": "2025-01-30T14:16:51Z", "createdAt": "2019-03-21T15:31:55Z", "pushedAt": "2025-01-30T14:16:51Z", - "forks": 37, + "forks": 38, "issues": 4, "subscribers": 4, - "stars": 379, + "stars": 384, "dependencies": 1 }, "name": "react-native-photo-manipulator", @@ -61631,7 +61189,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Image Processing API to edit photo programmatically for Android and iOS. It features print text, overlay on another image (add watermark), resize, crop, flip, rotate and optimize image size then convert file format to jpeg or png", "topics": [ - "react-native", "image-editor", "image-processing", "image-manipulator", @@ -61652,24 +61209,25 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-photo-manipulator", "npm": { - "downloads": 30023, - "weekDownloads": 5863, + "downloads": 42273, + "weekDownloads": 10355, "size": 143562, "latestRelease": "1.9.2", "latestReleaseDate": "2025-01-30T14:18:35.068Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.166, - "topicSearchString": "react-native image-editor image-processing image-manipulator photo-editor photo-processing photo-manipulator ios android image-manipulation" + "popularity": 0.208, + "topicSearchString": "image-editor image-processing image-manipulator photo-editor photo-processing photo-manipulator ios android image-manipulation" }, { "githubUrl": "https://github.com/xmartlabs/react-native-line", @@ -61680,6 +61238,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/xmartlabs/react-native-line", @@ -61691,13 +61250,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-22T21:17:54Z", + "updatedAt": "2025-09-29T18:20:24Z", "createdAt": "2017-09-12T18:04:39Z", - "pushedAt": "2025-07-22T21:17:54Z", + "pushedAt": "2025-09-29T18:20:24Z", "forks": 79, - "issues": 1, - "subscribers": 10, - "stars": 148, + "issues": 2, + "subscribers": 9, + "stars": 150, "dependencies": 0 }, "name": "@xmartlabs/react-native-line", @@ -61708,8 +61267,6 @@ "auth", "line", "login", - "react", - "react-native", "social", "wrapper", "wrapper-library", @@ -61727,21 +61284,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npm": { - "downloads": 22251, - "weekDownloads": 3775, - "size": 73144, - "latestRelease": "5.3.0", - "latestReleaseDate": "2025-07-22T23:01:55.934Z" + "downloads": 15789, + "weekDownloads": 2998, + "size": 73216, + "latestRelease": "5.4.0", + "latestReleaseDate": "2025-09-29T18:29:39.537Z" }, - "score": 54, + "score": 59, "matchingScoreModifiers": [ - "Known" + "Known", + "Recently updated" ], - "popularity": 0.144, - "topicSearchString": "auth line login react react-native social wrapper wrapper-library hybrid-apps ios android" + "popularity": 0.161, + "topicSearchString": "auth line login social wrapper wrapper-library hybrid-apps ios android" }, { "githubUrl": "https://github.com/bk52/react-native-weather-chart", @@ -61777,10 +61337,7 @@ "isPrivate": false, "description": "Customizable weather chart for React Native", "topics": [ - "react-native", - "react-component", "component", - "react", "ui", "weather", "chart", @@ -61798,13 +61355,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-weather-chart", "npm": { - "downloads": 15, - "weekDownloads": 3, + "downloads": 43, + "weekDownloads": 5, "size": 476499, "latestRelease": "0.1.3", "latestReleaseDate": "2021-05-16T11:08:22.208Z" @@ -61814,8 +61372,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, - "topicSearchString": "react-native react-component component react ui weather chart weather-chart weather-forecast svg" + "popularity": -1.65, + "topicSearchString": "component ui weather chart weather-chart weather-forecast svg" }, { "githubUrl": "https://github.com/firofame/react-native-compass-heading", @@ -61841,7 +61399,7 @@ "forks": 42, "issues": 3, "subscribers": 4, - "stars": 155, + "stars": 160, "dependencies": 0 }, "name": "react-native-compass-heading", @@ -61850,7 +61408,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native module for iOS & Android to receive compass heading", "topics": [ - "react-native", "ios", "android" ], @@ -61864,23 +61421,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-compass-heading", "npm": { - "downloads": 9442, - "weekDownloads": 1353, + "downloads": 9429, + "weekDownloads": 2395, "size": 29785, "latestRelease": "2.0.2", "latestReleaseDate": "2025-04-03T02:00:47.736Z" }, - "score": 51, + "score": 41, "matchingScoreModifiers": [ "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.122, - "topicSearchString": "react-native ios android" + "popularity": 0.216, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/stripe/stripe-react-native", @@ -61892,6 +61452,7 @@ "android": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/stripe/stripe-react-native", @@ -61903,13 +61464,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T17:37:50Z", + "updatedAt": "2025-10-20T18:12:08Z", "createdAt": "2020-12-16T23:51:01Z", - "pushedAt": "2025-09-12T17:37:50Z", - "forks": 292, - "issues": 137, + "pushedAt": "2025-10-20T18:12:08Z", + "forks": 297, + "issues": 138, "subscribers": 45, - "stars": 1362, + "stars": 1375, "dependencies": 0 }, "name": "@stripe/stripe-react-native", @@ -61917,7 +61478,6 @@ "isPrivate": false, "description": "React Native library for Stripe.", "topics": [ - "react-native", "ios", "android", "stripe", @@ -61933,14 +61493,16 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npm": { - "downloads": 638771, - "weekDownloads": 113774, - "size": 2514667, - "latestRelease": "0.52.0", - "latestReleaseDate": "2025-09-08T19:20:44.371Z" + "downloads": 636846, + "weekDownloads": 141616, + "size": 1953373, + "latestRelease": "0.55.0", + "latestReleaseDate": "2025-10-20T17:56:13.893Z" }, "score": 65, "matchingScoreModifiers": [ @@ -61949,8 +61511,8 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.151, - "topicSearchString": "react-native ios android stripe payments" + "popularity": 0.189, + "topicSearchString": "ios android stripe payments" }, { "githubUrl": "https://github.com/swaplet/react-native-swipe-cards-deck", @@ -61988,7 +61550,6 @@ "isPrivate": false, "description": "A swipping cards deck (similar to Tinder)", "topics": [ - "react-native", "tinder", "cards", "swipe", @@ -62004,13 +61565,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-swipe-cards-deck", "npm": { - "downloads": 311, - "weekDownloads": 54, + "downloads": 510, + "weekDownloads": 57, "size": 35615, "latestRelease": "0.3.0", "latestReleaseDate": "2021-06-23T09:54:05.245Z" @@ -62020,8 +61582,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.352, - "topicSearchString": "react-native tinder cards swipe deck" + "popularity": -1.405, + "topicSearchString": "tinder cards swipe deck" }, { "githubUrl": "https://github.com/Blaumaus/react-native-redux-alert", @@ -62056,11 +61618,9 @@ "isPrivate": false, "description": "Alerts for React Native.", "topics": [ - "react-native", "redux", "alert", "toast", - "react-redux", "toast-notifications" ], "license": { @@ -62073,12 +61633,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-redux-alert", "npm": { - "downloads": 7, + "downloads": 6, "weekDownloads": 0, "size": 28650, "latestRelease": "1.0.5", @@ -62090,7 +61651,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native redux alert toast react-redux toast-notifications" + "topicSearchString": "redux alert toast toast-notifications" }, { "githubUrl": "https://github.com/ThakurBallary/react-native-radio-buttons-group", @@ -62114,10 +61675,10 @@ "updatedAt": "2024-03-12T01:59:26Z", "createdAt": "2018-04-05T17:57:52Z", "pushedAt": "2024-03-12T01:59:26Z", - "forks": 67, + "forks": 68, "issues": 1, "subscribers": 2, - "stars": 299, + "stars": 302, "dependencies": 0 }, "name": "react-native-radio-buttons-group", @@ -62127,7 +61688,6 @@ "topics": [ "radio-buttons", "simple-radio-buttons", - "react-native", "radio-buttons-group", "radio-group", "component", @@ -62147,12 +61707,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-radio-buttons-group", "npm": { - "downloads": 73177, - "weekDownloads": 13912, + "downloads": 70092, + "weekDownloads": 15019, "size": 111234, "latestRelease": "3.1.0", "latestReleaseDate": "2024-03-12T02:00:41.256Z" @@ -62163,8 +61724,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, - "topicSearchString": "radio-buttons simple-radio-buttons react-native radio-buttons-group radio-group component ios android form radio button" + "popularity": 0.182, + "topicSearchString": "radio-buttons simple-radio-buttons radio-buttons-group radio-group component ios android form radio button" }, { "githubUrl": "https://github.com/Cnilton/react-native-floating-label-input", @@ -62202,9 +61763,7 @@ "isPrivate": false, "description": "A customizable React Native TextInput with its placeholder always shown. Includes masks, global styles, character count, and a bunch else.", "topics": [ - "react-native", "component", - "react", "mobile", "ios", "android", @@ -62231,12 +61790,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-floating-label-input", "npm": { - "downloads": 19081, - "weekDownloads": 2839, + "downloads": 20995, + "weekDownloads": 5037, "size": 283978, "latestRelease": "1.4.3", "latestReleaseDate": "2023-11-04T19:29:59.841Z" @@ -62247,8 +61807,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.126, - "topicSearchString": "react-native component react mobile ios android input mask floating text-input textinput customizable placeholder floating-label-input floatinglabelinput floatinglabeltextfield floating-label label" + "popularity": 0.204, + "topicSearchString": "component mobile ios android input mask floating text-input textinput customizable placeholder floating-label-input floatinglabelinput floatinglabeltextfield floating-label label" }, { "githubUrl": "https://github.com/emilioicai/react-native-safe-modules", @@ -62279,9 +61839,7 @@ "isPrivate": false, "description": "A safe way to consume React Native NativeModules (forked from react-native-safe-module by @lelandrichardson)", "topics": [ - "react-native", - "react", - "native-modules", + "modules", "code-push" ], "license": { @@ -62294,25 +61852,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-safe-modules", "npm": { - "downloads": 247330, - "weekDownloads": 40684, + "downloads": 218006, + "weekDownloads": 53617, "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.86, - "topicSearchString": "react-native react native-modules code-push" + "popularity": -0.791, + "topicSearchString": "modules code-push" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-status-bar", @@ -62338,10 +61896,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-status-bar", @@ -62349,7 +61907,6 @@ "isPrivate": false, "description": "Provides the same interface as the React Native StatusBar API, but with slightly different defaults to work great in Expo environments.", "topics": [ - "react-native", "expo", "expo-status-bar" ], @@ -62363,27 +61920,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-status-bar", "npm": { - "downloads": 4663689, - "weekDownloads": 839627, + "downloads": 4984095, + "weekDownloads": 1056892, "size": 24829, "latestRelease": "3.0.8", "latestReleaseDate": "2025-09-11T20:23:09.748Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.153, - "topicSearchString": "react-native expo expo-status-bar" + "popularity": 0.18, + "topicSearchString": "expo expo-status-bar" }, { "githubUrl": "https://github.com/fram-x/react-native-styled-text", @@ -62422,7 +61979,6 @@ "isPrivate": true, "description": "Styled Text for React Native", "topics": [ - "react-native", "text", "style", "format", @@ -62443,13 +61999,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-styled-text", "npm": { - "downloads": 41396, - "weekDownloads": 8757, + "downloads": 13456, + "weekDownloads": 3956, "size": 26878, "latestRelease": "2.0.0", "latestReleaseDate": "2021-12-11T12:35:19.340Z" @@ -62459,8 +62016,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.57, - "topicSearchString": "react-native text style format fonts color mixed html css nested" + "popularity": -0.5, + "topicSearchString": "text style format fonts color mixed html css nested" }, { "githubUrl": "https://github.com/oblador/react-native-vector-image", @@ -62477,13 +62034,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2024-11-20T18:20:17Z", + "updatedAt": "2025-10-15T10:46:11Z", "createdAt": "2021-04-18T17:06:42Z", - "pushedAt": "2024-11-20T18:20:17Z", + "pushedAt": "2025-10-15T10:46:11Z", "forks": 14, "issues": 3, - "subscribers": 7, - "stars": 341, + "subscribers": 6, + "stars": 346, "dependencies": 8 }, "name": "react-native-vector-image", @@ -62491,7 +62048,6 @@ "isPrivate": false, "description": "iOS/Android native vector assets generated from SVG", "topics": [ - "react-native", "image", "svg", "vector", @@ -62508,24 +62064,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-vector-image", "npm": { - "downloads": 8768, - "weekDownloads": 1713, - "size": 25936988, - "latestRelease": "0.4.5", - "latestReleaseDate": "2024-01-21T13:36:22.681Z" + "downloads": 5239, + "weekDownloads": 1957, + "size": 25937913, + "latestRelease": "0.5.3", + "latestReleaseDate": "2025-10-15T10:46:51.041Z" }, - "score": 41, + "score": 57, "matchingScoreModifiers": [ "Known", - "Not updated recently", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.166, - "topicSearchString": "react-native image svg vector component vector-drawable" + "popularity": 0.318, + "topicSearchString": "image svg vector component vector-drawable" }, { "githubUrl": "https://github.com/vivaxy/react-native-auto-height-image", @@ -62551,7 +62108,7 @@ "pushedAt": "2024-05-24T05:23:33Z", "forks": 68, "issues": 13, - "subscribers": 8, + "subscribers": 7, "stars": 345, "dependencies": 1 }, @@ -62560,10 +62117,8 @@ "isPrivate": false, "description": "🖼️React native auto height image", "topics": [ - "react-native", "image", "auto-height", - "react", "images" ], "license": { @@ -62576,12 +62131,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-auto-height-image", "npm": { - "downloads": 26002, - "weekDownloads": 4328, + "downloads": 29093, + "weekDownloads": 6576, "size": 26364, "latestRelease": "3.2.4", "latestReleaseDate": "2021-02-04T09:41:05.673Z" @@ -62592,8 +62148,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.141, - "topicSearchString": "react-native image auto-height react images" + "popularity": 0.192, + "topicSearchString": "image auto-height images" }, { "githubUrl": "https://github.com/marcocesarato/react-native-big-list", @@ -62620,13 +62176,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-19T15:05:23Z", + "updatedAt": "2025-10-08T16:09:23Z", "createdAt": "2021-06-05T20:03:07Z", - "pushedAt": "2025-07-19T15:05:23Z", + "pushedAt": "2025-10-08T16:09:23Z", "forks": 44, - "issues": 41, + "issues": 28, "subscribers": 2, - "stars": 538, + "stars": 537, "dependencies": 1 }, "name": "react-native-big-list", @@ -62635,8 +62191,6 @@ "description": "This is a high performance list view for React Native with support for complex layouts using a similar FlatList usage to make easy the replacement. This list implementation for big list rendering on React Native works with a recycler focused on performance and memory usage and so it permits processing thousands items on the list.", "topics": [ "big-list", - "react", - "react-native", "javascript", "ui-lib", "rn", @@ -62684,23 +62238,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-big-list", "npm": { - "downloads": 14447, - "weekDownloads": 2528, - "size": 350209, - "latestRelease": "1.6.2", - "latestReleaseDate": "2025-07-19T15:06:22.575Z" + "downloads": 14285, + "weekDownloads": 3220, + "size": 378632, + "latestRelease": "1.6.4", + "latestReleaseDate": "2025-10-08T13:42:54.767Z" }, - "score": 51, + "score": 57, "matchingScoreModifiers": [ "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, - "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" + "popularity": 0.192, + "topicSearchString": "big-list 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" }, { "githubUrl": "https://github.com/kadiraydinli/react-native-system-navigation-bar", @@ -62733,10 +62289,10 @@ "updatedAt": "2024-02-01T18:11:51Z", "createdAt": "2021-05-31T23:26:21Z", "pushedAt": "2024-02-01T18:11:51Z", - "forks": 20, + "forks": 22, "issues": 8, "subscribers": 4, - "stars": 279, + "stars": 283, "dependencies": 0 }, "name": "react-native-system-navigation-bar", @@ -62745,7 +62301,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native lets you customize the navigation bar for Android.", "topics": [ - "react-native", "system-navigation-bar", "android", "navigation", @@ -62793,12 +62348,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-system-navigation-bar", "npm": { - "downloads": 55352, - "weekDownloads": 9279, + "downloads": 49730, + "weekDownloads": 11236, "size": 705089, "latestRelease": "2.6.4", "latestReleaseDate": "2024-02-01T18:15:34.541Z" @@ -62809,8 +62365,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, - "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" + "popularity": 0.192, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/phamfoo/react-native-figma-squircle", @@ -62840,7 +62396,7 @@ "forks": 14, "issues": 1, "subscribers": 3, - "stars": 349, + "stars": 350, "dependencies": 1 }, "name": "react-native-figma-squircle", @@ -62849,8 +62405,6 @@ "description": "Figma-flavored squircles for React Native", "topics": [ "squircle", - "react", - "react-native", "figma", "expo" ], @@ -62864,12 +62418,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-figma-squircle", "npm": { - "downloads": 8269, - "weekDownloads": 1285, + "downloads": 8844, + "weekDownloads": 2871, "size": 31148, "latestRelease": "0.4.0", "latestReleaseDate": "2025-03-04T08:27:56.500Z" @@ -62880,8 +62435,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.132, - "topicSearchString": "squircle react react-native figma expo" + "popularity": 0.276, + "topicSearchString": "squircle figma expo" }, { "githubUrl": "https://github.com/wcandillon/react-native-shader", @@ -62906,7 +62461,7 @@ "pushedAt": "2023-08-07T14:01:07Z", "forks": 3, "issues": 1, - "subscribers": 3, + "subscribers": 2, "stars": 107, "dependencies": 0 }, @@ -62916,7 +62471,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Shader Library", "topics": [ - "react-native", "ios", "android" ], @@ -62930,12 +62484,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-shader", "npm": { - "downloads": 8, + "downloads": 15, "weekDownloads": 0, "size": 491464, "latestRelease": "0.2.0", @@ -62947,7 +62502,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/ibitcy/react-native-hole-view", @@ -62975,10 +62530,10 @@ "updatedAt": "2025-09-10T09:17:01Z", "createdAt": "2020-05-20T09:57:18Z", "pushedAt": "2025-09-10T09:17:01Z", - "forks": 27, - "issues": 10, - "subscribers": 10, - "stars": 427, + "forks": 28, + "issues": 12, + "subscribers": 9, + "stars": 429, "dependencies": 0 }, "name": "react-native-hole-view", @@ -62987,10 +62542,7 @@ "registry": "https://registry.npmjs.org", "description": "✂️ React-Native component to cut a touch-through holes anywhere you want. Perfect solution for tutorial overlay", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -63007,6 +62559,7 @@ "view" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -63015,24 +62568,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-hole-view", "npm": { - "downloads": 22874, - "weekDownloads": 4477, + "downloads": 22223, + "weekDownloads": 4834, "size": 1581144, "latestRelease": "3.0.1", "latestReleaseDate": "2025-05-08T16:19:51.561Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.166, - "topicSearchString": "react-native react-component component react mobile ios android ui vector retina hole mask tutorial overlay tint animated click-through view" + "popularity": 0.185, + "topicSearchString": "component mobile ios android ui vector retina hole mask tutorial overlay tint animated click-through view" }, { "githubUrl": "https://github.com/svgr-iconkit/svgr-iconkit/tree/main/packages/core", @@ -63073,8 +62625,6 @@ "topics": [ "svg", "icons", - "react", - "react-native", "expo" ], "license": { @@ -63087,11 +62637,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1869, - "weekDownloads": 382, + "downloads": 2435, + "weekDownloads": 416, "size": 69256, "latestRelease": "0.4.2", "latestReleaseDate": "2025-07-07T14:10:29.647Z" @@ -63100,8 +62651,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.076, - "topicSearchString": "svg icons react react-native expo" + "popularity": -0.105, + "topicSearchString": "svg icons expo" }, { "githubUrl": "https://github.com/akinncar/react-native-mask-text", @@ -63127,10 +62678,10 @@ "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": 448, + "stars": 453, "dependencies": 1 }, "name": "react-native-mask-text", @@ -63139,8 +62690,6 @@ "registry": "https://registry.npmjs.org/", "description": "🎭 A React Native and Expo library to mask text and inputs", "topics": [ - "react", - "react-native", "input", "mask", "expo", @@ -63156,12 +62705,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-mask-text", "npm": { - "downloads": 94423, - "weekDownloads": 15204, + "downloads": 103256, + "weekDownloads": 21051, "size": 153895, "latestRelease": "0.15.0", "latestReleaseDate": "2025-06-20T12:06:01.910Z" @@ -63171,8 +62721,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.137, - "topicSearchString": "react react-native input mask expo text-input" + "popularity": 0.173, + "topicSearchString": "input mask expo text-input" }, { "githubUrl": "https://github.com/RobertFOConnor/react-native-progress-wheel", @@ -63197,7 +62747,7 @@ "forks": 21, "issues": 4, "subscribers": 2, - "stars": 263 + "stars": 261 }, "name": "react-native-progress-wheel", "fullName": "RobertFOConnor/react-native-progress-wheel", @@ -63211,12 +62761,14 @@ }, "hasTypes": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-progress-wheel", "npm": { - "downloads": 6053, - "weekDownloads": 1022, + "downloads": 6231, + "weekDownloads": 1541, "size": 16433, "latestRelease": "2.1.0", "latestReleaseDate": "2023-10-22T10:29:34.009Z" @@ -63227,13 +62779,13 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": -0.54, "topicSearchString": "" }, { "githubUrl": "https://github.com/mateusz1913/react-native-avoid-softinput/tree/main/packages/react-native-avoid-softinput", "examples": [ - "https://github.com/mateusz1913/react-native-avoid-softinput/tree/main/packages/example" + "https://github.com/mateusz1913/react-native-avoid-softinput/tree/main/packages/expo-example" ], "images": [ "https://raw.githubusercontent.com/mateusz1913/react-native-avoid-softinput/master/static/form.gif", @@ -63252,13 +62804,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-15T14:31:32Z", + "updatedAt": "2025-10-02T16:59:25Z", "createdAt": "2021-07-02T21:27:18Z", - "pushedAt": "2025-08-15T14:31:32Z", - "forks": 21, - "issues": 3, + "pushedAt": "2025-10-02T16:59:25Z", + "forks": 22, + "issues": 4, "subscribers": 5, - "stars": 768, + "stars": 782, "dependencies": 1 }, "name": "react-native-avoid-softinput", @@ -63267,7 +62819,6 @@ "registry": "https://registry.npmjs.org/", "description": "Native logic for avoiding covering text inputs by soft input views", "topics": [ - "react-native", "soft-input", "keyboard", "avoid-soft-input", @@ -63285,23 +62836,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-avoid-softinput", "npm": { - "downloads": 129686, - "weekDownloads": 18346, - "size": 235197, - "latestRelease": "8.0.0", - "latestReleaseDate": "2025-08-15T14:31:32.084Z" + "downloads": 122106, + "weekDownloads": 35318, + "size": 236624, + "latestRelease": "8.0.2", + "latestReleaseDate": "2025-10-02T16:59:25.192Z" }, - "score": 51, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.12, - "topicSearchString": "react-native soft-input keyboard avoid-soft-input avoid-keyboard ios android" + "popularity": 0.246, + "topicSearchString": "soft-input keyboard avoid-soft-input avoid-keyboard ios android" }, { "githubUrl": "https://github.com/EvanBacon/react-native-web-hooks", @@ -63323,8 +62876,8 @@ "pushedAt": "2021-12-13T21:41:47Z", "forks": 10, "issues": 9, - "subscribers": 5, - "stars": 198, + "subscribers": 4, + "stars": 199, "dependencies": 0 }, "name": "react-native-web-hooks", @@ -63335,9 +62888,7 @@ "expo", "web", "utils", - "react-native", "css-in-js", - "react", "hooks", "ssr" ], @@ -63351,13 +62902,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "unmaintained": true, "npmPkg": "react-native-web-hooks", "npm": { - "downloads": 82791, - "weekDownloads": 15053, + "downloads": 78415, + "weekDownloads": 19223, "size": 39340, "latestRelease": "3.0.2", "latestReleaseDate": "2021-12-13T21:22:43.724Z" @@ -63368,8 +62921,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, - "topicSearchString": "expo web utils react-native css-in-js react hooks ssr" + "popularity": -0.542, + "topicSearchString": "expo web utils css-in-js hooks ssr" }, { "githubUrl": "https://github.com/uiwjs/react-native-alipay", @@ -63399,7 +62952,7 @@ "pushedAt": "2022-08-06T08:28:18Z", "forks": 48, "issues": 34, - "subscribers": 5, + "subscribers": 4, "stars": 232, "dependencies": 0 }, @@ -63408,7 +62961,6 @@ "isPrivate": false, "description": "基于 React Native 的宝支付包,已更新到最新的支付宝 SDK 版本,支持Android/iOS。", "topics": [ - "react-native", "alipay", "uiwjs", "uiw", @@ -63427,12 +62979,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 574, - "weekDownloads": 75, + "downloads": 943, + "weekDownloads": 133, "size": 11323947, "latestRelease": "5.0.2", "latestReleaseDate": "2022-08-06T08:29:14.013Z" @@ -63443,8 +62996,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.389, - "topicSearchString": "react-native alipay uiwjs uiw 支付宝 ios android reactjs" + "popularity": -1.38, + "topicSearchString": "alipay uiwjs uiw 支付宝 ios android reactjs" }, { "githubUrl": "https://github.com/douglasjunior/react-native-get-location", @@ -63464,21 +63017,21 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2024-09-21T01:27:24Z", + "updatedAt": "2025-09-22T20:53:29Z", "createdAt": "2019-01-30T14:19:55Z", - "pushedAt": "2024-09-21T01:27:24Z", + "pushedAt": "2025-09-22T20:53:29Z", "forks": 43, - "issues": 1, + "issues": 2, "subscribers": 2, - "stars": 239, + "stars": 242, "dependencies": 0 }, "name": "react-native-get-location", "fullName": "douglasjunior/react-native-get-location", "isPrivate": false, + "registry": "https://registry.npmjs.org/", "description": "⚛ Simple to use React Native library to get native device location for Android and iOS.", "topics": [ - "react-native", "android", "ios", "geolocation", @@ -63494,26 +63047,27 @@ "id": "MDc6TGljZW5zZTEz" }, "hasTypes": false, - "newArchitecture": false, + "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-get-location", "npm": { - "downloads": 41804, - "weekDownloads": 7570, - "size": 67675, - "latestRelease": "5.0.0", - "latestReleaseDate": "2024-08-05T12:20:03.199Z" + "downloads": 38945, + "weekDownloads": 9010, + "size": 91208, + "latestRelease": "6.0.0", + "latestReleaseDate": "2025-09-22T20:53:38.393Z" }, - "score": 41, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.154, - "topicSearchString": "react-native android ios geolocation location gps hacktoberfest" + "popularity": 0.197, + "topicSearchString": "android ios geolocation location gps hacktoberfest" }, { "githubUrl": "https://github.com/realm/realm-js/tree/main/packages/realm", @@ -63542,9 +63096,9 @@ "createdAt": "2015-08-13T15:51:36Z", "pushedAt": "2025-08-14T09:05:41Z", "forks": 592, - "issues": 588, - "subscribers": 105, - "stars": 5939, + "issues": 591, + "subscribers": 104, + "stars": 5947, "dependencies": 6 }, "name": "realm", @@ -63555,8 +63109,6 @@ "database", "db", "storage", - "react", - "react-native", "persistence", "local-storage", "localstorage", @@ -63582,26 +63134,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "realm", "npm": { - "downloads": 221409, - "weekDownloads": 31168, + "downloads": 199931, + "weekDownloads": 40540, "size": 678086505, "latestRelease": "20.2.0", "latestReleaseDate": "2025-08-11T17:17:46.164Z" }, - "score": 81, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.12, - "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" + "popularity": 0.172, + "topicSearchString": "database db storage persistence local-storage localstorage sqlite async-storage asyncstorage rocksdb leveldb realm mongodb offline-first offlinefirst localfirst local-first" }, { "githubUrl": "https://github.com/georstat/react-native-image-cache", @@ -63633,7 +63185,7 @@ "forks": 31, "issues": 12, "subscribers": 7, - "stars": 416, + "stars": 417, "dependencies": 1 }, "name": "@georstat/react-native-image-cache", @@ -63641,7 +63193,6 @@ "isPrivate": false, "description": "React-Native image caching in file system with progressive loading for iOS and Android", "topics": [ - "react-native", "ios", "android", "image-cache", @@ -63658,12 +63209,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 7971, - "weekDownloads": 975, + "downloads": 9357, + "weekDownloads": 2329, "size": 125174, "latestRelease": "3.1.0", "latestReleaseDate": "2023-09-07T05:44:25.303Z" @@ -63674,8 +63226,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.646, - "topicSearchString": "react-native ios android image-cache cache file-system-image-cache" + "popularity": -0.538, + "topicSearchString": "ios android image-cache cache file-system-image-cache" }, { "githubUrl": "https://github.com/rdhox/react-native-smooth-picker", @@ -63713,11 +63265,9 @@ "isPrivate": false, "description": "A smooth picker for react-native", "topics": [ - "react", - "react-native", "picker", "select", - "react-component", + "component", "ui", "form" ], @@ -63731,13 +63281,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-smooth-picker", "npm": { - "downloads": 2744, - "weekDownloads": 517, + "downloads": 2103, + "weekDownloads": 427, "size": 22601, "latestRelease": "1.1.5", "latestReleaseDate": "2021-07-03T14:12:50.128Z" @@ -63748,8 +63299,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.59, - "topicSearchString": "react react-native picker select react-component ui form" + "popularity": -0.577, + "topicSearchString": "picker select component ui form" }, { "githubUrl": "https://github.com/stovmascript/react-native-version", @@ -63773,7 +63324,7 @@ "pushedAt": "2021-08-03T20:09:33Z", "forks": 65, "issues": 32, - "subscribers": 5, + "subscribers": 4, "stars": 584, "dependencies": 13 }, @@ -63796,7 +63347,6 @@ "info", "npm-version", "plist", - "react-native", "semver", "version", "versioncode", @@ -63817,13 +63367,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-version", "npm": { - "downloads": 188492, - "weekDownloads": 34084, + "downloads": 147388, + "weekDownloads": 34110, "size": 30996, "latestRelease": "4.0.0", "latestReleaseDate": "2020-03-04T22:21:32.164Z" @@ -63834,8 +63385,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, - "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" + "popularity": -0.553, + "topicSearchString": "cfbundleshortversionstring cfbundleversion crna current-project-version agvtool build buildnumber bump create-app expo gradle info npm-version plist semver version versioncode versionname semantic-versioning hooks cli versioning release" }, { "githubUrl": "https://github.com/lufinkey/react-native-events", @@ -63866,7 +63417,6 @@ "isPrivate": false, "description": "Send and receive events from react native modules", "topics": [ - "react-native", "event", "events", "eventemitter" @@ -63881,13 +63431,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-events", "npm": { - "downloads": 674, - "weekDownloads": 144, + "downloads": 1845, + "weekDownloads": 102, "size": 59703, "latestRelease": "1.0.21", "latestReleaseDate": "2022-01-17T23:18:14.119Z" @@ -63897,8 +63448,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.318, - "topicSearchString": "react-native event events eventemitter" + "popularity": -0.703, + "topicSearchString": "event events eventemitter" }, { "githubUrl": "https://github.com/WrathChaos/react-native-progressive-fast-image", @@ -63924,7 +63475,7 @@ "pushedAt": "2023-04-05T11:32:36Z", "forks": 16, "issues": 6, - "subscribers": 4, + "subscribers": 3, "stars": 111, "dependencies": 1 }, @@ -63944,8 +63495,6 @@ "progressive-fast-image", "freakycoder", "kuray", - "react", - "react-native", "javascript", "ui-lib", "rn", @@ -63962,12 +63511,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 1551, - "weekDownloads": 198, + "downloads": 1446, + "weekDownloads": 307, "size": 71924, "latestRelease": "1.0.0", "latestReleaseDate": "2023-04-05T11:30:56.273Z" @@ -63977,8 +63527,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.641, - "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" + "popularity": -0.569, + "topicSearchString": "loading loading-image progressive lazy lazy-load fast-image image progressive-image progressive-fast-image freakycoder kuray javascript ui-lib rn mobile-app mobile" }, { "githubUrl": "https://github.com/timfpark/react-native-cache", @@ -64000,7 +63550,7 @@ "pushedAt": "2022-12-30T19:55:30Z", "forks": 28, "issues": 11, - "subscribers": 6, + "subscribers": 5, "stars": 195, "dependencies": 1 }, @@ -64019,13 +63569,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-cache", "npm": { - "downloads": 21447, - "weekDownloads": 2784, + "downloads": 21954, + "weekDownloads": 4484, "size": 35704, "latestRelease": "2.0.3", "latestReleaseDate": "2022-12-30T19:55:16.337Z" @@ -64036,7 +63587,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.64, + "popularity": -0.576, "topicSearchString": "" }, { @@ -64065,8 +63616,8 @@ "pushedAt": "2022-06-23T20:49:28Z", "forks": 45, "issues": 27, - "subscribers": 6, - "stars": 755, + "subscribers": 5, + "stars": 759, "dependencies": 1 }, "name": "@gorhom/portal", @@ -64076,11 +63627,9 @@ "topics": [ "expo", "web", - "react-native", "ios", "android", - "portal", - "react" + "portal" ], "license": { "key": "mit", @@ -64092,12 +63641,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 3165795, - "weekDownloads": 516647, + "downloads": 3033015, + "weekDownloads": 689175, "size": 94278, "latestRelease": "1.0.14", "latestReleaseDate": "2022-06-23T20:49:41.147Z" @@ -64109,8 +63659,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.611, - "topicSearchString": "expo web react-native ios android portal react" + "popularity": -0.557, + "topicSearchString": "expo web ios android portal" }, { "githubUrl": "https://github.com/a7ul/react-native-exception-handler", @@ -64136,9 +63686,9 @@ "updatedAt": "2021-03-23T16:53:20Z", "createdAt": "2017-04-21T01:27:10Z", "pushedAt": "2021-03-23T16:53:20Z", - "forks": 132, + "forks": 133, "issues": 62, - "subscribers": 20, + "subscribers": 19, "stars": 1612, "dependencies": 0 }, @@ -64148,8 +63698,6 @@ "description": "A react native module that lets you to register a global error handler that can capture fatal/non fatal uncaught exceptions.", "topics": [ "modal", - "react", - "native", "exception", "handler", "red", @@ -64160,7 +63708,6 @@ "bug", "capture", "exception-handler", - "react-native", "error", "openlibrary" ], @@ -64174,13 +63721,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-exception-handler", "npm": { - "downloads": 218945, - "weekDownloads": 35239, + "downloads": 203616, + "weekDownloads": 46997, "size": 55914, "latestRelease": "2.10.10", "latestReleaseDate": "2021-03-23T16:53:46.116Z" @@ -64192,8 +63740,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, - "topicSearchString": "modal react native exception handler red screen production ios android bug capture exception-handler react-native error openlibrary" + "popularity": -0.554, + "topicSearchString": "modal exception handler red screen production ios android bug capture exception-handler error openlibrary" }, { "githubUrl": "https://github.com/ReactVision/viro", @@ -64209,10 +63757,11 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/ReactVision/viro", - "homepage": "https://viro-community.readme.io/docs/overview" + "homepage": "https://reactvision.xyz/viro-react" }, "stats": { "hasIssues": true, @@ -64220,20 +63769,20 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-27T23:32:00Z", + "updatedAt": "2025-10-09T04:38:23Z", "createdAt": "2020-11-27T00:40:37Z", - "pushedAt": "2025-08-27T23:32:00Z", - "forks": 189, - "issues": 116, + "pushedAt": "2025-10-09T04:38:23Z", + "forks": 191, + "issues": 114, "subscribers": 18, - "stars": 1639, + "stars": 1663, "dependencies": 3 }, "name": "@reactvision/react-viro", "fullName": "ReactVision/viro", "isPrivate": false, "registry": "https://registry.npmjs.org/", - "description": "ViroReact: The library for building AR and VR applications and experiences with React Native.", + "description": "ViroReact is the leading library for building AR and VR experiences and applications using React Native and Expo.", "topics": [ "viroreact", "viro-community", @@ -64243,7 +63792,6 @@ "nowar", "augmented-reality", "expo", - "react-native", "ar" ], "license": { @@ -64256,14 +63804,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 8515, - "weekDownloads": 868, - "size": 230985811, - "latestRelease": "2.43.4", - "latestReleaseDate": "2025-08-27T23:36:02.051Z" + "downloads": 11553, + "weekDownloads": 2964, + "size": 194568752, + "latestRelease": "2.43.6", + "latestReleaseDate": "2025-10-09T04:40:10.070Z" }, "score": 62, "matchingScoreModifiers": [ @@ -64273,8 +63822,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.087, - "topicSearchString": "viroreact viro-community android ios blacklivesmatter nowar augmented-reality expo react-native ar" + "popularity": 0.218, + "topicSearchString": "viroreact viro-community android ios blacklivesmatter nowar augmented-reality expo ar" }, { "githubUrl": "https://github.com/IjzerenHein/react-native-bundle-visualizer", @@ -64299,10 +63848,10 @@ "updatedAt": "2025-01-31T08:08:54Z", "createdAt": "2017-09-02T13:56:22Z", "pushedAt": "2025-01-31T08:08:54Z", - "forks": 46, + "forks": 47, "issues": 15, - "subscribers": 9, - "stars": 1568, + "subscribers": 8, + "stars": 1579, "dependencies": 6 }, "name": "react-native-bundle-visualizer", @@ -64312,7 +63861,6 @@ "topics": [ "bundle-visualizer", "bundle-size", - "react-native", "bundle", "visualizer", "size", @@ -64328,12 +63876,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-bundle-visualizer", "npm": { - "downloads": 162472, - "weekDownloads": 28939, + "downloads": 152757, + "weekDownloads": 34445, "size": 12162, "latestRelease": "3.1.3", "latestReleaseDate": "2023-02-13T14:58:08.669Z" @@ -64345,8 +63894,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.151, - "topicSearchString": "bundle-visualizer bundle-size react-native bundle visualizer size expo" + "popularity": 0.192, + "topicSearchString": "bundle-visualizer bundle-size bundle visualizer size expo" }, { "githubUrl": "https://github.com/ximxim/react-native-feedback-reporter", @@ -64384,7 +63933,6 @@ "registry": "https://registry.npmjs.org/", "description": "RNFR is on a mission to help developers get useful information from testers to help debug issues by automatically gathering information and integrating it with popular tools.", "topics": [ - "react-native", "ios", "android", "feedback", @@ -64400,13 +63948,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-feedback-reporter", "npm": { - "downloads": 57, - "weekDownloads": 10, + "downloads": 178, + "weekDownloads": 8, "size": 1780528, "latestRelease": "0.4.16", "latestReleaseDate": "2021-11-16T18:45:36.673Z" @@ -64416,8 +63965,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.346, - "topicSearchString": "react-native ios android feedback reporter" + "popularity": -1.461, + "topicSearchString": "ios android feedback reporter" }, { "githubUrl": "https://github.com/software-mansion/react-native-gesture-handler/tree/main/packages/react-native-gesture-handler", @@ -64444,13 +63993,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-09T13:49:38Z", + "updatedAt": "2025-10-21T11:04:04Z", "createdAt": "2016-10-27T08:31:38Z", - "pushedAt": "2025-09-09T13:49:38Z", - "forks": 1010, - "issues": 49, - "subscribers": 62, - "stars": 6515, + "pushedAt": "2025-10-21T11:04:04Z", + "forks": 1013, + "issues": 47, + "subscribers": 63, + "stars": 6558, "dependencies": 3 }, "name": "react-native-gesture-handler", @@ -64468,25 +64017,26 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-gesture-handler", "npm": { - "downloads": 7674477, - "weekDownloads": 1327585, + "downloads": 7949885, + "weekDownloads": 1783124, "size": 3259588, "latestRelease": "2.28.0", "latestReleaseDate": "2025-08-06T14:42:37.317Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.147, + "popularity": 0.191, "topicSearchString": "" }, { @@ -64515,8 +64065,8 @@ "pushedAt": "2020-06-02T22:43:55Z", "forks": 40, "issues": 2, - "subscribers": 8, - "stars": 476, + "subscribers": 7, + "stars": 474, "dependencies": 0 }, "name": "react-native-responsive-dimensions", @@ -64524,7 +64074,6 @@ "isPrivate": false, "description": "Resposive fontSize, height and width for react-native components, that automatically adjusts itself based on screen-size of the device.", "topics": [ - "react-native", "responsive", "responsive-height", "responsive-width", @@ -64547,13 +64096,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-responsive-dimensions", "npm": { - "downloads": 29568, - "weekDownloads": 4773, + "downloads": 28604, + "weekDownloads": 6715, "size": 47696, "latestRelease": "3.1.1", "latestReleaseDate": "2020-03-26T02:59:06.008Z" @@ -64564,8 +64114,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, - "topicSearchString": "react-native responsive responsive-height responsive-width responsive-font-size fontsize responsive-dimensions component font-size dimensions responsive-design hacktoberfest" + "popularity": -0.55, + "topicSearchString": "responsive responsive-height responsive-width responsive-font-size fontsize responsive-dimensions component font-size dimensions responsive-design hacktoberfest" }, { "githubUrl": "https://github.com/SimonErm/react-native-job-queue", @@ -64584,23 +64134,21 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2024-11-14T22:16:51Z", "createdAt": "2019-08-06T22:14:47Z", "pushedAt": "2024-11-14T22:16:51Z", - "forks": 35, + "forks": 36, "issues": 5, "subscribers": 2, - "stars": 157, + "stars": 158, "dependencies": 0 }, "name": "react-native-job-queue", "fullName": "SimonErm/react-native-job-queue", "isPrivate": false, "description": "Easy to use react-native queuing library", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -64611,12 +64159,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-job-queue", "npm": { - "downloads": 9171, - "weekDownloads": 1757, + "downloads": 11042, + "weekDownloads": 2833, "size": 291556, "latestRelease": "0.5.3", "latestReleaseDate": "2025-06-04T20:31:56.765Z" @@ -64627,8 +64176,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.163, - "topicSearchString": "react-native" + "popularity": 0.218, + "topicSearchString": "" }, { "githubUrl": "https://github.com/margelo/react-native-quick-sqlite", @@ -64664,23 +64213,23 @@ "license": null, "hasTypes": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-quick-sqlite", "npm": { - "downloads": 18352, - "weekDownloads": 3876, + "downloads": 18777, + "weekDownloads": 3316, "size": 9358763, "latestRelease": "8.2.7", "latestReleaseDate": "2024-11-26T16:44:39.009Z" }, - "score": 22, + "score": 24, "matchingScoreModifiers": [ "No license", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.82, + "popularity": -0.85, "topicSearchString": "" }, { @@ -64721,11 +64270,9 @@ "registry": "https://registry.npmjs.org/", "description": "A popup component that sticks to an element and stays on top of everything.", "topics": [ - "react-native", "ios", "android", "popup", - "react", "javascript" ], "license": { @@ -64738,13 +64285,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-relative-popup", "npm": { - "downloads": 41, - "weekDownloads": 0, + "downloads": 91, + "weekDownloads": 4, "size": 17776984, "latestRelease": "0.1.7", "latestReleaseDate": "2021-09-10T13:04:15.905Z" @@ -64754,8 +64302,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native ios android popup react javascript" + "popularity": -1.712, + "topicSearchString": "ios android popup javascript" }, { "githubUrl": "https://github.com/microsoft/fluentui-react-native/tree/main/packages/libraries/core", @@ -64775,13 +64323,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-08-13T22:23:28Z", + "updatedAt": "2025-09-26T21:33:06Z", "createdAt": "2019-07-10T20:27:19Z", - "pushedAt": "2025-08-13T22:23:28Z", - "forks": 165, - "issues": 79, - "subscribers": 43, - "stars": 1383, + "pushedAt": "2025-09-26T21:33:06Z", + "forks": 166, + "issues": 80, + "subscribers": 42, + "stars": 1395, "dependencies": 16 }, "name": "@fluentui/react-native", @@ -64799,23 +64347,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 580, - "weekDownloads": 122, - "size": 981707, - "latestRelease": "0.42.24", - "latestReleaseDate": "2025-08-13T22:22:57.423Z" + "downloads": 2818, + "weekDownloads": 246, + "size": 982274, + "latestRelease": "0.42.29", + "latestReleaseDate": "2025-09-26T21:32:35.618Z" }, - "score": 57, + "score": 62, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.571, + "popularity": 0.074, "topicSearchString": "" }, { @@ -64845,8 +64395,8 @@ "pushedAt": "2024-05-09T15:51:43Z", "forks": 70, "issues": 29, - "subscribers": 5, - "stars": 384, + "subscribers": 4, + "stars": 388, "dependencies": 0 }, "name": "rn-emoji-keyboard", @@ -64855,7 +64405,6 @@ "registry": "https://registry.npmjs.org/", "description": "Super performant, lightweight, fully customizable emoji picker 🚀 ", "topics": [ - "react-native", "ios", "android", "typescript", @@ -64876,12 +64425,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-emoji-keyboard", "npm": { - "downloads": 153140, - "weekDownloads": 21915, + "downloads": 121103, + "weekDownloads": 27783, "size": 1327141, "latestRelease": "1.7.0", "latestReleaseDate": "2024-05-09T15:51:40.065Z" @@ -64892,8 +64442,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.122, - "topicSearchString": "react-native ios android typescript emoji-picker emoji emoji-keyboard hacktoberfest hacktoberfest2021 hacktoberfest2022" + "popularity": 0.195, + "topicSearchString": "ios android typescript emoji-picker emoji emoji-keyboard hacktoberfest hacktoberfest2021 hacktoberfest2022" }, { "githubUrl": "https://github.com/emeraldsanto/react-native-encrypted-storage", @@ -64918,7 +64468,7 @@ "pushedAt": "2022-11-03T22:34:33Z", "forks": 73, "issues": 28, - "subscribers": 9, + "subscribers": 8, "stars": 575, "dependencies": 0 }, @@ -64928,7 +64478,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native wrapper around EncryptedSharedPreferences and Keychain to provide a secure alternative to Async Storage.", "topics": [ - "react-native", "ios", "android", "async-storage", @@ -64949,13 +64498,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-encrypted-storage", "npm": { - "downloads": 181589, - "weekDownloads": 30267, + "downloads": 181195, + "weekDownloads": 43030, "size": 151222, "latestRelease": "4.0.3", "latestReleaseDate": "2022-11-03T22:39:16.710Z" @@ -64966,8 +64516,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.608, - "topicSearchString": "react-native ios android async-storage keychain sharedpreferences encryption security kotlin swift" + "popularity": -0.548, + "topicSearchString": "ios android async-storage keychain sharedpreferences encryption security kotlin swift" }, { "githubUrl": "https://github.com/hoaphantn7604/react-native-curved-bottom-bar", @@ -64994,10 +64544,10 @@ "updatedAt": "2025-04-24T05:40:39Z", "createdAt": "2021-06-22T09:37:35Z", "pushedAt": "2025-04-24T05:40:39Z", - "forks": 105, - "issues": 26, + "forks": 104, + "issues": 27, "subscribers": 5, - "stars": 569, + "stars": 573, "dependencies": 2 }, "name": "react-native-curved-bottom-bar", @@ -65006,7 +64556,6 @@ "registry": "https://registry.npmjs.org/", "description": "A high performance, beautiful and fully customizable curved bottom navigation bar for React Native.", "topics": [ - "react-native", "elements", "components", "curved", @@ -65024,23 +64573,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-curved-bottom-bar", "npm": { - "downloads": 13397, - "weekDownloads": 1937, + "downloads": 12806, + "weekDownloads": 2828, "size": 255669, "latestRelease": "3.5.1", "latestReleaseDate": "2025-04-24T05:40:37.688Z" }, - "score": 51, + "score": 41, "matchingScoreModifiers": [ "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.123, - "topicSearchString": "react-native elements components curved bottom tab-bar tabbar" + "popularity": 0.188, + "topicSearchString": "elements components curved bottom tab-bar tabbar" }, { "githubUrl": "https://github.com/jobtoday/react-native-image-viewing", @@ -65068,9 +64619,9 @@ "createdAt": "2019-11-07T20:44:32Z", "pushedAt": "2022-04-18T19:44:46Z", "forks": 278, - "issues": 83, + "issues": 85, "subscribers": 19, - "stars": 932, + "stars": 937, "dependencies": 0 }, "name": "react-native-image-viewing", @@ -65078,8 +64629,6 @@ "isPrivate": false, "description": "Tiny, purely TS, modal component for viewing images 🏙 ", "topics": [ - "react", - "react-native", "image", "gallery", "image-gallery", @@ -65096,13 +64645,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-image-viewing", "npm": { - "downloads": 205666, - "weekDownloads": 31817, + "downloads": 160714, + "weekDownloads": 37487, "size": 71366, "latestRelease": "0.2.2", "latestReleaseDate": "2022-04-18T19:38:20.779Z" @@ -65115,8 +64665,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, - "topicSearchString": "react react-native image gallery image-gallery image-viewer pinch-to-zoom" + "popularity": -0.552, + "topicSearchString": "image gallery image-gallery image-viewer pinch-to-zoom" }, { "githubUrl": "https://github.com/flipkart-incubator/animation-wrapper-view", @@ -65148,7 +64698,7 @@ "pushedAt": "2024-09-05T05:08:44Z", "forks": 12, "issues": 0, - "subscribers": 8, + "subscribers": 7, "stars": 55, "dependencies": 0 }, @@ -65157,15 +64707,13 @@ "isPrivate": false, "description": "Declarative animations with imperative controls for RN/RNW.", "topics": [ - "react-components", + "components", "animation", "declarative", "animated", - "react-native", - "react", "reactjs", "library", - "react-component" + "component" ], "license": { "key": "apache-2.0", @@ -65177,12 +64725,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "animation-wrapper-view", "npm": { - "downloads": 5, - "weekDownloads": 0, + "downloads": 69, + "weekDownloads": 3, "size": 127241, "latestRelease": "1.1.2-TEST.1", "latestReleaseDate": "2022-08-02T09:51:55.528Z" @@ -65192,8 +64741,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-components animation declarative animated react-native react reactjs library react-component" + "popularity": -0.713, + "topicSearchString": "components animation declarative animated reactjs library component" }, { "githubUrl": "https://github.com/ajsmth/react-native-pager", @@ -65225,7 +64774,7 @@ "forks": 26, "issues": 11, "subscribers": 6, - "stars": 336, + "stars": 335, "dependencies": 0 }, "name": "@crowdlinker/react-native-pager", @@ -65233,12 +64782,8 @@ "isPrivate": false, "description": "controllable pager component for react native", "topics": [ - "react", - "react-native", "pager", - "react-pager", "tabs", - "react-tabs", "reactjs" ], "license": { @@ -65251,12 +64796,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 370, - "weekDownloads": 20, + "downloads": 1314, + "weekDownloads": 41, "size": 219093, "latestRelease": "0.2.3", "latestReleaseDate": "2020-03-27T18:54:45.283Z" @@ -65267,8 +64813,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.454, - "topicSearchString": "react react-native pager react-pager tabs react-tabs reactjs" + "popularity": -0.723, + "topicSearchString": "pager tabs reactjs" }, { "githubUrl": "https://github.com/GantMan/jail-monkey", @@ -65288,13 +64834,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-01T14:43:37Z", + "updatedAt": "2025-10-12T21:18:07Z", "createdAt": "2016-07-20T13:59:01Z", - "pushedAt": "2025-07-01T14:43:37Z", - "forks": 144, - "issues": 44, + "pushedAt": "2025-10-12T21:18:07Z", + "forks": 143, + "issues": 12, "subscribers": 9, - "stars": 673, + "stars": 676, "dependencies": 0 }, "name": "jail-monkey", @@ -65302,8 +64848,6 @@ "isPrivate": false, "description": "A React Native library for identifying if a phone is rooted or mocking locations", "topics": [ - "react-native", - "native", "jail", "break", "jail-break", @@ -65311,7 +64855,6 @@ "android", "mock-locations", "detect", - "react", "trust", "jailbreak" ], @@ -65325,24 +64868,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "jail-monkey", "npm": { - "downloads": 308002, - "weekDownloads": 49630, + "downloads": 311645, + "weekDownloads": 70765, "size": 172215, "latestRelease": "2.8.4", "latestReleaseDate": "2025-07-01T14:44:02.840Z" }, - "score": 68, + "score": 73, "matchingScoreModifiers": [ "Popular", "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.137, - "topicSearchString": "react-native native jail break jail-break ios android mock-locations detect react trust jailbreak" + "popularity": 0.193, + "topicSearchString": "jail break jail-break ios android mock-locations detect trust jailbreak" }, { "githubUrl": "https://github.com/Eugnis/react-native-timeline-flatlist", @@ -65373,7 +64918,7 @@ "forks": 72, "issues": 35, "subscribers": 4, - "stars": 489, + "stars": 490, "dependencies": 0 }, "name": "react-native-timeline-flatlist", @@ -65381,7 +64926,6 @@ "isPrivate": false, "description": "FlatList based timeline component for React Native for iOS and Android", "topics": [ - "react-native", "timeline", "flatlist", "schedule", @@ -65401,13 +64945,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-timeline-flatlist", "npm": { - "downloads": 26492, - "weekDownloads": 4449, + "downloads": 24056, + "weekDownloads": 5263, "size": 38497, "latestRelease": "0.8.0", "latestReleaseDate": "2022-01-18T21:04:11.230Z" @@ -65418,8 +64963,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, - "topicSearchString": "react-native timeline flatlist schedule component ios android flatlist-based cross-platform" + "popularity": -0.564, + "topicSearchString": "timeline flatlist schedule component ios android flatlist-based cross-platform" }, { "githubUrl": "https://github.com/mohakapt/react-native-js-tableview", @@ -65457,7 +65002,6 @@ "isPrivate": false, "description": "A JavaScript implementation for TableView that looks great on both iOS and Android.", "topics": [ - "react-native", "tableview", "uitableview", "ios", @@ -65473,12 +65017,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-js-tableview", "npm": { - "downloads": 99, - "weekDownloads": 2, + "downloads": 273, + "weekDownloads": 65, "size": 56295, "latestRelease": "2.6.1", "latestReleaseDate": "2024-08-09T15:32:49.723Z" @@ -65488,8 +65033,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.733, - "topicSearchString": "react-native tableview uitableview ios android" + "popularity": -0.547, + "topicSearchString": "tableview uitableview ios android" }, { "githubUrl": "https://github.com/arelstone/react-native-email-chip", @@ -65527,7 +65072,6 @@ "description": "A simple yet customizable component to display a chip list of emails", "topics": [ "suggestions", - "react-native", "component", "email", "chip", @@ -65537,8 +65081,7 @@ "ios", "android", "ui", - "javascript", - "native" + "javascript" ], "license": { "name": "MIT License", @@ -65550,11 +65093,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 134, - "weekDownloads": 7, + "downloads": 759, + "weekDownloads": 36, "size": 24945, "latestRelease": "2.5.4", "latestReleaseDate": "2023-08-07T06:28:30.204Z" @@ -65564,8 +65108,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.955, - "topicSearchString": "suggestions react-native component email chip tags input mobile ios android ui javascript native" + "popularity": -0.96, + "topicSearchString": "suggestions component email chip tags input mobile ios android ui javascript" }, { "githubUrl": "https://github.com/Giphy/giphy-react-native-sdk", @@ -65578,6 +65122,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Giphy/giphy-react-native-sdk", @@ -65589,13 +65134,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-06T13:55:02Z", + "updatedAt": "2025-09-26T15:11:17Z", "createdAt": "2021-05-06T15:11:24Z", - "pushedAt": "2025-08-06T13:55:02Z", + "pushedAt": "2025-09-26T15:11:17Z", "forks": 23, "issues": 3, - "subscribers": 30, - "stars": 75, + "subscribers": 29, + "stars": 77, "dependencies": 2 }, "name": "@giphy/react-native-sdk", @@ -65604,7 +65149,6 @@ "registry": "https://registry.npmjs.org/", "description": "GIPHY React Native SDK ", "topics": [ - "react-native", "ios", "android", "giphy", @@ -65622,22 +65166,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 107687, - "weekDownloads": 16096, - "size": 404543, - "latestRelease": "5.0.0", - "latestReleaseDate": "2025-08-06T14:07:10.942Z" + "downloads": 49878, + "weekDownloads": 13540, + "size": 404592, + "latestRelease": "5.0.1", + "latestReleaseDate": "2025-09-26T15:12:42.036Z" }, - "score": 51, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.127, - "topicSearchString": "react-native ios android giphy sdk gifs giphy-sdks" + "popularity": 0.231, + "topicSearchString": "ios android giphy sdk gifs giphy-sdks" }, { "githubUrl": "https://github.com/SrBrahma/react-native-shadow-2", @@ -65668,9 +65213,9 @@ "createdAt": "2021-02-14T20:43:38Z", "pushedAt": "2025-07-21T16:12:36Z", "forks": 60, - "issues": 5, + "issues": 6, "subscribers": 4, - "stars": 717, + "stars": 721, "dependencies": 1 }, "name": "react-native-shadow-2", @@ -65680,19 +65225,15 @@ "topics": [ "shadow", "shadows", - "react-native", - "native", "gradient", "ios", "android", - "react", "cross-platform", "automatic", "typescript", "cross", "blur", "shadow-2", - "native-shadow", "svg", "borders", "radiuses", @@ -65709,12 +65250,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-shadow-2", "npm": { - "downloads": 167462, - "weekDownloads": 30614, + "downloads": 157244, + "weekDownloads": 35274, "size": 61089, "latestRelease": "7.1.2", "latestReleaseDate": "2025-07-18T15:05:01.347Z" @@ -65725,8 +65267,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.155, - "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" + "popularity": 0.191, + "topicSearchString": "shadow shadows gradient ios android cross-platform automatic typescript cross blur shadow-2 svg borders radiuses new improved" }, { "githubUrl": "https://github.com/lazaronixon/react-native-turbolinks", @@ -65754,7 +65296,7 @@ "pushedAt": "2020-12-29T02:59:31Z", "forks": 17, "issues": 9, - "subscribers": 11, + "subscribers": 10, "stars": 192, "dependencies": 0 }, @@ -65763,9 +65305,6 @@ "isPrivate": false, "description": "React Native adapter for building hybrid apps with Turbolinks 5", "topics": [ - "react-native", - "react", - "native", "turbolinks", "pwa", "rails", @@ -65784,13 +65323,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-turbolinks", "npm": { - "downloads": 154, - "weekDownloads": 61, + "downloads": 1678, + "weekDownloads": 35, "size": 4079675, "latestRelease": "2.2.9", "latestReleaseDate": "2020-12-29T03:03:00.464Z" @@ -65801,8 +65341,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.161, - "topicSearchString": "react-native react native turbolinks pwa rails android ios webview hybrid" + "popularity": -0.732, + "topicSearchString": "turbolinks pwa rails android ios webview hybrid" }, { "githubUrl": "https://github.com/mrousavy/vision-camera-image-labeler", @@ -65828,8 +65368,8 @@ "pushedAt": "2025-08-26T17:43:56Z", "forks": 29, "issues": 8, - "subscribers": 5, - "stars": 138, + "subscribers": 4, + "stars": 140, "dependencies": 0 }, "name": "vision-camera-image-labeler", @@ -65838,7 +65378,6 @@ "registry": "https://registry.npmjs.org/", "description": "VisionCamera Frame Processor Plugin to label images using MLKit Vision", "topics": [ - "react-native", "ios", "android", "image-labeling", @@ -65861,23 +65400,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "vision-camera-image-labeler", "npm": { - "downloads": 97, - "weekDownloads": 14, + "downloads": 134, + "weekDownloads": 27, "size": 48983, "latestRelease": "0.1.6", "latestReleaseDate": "2021-08-13T08:57:12.339Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.623, - "topicSearchString": "react-native ios android image-labeling vision-camera library vision camera ml ai frame-processor-plugin mlkit-vision" + "popularity": -0.576, + "topicSearchString": "ios android image-labeling vision-camera library vision camera ml ai frame-processor-plugin mlkit-vision" }, { "githubUrl": "https://github.com/VittoriDavide/react-native-barcode-creator", @@ -65903,7 +65442,7 @@ "forks": 11, "issues": 1, "subscribers": 1, - "stars": 26, + "stars": 29, "dependencies": 0 }, "name": "react-native-barcode-creator", @@ -65912,13 +65451,11 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Barcode Creator creates different type of barcodes including EAN13, CODE128, PDF417, UPCA, QR and AZTEC. ", "topics": [ - "react-native", "ios", "android", "barcode", "barcode-generator", - "qrcode-generator", - "native" + "qrcode-generator" ], "license": { "key": "mit", @@ -65930,12 +65467,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-barcode-creator", "npm": { - "downloads": 34087, - "weekDownloads": 6644, + "downloads": 35589, + "weekDownloads": 6952, "size": 52780, "latestRelease": "0.1.8", "latestReleaseDate": "2025-01-04T15:49:00.776Z" @@ -65946,7 +65484,7 @@ "Not supporting New Architecture" ], "popularity": 0.166, - "topicSearchString": "react-native ios android barcode barcode-generator qrcode-generator native" + "topicSearchString": "ios android barcode barcode-generator qrcode-generator" }, { "githubUrl": "https://github.com/mthines/react-native-font-face", @@ -65980,11 +65518,9 @@ "topics": [ "boilerplate", "typescript", - "react-native", "font-face", "font", - "typography", - "react" + "typography" ], "license": { "key": "mit", @@ -65996,11 +65532,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 12, + "downloads": 228, "weekDownloads": 0, "size": 11425, "latestRelease": "1.0.0", @@ -66012,7 +65549,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "boilerplate typescript react-native font-face font typography react" + "topicSearchString": "boilerplate typescript font-face font typography" }, { "githubUrl": "https://github.com/axelra-ag/react-native-animateable-text", @@ -66037,10 +65574,10 @@ "updatedAt": "2025-07-27T13:33:07Z", "createdAt": "2020-09-13T19:44:23Z", "pushedAt": "2025-07-27T13:33:07Z", - "forks": 31, + "forks": 34, "issues": 2, - "subscribers": 4, - "stars": 452, + "subscribers": 5, + "stars": 457, "dependencies": 2 }, "name": "react-native-animateable-text", @@ -66048,7 +65585,6 @@ "isPrivate": false, "description": "🆎 A fork of React Native's component that supports Reanimated Shared Values as text!", "topics": [ - "react-native", "ios", "android", "reanimated", @@ -66067,12 +65603,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-animateable-text", "npm": { - "downloads": 50652, - "weekDownloads": 6567, + "downloads": 44208, + "weekDownloads": 11353, "size": 190393, "latestRelease": "0.16.0", "latestReleaseDate": "2025-07-27T13:31:13.169Z" @@ -66081,8 +65618,8 @@ "matchingScoreModifiers": [ "Known" ], - "popularity": 0.11, - "topicSearchString": "react-native ios android reanimated shared-values animated text reanimated2" + "popularity": 0.218, + "topicSearchString": "ios android reanimated shared-values animated text reanimated2" }, { "githubUrl": "https://github.com/WoLewicki/react-native-window-view", @@ -66107,7 +65644,7 @@ "pushedAt": "2021-09-01T12:34:27Z", "forks": 1, "issues": 1, - "subscribers": 3, + "subscribers": 2, "stars": 16, "dependencies": 0 }, @@ -66117,7 +65654,6 @@ "registry": "https://registry.npmjs.org/", "description": "Native iOS component for rendering views straight under the UIWindow", "topics": [ - "react-native", "ios", "android" ], @@ -66131,13 +65667,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-window-view", "npm": { - "downloads": 1656, - "weekDownloads": 229, + "downloads": 1567, + "weekDownloads": 377, "size": 23280, "latestRelease": "0.3.0", "latestReleaseDate": "2021-04-28T10:01:41.022Z" @@ -66147,8 +65684,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.882, - "topicSearchString": "react-native ios android" + "popularity": -0.795, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/ajith-ab/react-native-receive-sharing-intent", @@ -66178,7 +65715,7 @@ "forks": 98, "issues": 69, "subscribers": 10, - "stars": 345, + "stars": 346, "dependencies": 0 }, "name": "react-native-receive-sharing-intent", @@ -66187,7 +65724,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native plugin that enables React Native apps to receive sharing photos, videos, text, urls or any other file types from another app", "topics": [ - "react-native", "ios", "android" ], @@ -66201,12 +65737,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-receive-sharing-intent", "npm": { - "downloads": 10248, + "downloads": 7895, "weekDownloads": 1615, "size": 225951, "latestRelease": "2.0.0", @@ -66218,14 +65755,15 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, - "topicSearchString": "react-native ios android" + "popularity": -0.576, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/DataDog/dd-sdk-reactnative/tree/develop/packages/core", "npmPkg": "@datadog/mobile-react-native", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/DataDog/dd-sdk-reactnative", @@ -66237,13 +65775,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-05T15:51:46Z", + "updatedAt": "2025-10-16T10:29:36Z", "createdAt": "2019-12-18T13:25:42Z", - "pushedAt": "2025-09-05T15:51:46Z", - "forks": 48, - "issues": 38, - "subscribers": 19, - "stars": 128, + "pushedAt": "2025-10-16T10:29:36Z", + "forks": 50, + "issues": 30, + "subscribers": 16, + "stars": 132, "dependencies": 1 }, "name": "@datadog/mobile-react-native", @@ -66252,7 +65790,6 @@ "description": "A client-side React Native module to interact with Datadog", "topics": [ "datadog", - "react-native", "ios", "android" ], @@ -66266,24 +65803,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npm": { - "downloads": 669419, - "weekDownloads": 117477, - "size": 2210882, - "latestRelease": "2.12.0", - "latestReleaseDate": "2025-09-04T14:52:39.166Z" + "downloads": 574308, + "weekDownloads": 137782, + "size": 2241077, + "latestRelease": "2.12.4", + "latestReleaseDate": "2025-10-21T15:33:34.511Z" }, - "score": 73, + "score": 59, "matchingScoreModifiers": [ - "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.149, - "topicSearchString": "datadog react-native ios android" + "popularity": 0.204, + "topicSearchString": "datadog ios android" }, { "githubUrl": "https://github.com/SrBrahma/pagescrollview", @@ -66324,7 +65861,6 @@ "pagescrollview", "page", "scrollview", - "react-native", "scroll", "view", "list", @@ -66345,22 +65881,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "pagescrollview", "npm": { - "downloads": 34, - "weekDownloads": 6, + "downloads": 226, + "weekDownloads": 8, "size": 9015, "latestRelease": "2.2.0", "latestReleaseDate": "2022-06-18T19:50:20.985Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.85, - "topicSearchString": "pagescrollview page scrollview react-native scroll view list expo flatlist flex-grow flex fix typescript" + "popularity": -0.97, + "topicSearchString": "pagescrollview page scrollview scroll view list expo flatlist flex-grow flex fix typescript" }, { "githubUrl": "https://github.com/hudl/react-native-system-bars", @@ -66384,7 +65922,7 @@ "pushedAt": "2022-09-29T04:37:13Z", "forks": 3, "issues": 0, - "subscribers": 11, + "subscribers": 10, "stars": 40, "dependencies": 0 }, @@ -66394,7 +65932,6 @@ "registry": "https://registry.npmjs.org/", "description": "Control the visibility of Android's Status Bar and Navigation Bar", "topics": [ - "react-native", "android", "status-bar", "navigation-bar", @@ -66410,13 +65947,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-system-bars", "npm": { - "downloads": 4030, - "weekDownloads": 878, + "downloads": 1604, + "weekDownloads": 356, "size": 994253, "latestRelease": "0.4.0", "latestReleaseDate": "2022-08-08T11:51:19.011Z" @@ -66426,8 +65964,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.565, - "topicSearchString": "react-native android status-bar navigation-bar system-ui-visibility" + "popularity": -0.561, + "topicSearchString": "android status-bar navigation-bar system-ui-visibility" }, { "githubUrl": "https://github.com/AzizAK/react-native-detector", @@ -66453,7 +65991,7 @@ "forks": 33, "issues": 10, "subscribers": 3, - "stars": 267, + "stars": 274, "dependencies": 0 }, "name": "react-native-detector", @@ -66461,7 +65999,6 @@ "isPrivate": false, "description": "a screenshot detector for react native", "topics": [ - "react-native", "ios", "android", "screenshot", @@ -66477,13 +66014,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-detector", "npm": { - "downloads": 18959, - "weekDownloads": 3543, + "downloads": 16789, + "weekDownloads": 3895, "size": 1356124, "latestRelease": "0.2.3", "latestReleaseDate": "2022-08-20T20:03:53.011Z" @@ -66494,8 +66032,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, - "topicSearchString": "react-native ios android screenshot detector" + "popularity": -0.553, + "topicSearchString": "ios android screenshot detector" }, { "githubUrl": "https://github.com/yamankatby/react-native-material", @@ -66528,7 +66066,7 @@ "forks": 36, "issues": 19, "subscribers": 6, - "stars": 241, + "stars": 242, "dependencies": 3 }, "name": "@react-native-material/core", @@ -66537,7 +66075,6 @@ "registry": "https://registry.npmjs.org/", "description": "Modular and customizable Material Design UI components for React Native", "topics": [ - "react-native", "ios", "android", "material-design" @@ -66552,11 +66089,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 11163, - "weekDownloads": 1737, + "downloads": 13022, + "weekDownloads": 2664, "size": 775667, "latestRelease": "1.3.7", "latestReleaseDate": "2022-03-15T12:17:57.416Z" @@ -66567,8 +66105,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.618, - "topicSearchString": "react-native ios android material-design" + "popularity": -0.576, + "topicSearchString": "ios android material-design" }, { "githubUrl": "https://github.com/Kichiyaki/react-native-barcode-generator", @@ -66600,7 +66138,6 @@ "isPrivate": false, "description": "A React-Native component for generating barcodes.", "topics": [ - "react-native", "generator", "barcode", "generating-barcodes" @@ -66615,12 +66152,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 52185, - "weekDownloads": 9326, + "downloads": 47953, + "weekDownloads": 11644, "size": 8413, "latestRelease": "0.6.7", "latestReleaseDate": "2021-01-18T11:52:11.581Z" @@ -66630,8 +66168,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, - "topicSearchString": "react-native generator barcode generating-barcodes" + "popularity": -0.544, + "topicSearchString": "generator barcode generating-barcodes" }, { "githubUrl": "https://github.com/arabold/react-native-whirlwind", @@ -66658,7 +66196,7 @@ "pushedAt": "2022-06-21T13:52:31Z", "forks": 4, "issues": 5, - "subscribers": 4, + "subscribers": 3, "stars": 107, "dependencies": 0 }, @@ -66667,7 +66205,6 @@ "isPrivate": false, "description": "Whirlwind is a utility-first styling framework specifically designed for React Native. It is heavily inspired by Tachyons and Tailwind CSS and uses low-level building blocks for rapidly building custom designs.", "topics": [ - "react-native", "css", "styles", "stylesheet", @@ -66676,7 +66213,6 @@ "tachyon", "ios", "android", - "react", "reactnative", "tachyons", "styled-components" @@ -66691,13 +66227,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-whirlwind", "npm": { - "downloads": 249, - "weekDownloads": 25, + "downloads": 277, + "weekDownloads": 57, "size": 653996, "latestRelease": "0.3.0", "latestReleaseDate": "2022-06-21T13:50:04.561Z" @@ -66707,8 +66244,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.414, - "topicSearchString": "react-native css styles stylesheet tailwind tailwindcss tachyon ios android react reactnative tachyons styled-components" + "popularity": -1.325, + "topicSearchString": "css styles stylesheet tailwind tailwindcss tachyon ios android reactnative tachyons styled-components" }, { "githubUrl": "https://github.com/renrizzolo/react-native-sectioned-multi-select", @@ -66741,7 +66278,7 @@ "forks": 197, "issues": 0, "subscribers": 4, - "stars": 858, + "stars": 859, "dependencies": 2 }, "name": "react-native-sectioned-multi-select", @@ -66753,8 +66290,6 @@ "multiselect", "picker", "category", - "react", - "native", "reactnative" ], "license": { @@ -66767,13 +66302,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sectioned-multi-select", "npm": { - "downloads": 23437, - "weekDownloads": 3262, + "downloads": 23432, + "weekDownloads": 4650, "size": 3600424, "latestRelease": "0.10.0", "latestReleaseDate": "2023-05-11T03:17:04.505Z" @@ -66785,8 +66321,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.632, - "topicSearchString": "select multiselect picker category react native reactnative" + "popularity": -0.581, + "topicSearchString": "select multiselect picker category reactnative" }, { "githubUrl": "https://github.com/numandev1/react-native-compressor", @@ -66796,6 +66332,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/numandev1/react-native-compressor", @@ -66807,13 +66344,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-06-24T13:49:16Z", + "updatedAt": "2025-09-19T15:41:35Z", "createdAt": "2021-05-28T10:34:48Z", - "pushedAt": "2025-06-24T13:49:16Z", - "forks": 118, - "issues": 40, - "subscribers": 9, - "stars": 1182, + "pushedAt": "2025-09-19T15:41:35Z", + "forks": 123, + "issues": 42, + "subscribers": 10, + "stars": 1204, "dependencies": 0 }, "name": "react-native-compressor", @@ -66822,7 +66359,6 @@ "registry": "https://registry.npmjs.org/", "description": "🗜️Compress Image, Video, and Audio same like Whatsapp 🚀✨", "topics": [ - "react-native", "ios", "android", "audio", @@ -66860,24 +66396,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-compressor", "npm": { - "downloads": 275363, - "weekDownloads": 43856, - "size": 489364, - "latestRelease": "1.12.0", - "latestReleaseDate": "2025-06-24T13:49:14.603Z" + "downloads": 277270, + "weekDownloads": 64196, + "size": 488832, + "latestRelease": "1.13.0", + "latestReleaseDate": "2025-09-19T15:41:30.783Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.135, - "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" + "popularity": 0.197, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/garganurag893/react-native-phone-number-input", @@ -66905,9 +66442,9 @@ "createdAt": "2020-07-25T16:46:36Z", "pushedAt": "2021-05-05T16:29:08Z", "forks": 221, - "issues": 76, + "issues": 78, "subscribers": 2, - "stars": 385, + "stars": 384, "dependencies": 2 }, "name": "react-native-phone-number-input", @@ -66915,7 +66452,6 @@ "isPrivate": false, "description": "React Native component for phone number.", "topics": [ - "react-native", "phone", "telephone", "phone-input", @@ -66927,8 +66463,7 @@ "ios", "android", "phone-number", - "reactjs", - "react" + "reactjs" ], "license": { "key": "mit", @@ -66940,13 +66475,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-phone-number-input", "npm": { - "downloads": 169873, - "weekDownloads": 26697, + "downloads": 164884, + "weekDownloads": 36931, "size": 23991, "latestRelease": "2.1.0", "latestReleaseDate": "2021-05-05T16:29:14.899Z" @@ -66959,8 +66495,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, - "topicSearchString": "react-native phone telephone phone-input input tel input-text international component ios android phone-number reactjs react" + "popularity": -0.56, + "topicSearchString": "phone telephone phone-input input tel input-text international component ios android phone-number reactjs" }, { "githubUrl": "https://github.com/JungHsuan/react-native-gesture-flip-card", @@ -66998,7 +66534,6 @@ "isPrivate": false, "description": "A card flipping animation component using gesture for react-native.", "topics": [ - "react-native", "flip-card", "card-flip", "card", @@ -67018,12 +66553,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gesture-flip-card", "npm": { - "downloads": 779, - "weekDownloads": 72, + "downloads": 572, + "weekDownloads": 90, "size": 13684, "latestRelease": "1.1.0", "latestReleaseDate": "2024-11-10T08:16:49.484Z" @@ -67033,8 +66569,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.671, - "topicSearchString": "react-native flip-card card-flip card flip gesture gesture-flip flip-animation panresponder" + "popularity": -0.616, + "topicSearchString": "flip-card card-flip card flip gesture gesture-flip flip-animation panresponder" }, { "githubUrl": "https://github.com/gusparis/react-native-month-year-picker", @@ -67074,12 +66610,10 @@ "isPrivate": false, "description": "React Native Month Picker component for iOS & Android", "topics": [ - "react-native", "month-picker", "month-year-picker", "ios", "android", - "react", "java", "objective-c" ], @@ -67093,13 +66627,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-month-year-picker", "npm": { - "downloads": 35642, - "weekDownloads": 7327, + "downloads": 33988, + "weekDownloads": 6810, "size": 62414, "latestRelease": "1.9.0", "latestReleaseDate": "2022-11-28T21:48:45.934Z" @@ -67110,8 +66645,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.575, - "topicSearchString": "react-native month-picker month-year-picker ios android react java objective-c" + "popularity": -0.58, + "topicSearchString": "month-picker month-year-picker ios android java objective-c" }, { "githubUrl": "https://github.com/flyerhq/react-native-chat-ui", @@ -67139,10 +66674,10 @@ "updatedAt": "2023-09-09T16:54:40Z", "createdAt": "2020-06-06T00:34:29Z", "pushedAt": "2023-09-09T16:54:40Z", - "forks": 96, + "forks": 97, "issues": 16, - "subscribers": 7, - "stars": 395, + "subscribers": 6, + "stars": 399, "dependencies": 5 }, "name": "@flyerhq/react-native-chat-ui", @@ -67152,7 +66687,6 @@ "topics": [ "chat", "ui", - "react-native", "component", "ios", "android", @@ -67168,12 +66702,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 3159, - "weekDownloads": 501, + "downloads": 3437, + "weekDownloads": 810, "size": 202821, "latestRelease": "1.4.3", "latestReleaseDate": "2021-10-24T14:55:55.385Z" @@ -67184,8 +66719,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.615, - "topicSearchString": "chat ui react-native component ios android typescript" + "popularity": -0.55, + "topicSearchString": "chat ui component ios android typescript" }, { "githubUrl": "https://github.com/flyerhq/react-native-firebase-chat-core", @@ -67212,9 +66747,9 @@ "updatedAt": "2023-09-09T16:55:36Z", "createdAt": "2020-06-06T00:29:40Z", "pushedAt": "2023-09-09T16:55:36Z", - "forks": 21, + "forks": 22, "issues": 8, - "subscribers": 4, + "subscribers": 3, "stars": 84, "dependencies": 0 }, @@ -67225,7 +66760,6 @@ "topics": [ "chat", "firebase", - "react-native", "ios", "android", "typescript" @@ -67240,12 +66774,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 64, - "weekDownloads": 15, + "downloads": 211, + "weekDownloads": 11, "size": 61048, "latestRelease": "1.4.2", "latestReleaseDate": "2021-10-24T15:16:11.275Z" @@ -67255,8 +66790,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "chat firebase react-native ios android typescript" + "popularity": -1.455, + "topicSearchString": "chat firebase ios android typescript" }, { "githubUrl": "https://github.com/flyerhq/react-native-link-preview", @@ -67284,9 +66819,9 @@ "updatedAt": "2023-09-09T16:56:38Z", "createdAt": "2020-07-19T16:43:16Z", "pushedAt": "2023-09-09T16:56:38Z", - "forks": 33, + "forks": 34, "issues": 6, - "subscribers": 6, + "subscribers": 5, "stars": 131, "dependencies": 1 }, @@ -67298,8 +66833,7 @@ "link", "url", "preview", - "react-component", - "react-native", + "component", "ios", "android", "typescript" @@ -67314,12 +66848,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 19941, - "weekDownloads": 3723, + "downloads": 19043, + "weekDownloads": 3881, "size": 38070, "latestRelease": "1.6.0", "latestReleaseDate": "2022-01-27T21:33:26.271Z" @@ -67330,8 +66865,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, - "topicSearchString": "link url preview react-component react-native ios android typescript" + "popularity": -0.577, + "topicSearchString": "link url preview component ios android typescript" }, { "githubUrl": "https://github.com/flyerhq/react-native-keyboard-accessory-view", @@ -67361,8 +66896,8 @@ "pushedAt": "2022-05-07T11:47:17Z", "forks": 25, "issues": 0, - "subscribers": 7, - "stars": 317, + "subscribers": 6, + "stars": 316, "dependencies": 0 }, "name": "@flyerhq/react-native-keyboard-accessory-view", @@ -67373,9 +66908,8 @@ "keyboard-accessory", "keyboard", "sticky", - "react-component", + "component", "interactive", - "react-native", "ios", "android", "typescript" @@ -67390,12 +66924,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 5264, - "weekDownloads": 856, + "downloads": 5402, + "weekDownloads": 1183, "size": 27094, "latestRelease": "2.4.0", "latestReleaseDate": "2022-01-27T20:40:42.829Z" @@ -67406,8 +66941,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, - "topicSearchString": "keyboard-accessory keyboard sticky react-component interactive react-native ios android typescript" + "popularity": -0.564, + "topicSearchString": "keyboard-accessory keyboard sticky component interactive ios android typescript" }, { "githubUrl": "https://github.com/flyerhq/react-native-android-uri-path", @@ -67431,9 +66966,9 @@ "updatedAt": "2022-05-07T12:15:09Z", "createdAt": "2020-09-16T22:48:23Z", "pushedAt": "2022-05-07T12:15:09Z", - "forks": 3, + "forks": 4, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 31, "dependencies": 0 }, @@ -67443,7 +66978,6 @@ "description": "Get an absolute path to a file retrieved by Android's Intent.ACTION_GET_CONTENT that returns a content URI.", "topics": [ "android", - "react-native", "kotlin", "absolute-path", "intent", @@ -67459,12 +66993,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 4226, - "weekDownloads": 631, + "downloads": 4654, + "weekDownloads": 1059, "size": 7966, "latestRelease": "2.3.0", "latestReleaseDate": "2022-01-26T21:26:02.744Z" @@ -67474,8 +67009,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.623, - "topicSearchString": "android react-native kotlin absolute-path intent resolver" + "popularity": -0.557, + "topicSearchString": "android kotlin absolute-path intent resolver" }, { "githubUrl": "https://github.com/NitrogenZLab/react-native-multiple-image-picker", @@ -67500,10 +67035,10 @@ "updatedAt": "2025-08-02T14:45:18Z", "createdAt": "2021-02-21T08:34:18Z", "pushedAt": "2025-08-02T14:45:18Z", - "forks": 127, - "issues": 24, - "subscribers": 9, - "stars": 677, + "forks": 131, + "issues": 28, + "subscribers": 8, + "stars": 688, "dependencies": 0 }, "name": "@baronha/react-native-multiple-image-picker", @@ -67512,11 +67047,10 @@ "registry": "https://registry.npmjs.org/", "description": "🏞 react-native-multiple-image-picker enables applications to pick images and videos from multiple smart albums in iOS/Android", "topics": [ - "react-native", "ios", "android", "image-picker", - "native-module", + "module", "picker", "swift", "video", @@ -67533,23 +67067,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npm": { - "downloads": 5326, - "weekDownloads": 428, + "downloads": 4102, + "weekDownloads": 809, "size": 508779, "latestRelease": "2.2.4", "latestReleaseDate": "2025-08-02T14:21:39.861Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.068, - "topicSearchString": "react-native ios android image-picker native-module picker swift video multi-selector photo" + "popularity": 0.168, + "topicSearchString": "ios android image-picker module picker swift video multi-selector photo" }, { "githubUrl": "https://github.com/th3rdwave/web-image/tree/main/packages/web-image", @@ -67580,8 +67115,6 @@ "isPrivate": false, "description": "Modern image component for React Native Web", "topics": [ - "react", - "react-native", "web", "web", "image" @@ -67596,11 +67129,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4802, - "weekDownloads": 1208, + "downloads": 5005, + "weekDownloads": 1130, "size": 65912, "latestRelease": "0.3.3", "latestReleaseDate": "2024-09-11T15:43:41.070Z" @@ -67610,8 +67144,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.214, - "topicSearchString": "react react-native web web image" + "popularity": 0.192, + "topicSearchString": "web web image" }, { "githubUrl": "https://github.com/tokkozhin/react-native-neomorph-shadows", @@ -67637,10 +67171,10 @@ "updatedAt": "2022-07-15T12:09:08Z", "createdAt": "2020-02-06T10:44:39Z", "pushedAt": "2022-07-15T12:09:08Z", - "forks": 91, + "forks": 92, "issues": 26, "subscribers": 15, - "stars": 823, + "stars": 827, "dependencies": 2 }, "name": "react-native-neomorph-shadows", @@ -67648,10 +67182,7 @@ "isPrivate": false, "description": "Shadows and neumorphism/neomorphism for iOS & Android (like iOS).", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -67679,13 +67210,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-neomorph-shadows", "npm": { - "downloads": 3282, - "weekDownloads": 493, + "downloads": 2896, + "weekDownloads": 519, "size": 33081, "latestRelease": "1.1.2", "latestReleaseDate": "2020-06-17T06:31:25.630Z" @@ -67697,8 +67229,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, - "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" + "popularity": -0.598, + "topicSearchString": "component mobile ios android ui neomorph neomorphism neumorphism skeuomorphic skeuomorphism shadowbox shadow shadow-view shadowview neomorphism-view inner-shadow shadow-svg" }, { "githubUrl": "https://github.com/yhostc/react-native-idata-scanner", @@ -67718,7 +67250,7 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2021-09-28T09:33:44Z", "createdAt": "2021-09-26T01:29:30Z", "pushedAt": "2021-09-28T09:33:44Z", @@ -67732,9 +67264,7 @@ "fullName": "isnolan/react-native-idata-scanner", "isPrivate": false, "description": " A PDA Barcode/Qrcode scanner component for React Native", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -67745,13 +67275,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-idata-scanner", "npm": { - "downloads": 9, - "weekDownloads": 3, + "downloads": 32, + "weekDownloads": 6, "size": 383361, "latestRelease": "1.0.0", "latestReleaseDate": "2021-09-28T06:23:00.432Z" @@ -67761,8 +67292,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.45, - "topicSearchString": "react-native" + "popularity": -1.579, + "topicSearchString": "" }, { "githubUrl": "https://github.com/Tintef/react-native-headphone-detection", @@ -67793,7 +67324,6 @@ "isPrivate": false, "description": "React Native headphone detection, both audio jack and bluetooth devices!", "topics": [ - "react-native", "headphones", "audio-jack", "bluetooth" @@ -67808,13 +67338,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-headphone-detection", "npm": { - "downloads": 6131, - "weekDownloads": 866, + "downloads": 7272, + "weekDownloads": 1738, "size": 31225, "latestRelease": "1.3.0", "latestReleaseDate": "2020-10-01T11:22:17.657Z" @@ -67824,8 +67355,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.63, - "topicSearchString": "react-native headphones audio-jack bluetooth" + "popularity": -0.547, + "topicSearchString": "headphones audio-jack bluetooth" }, { "githubUrl": "https://github.com/wuxudong/react-native-charts-wrapper", @@ -67850,9 +67381,9 @@ "createdAt": "2017-03-03T07:58:57Z", "pushedAt": "2024-02-05T04:47:54Z", "forks": 617, - "issues": 210, - "subscribers": 51, - "stars": 2490, + "issues": 211, + "subscribers": 50, + "stars": 2493, "dependencies": 2 }, "name": "react-native-charts-wrapper", @@ -67860,7 +67391,6 @@ "isPrivate": false, "description": "a react native charts wrapper (support android & iOS)", "topics": [ - "react-native", "chart", "android", "mpandroidchart", @@ -67877,12 +67407,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-charts-wrapper", "npm": { - "downloads": 30054, - "weekDownloads": 4943, + "downloads": 26739, + "weekDownloads": 5846, "size": 359518, "latestRelease": "0.6.0", "latestReleaseDate": "2023-10-28T07:10:38.440Z" @@ -67895,8 +67426,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.14, - "topicSearchString": "react-native chart android mpandroidchart ios charts" + "popularity": 0.186, + "topicSearchString": "chart android mpandroidchart ios charts" }, { "githubUrl": "https://github.com/rishabhbhatia/react-native-awesome-alerts", @@ -67921,10 +67452,10 @@ "updatedAt": "2022-06-02T00:01:04Z", "createdAt": "2017-09-09T09:29:32Z", "pushedAt": "2022-06-02T00:01:04Z", - "forks": 72, - "issues": 5, - "subscribers": 7, - "stars": 531, + "forks": 71, + "issues": 7, + "subscribers": 8, + "stars": 532, "dependencies": 1 }, "name": "react-native-awesome-alerts", @@ -67932,7 +67463,6 @@ "isPrivate": false, "description": "Awesome alerts for React Native, works with iOS and Android.", "topics": [ - "react-native", "alerts", "dialog", "ios", @@ -67950,13 +67480,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-awesome-alerts", "npm": { - "downloads": 12583, - "weekDownloads": 2015, + "downloads": 11807, + "weekDownloads": 2373, "size": 24339, "latestRelease": "2.0.0", "latestReleaseDate": "2022-06-01T20:58:31.959Z" @@ -67967,8 +67498,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.614, - "topicSearchString": "react-native alerts dialog ios android alert popup" + "popularity": -0.579, + "topicSearchString": "alerts dialog ios android alert popup" }, { "githubUrl": "https://github.com/esthor/react-native-swipeable-list", @@ -68000,8 +67531,8 @@ "pushedAt": "2025-09-01T01:04:37Z", "forks": 32, "issues": 2, - "subscribers": 5, - "stars": 708, + "subscribers": 4, + "stars": 717, "dependencies": 0 }, "name": "react-native-swipeable-list", @@ -68009,7 +67540,6 @@ "isPrivate": false, "description": "A zero-dependency Swipeable FlatList for React-Native, with Gestures, Quick Actions, and Animations. Simple as that.", "topics": [ - "react-native", "flatlist", "swipeable", "ux", @@ -68017,7 +67547,6 @@ "gesture", "animations", "performant", - "react", "android", "component", "ios", @@ -68033,24 +67562,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-swipeable-list", "npm": { - "downloads": 28442, - "weekDownloads": 5192, + "downloads": 25266, + "weekDownloads": 6378, "size": 21793, "latestRelease": "0.1.2", "latestReleaseDate": "2022-03-27T15:12:24.385Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.155, - "topicSearchString": "react-native flatlist swipeable ux list gesture animations performant react android component ios web" + "popularity": 0.215, + "topicSearchString": "flatlist swipeable ux list gesture animations performant android component ios web" }, { "githubUrl": "https://github.com/mrousavy/react-native-jsi-contacts", @@ -68074,7 +67602,7 @@ "pushedAt": "2021-10-15T18:52:54Z", "forks": 4, "issues": 2, - "subscribers": 4, + "subscribers": 3, "stars": 140, "dependencies": 0 }, @@ -68084,7 +67612,6 @@ "registry": "https://registry.npmjs.org/", "description": "A contacts library for React Native using JSI", "topics": [ - "react-native", "ios", "android", "jsi", @@ -68101,13 +67628,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-jsi-contacts", "npm": { - "downloads": 14, - "weekDownloads": 1, + "downloads": 8, + "weekDownloads": 0, "size": 95745, "latestRelease": "0.2.3", "latestReleaseDate": "2021-10-14T10:55:22.443Z" @@ -68117,8 +67645,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.433, - "topicSearchString": "react-native ios android jsi contacts library" + "popularity": -1, + "topicSearchString": "ios android jsi contacts library" }, { "githubUrl": "https://github.com/RobertSasak/react-native-openalpr", @@ -68148,7 +67676,7 @@ "forks": 168, "issues": 7, "subscribers": 21, - "stars": 506, + "stars": 507, "dependencies": 0 }, "name": "react-native-openalpr", @@ -68156,7 +67684,6 @@ "isPrivate": false, "description": "An open-source React Native automatic license plate recognition package for OpenALPR", "topics": [ - "react-native", "openalpr", "camera", "camera-component", @@ -68172,13 +67699,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-openalpr", "npm": { - "downloads": 960, - "weekDownloads": 122, + "downloads": 1591, + "weekDownloads": 124, "size": 480189297, "latestRelease": "2.2.0", "latestReleaseDate": "2021-05-04T09:55:40.405Z" @@ -68190,8 +67718,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.392, - "topicSearchString": "react-native openalpr camera camera-component opencv" + "popularity": -0.684, + "topicSearchString": "openalpr camera camera-component opencv" }, { "githubUrl": "https://github.com/alex-melnyk/react-native-multibar", @@ -68229,8 +67757,6 @@ "isPrivate": false, "description": "React Native MultiBar", "topics": [ - "react", - "react-native", "navigation", "bar", "bottom-bar", @@ -68248,13 +67774,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-multibar", "npm": { - "downloads": 58, - "weekDownloads": 1, + "downloads": 181, + "weekDownloads": 14, "size": 2551676, "latestRelease": "1.1.5", "latestReleaseDate": "2021-03-17T09:37:35.348Z" @@ -68265,8 +67792,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.485, - "topicSearchString": "react react-native navigation bar bottom-bar tab-bar multi-bar tabbar" + "popularity": -1.433, + "topicSearchString": "navigation bar bottom-bar tab-bar multi-bar tabbar" }, { "githubUrl": "https://github.com/pettiboy/react-native-ui-buttons", @@ -68305,10 +67832,7 @@ "isPrivate": false, "description": "Functional, simple and customizable UI buttons for react native. Also contains loading functionality and automatically changes color for dual tone buttons. TypeScript support.", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -68330,13 +67854,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ui-buttons", "npm": { - "downloads": 16, - "weekDownloads": 2, + "downloads": 25, + "weekDownloads": 3, "size": 15236, "latestRelease": "2.1.1", "latestReleaseDate": "2021-10-11T14:34:00.403Z" @@ -68346,8 +67871,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.617, - "topicSearchString": "react-native react-component component react mobile ios android ui button dual-tone-button buttons loading-support dual-tone-buttons loading-indicator" + "popularity": -1.63, + "topicSearchString": "component mobile ios android ui button dual-tone-button buttons loading-support dual-tone-buttons loading-indicator" }, { "githubUrl": "https://github.com/rumax/react-native-PDFView", @@ -68375,10 +67900,10 @@ "updatedAt": "2022-08-15T18:03:18Z", "createdAt": "2018-03-07T21:42:22Z", "pushedAt": "2022-08-15T18:03:18Z", - "forks": 90, - "issues": 11, - "subscribers": 6, - "stars": 304, + "forks": 91, + "issues": 12, + "subscribers": 5, + "stars": 306, "dependencies": 0 }, "name": "react-native-view-pdf", @@ -68386,9 +67911,8 @@ "isPrivate": false, "description": "📚 PDF viewer for React Native", "topics": [ - "react-component-pdf-viewer-view-android-ios-pdf", - "react-native", - "react-component", + "component-pdf-viewer-view-android-ios-pdf", + "component", "pdf", "pdf-viewer", "javascript", @@ -68407,12 +67931,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 37839, - "weekDownloads": 6615, + "downloads": 29338, + "weekDownloads": 7162, "size": 76622, "latestRelease": "0.14.0", "latestReleaseDate": "2022-08-15T18:15:22.698Z" @@ -68423,8 +67948,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, - "topicSearchString": "react-component-pdf-viewer-view-android-ios-pdf react-native react-component pdf pdf-viewer javascript android ios hacktoberfest2020 hacktoberfest" + "popularity": -0.542, + "topicSearchString": "component-pdf-viewer-view-android-ios-pdf component pdf pdf-viewer javascript android ios hacktoberfest2020 hacktoberfest" }, { "githubUrl": "https://github.com/rumax/react-native-PixelsCatcher", @@ -68451,7 +67976,7 @@ "pushedAt": "2024-02-04T20:19:17Z", "forks": 10, "issues": 0, - "subscribers": 4, + "subscribers": 3, "stars": 116, "dependencies": 4 }, @@ -68461,7 +67986,6 @@ "description": ":eyes: Library for UI snapshot testing of React Native", "topics": [ "view-android-ios-ui-screenshot-snapshot-testing", - "react-native", "testing", "ui", "view", @@ -68477,11 +68001,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1872, - "weekDownloads": 245, + "downloads": 2251, + "weekDownloads": 577, "size": 141717, "latestRelease": "0.13.1", "latestReleaseDate": "2024-02-04T20:48:08.763Z" @@ -68491,8 +68016,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.111, - "topicSearchString": "view-android-ios-ui-screenshot-snapshot-testing react-native testing ui view screenshot" + "popularity": 0.218, + "topicSearchString": "view-android-ios-ui-screenshot-snapshot-testing testing ui view screenshot" }, { "githubUrl": "https://github.com/software-mansion-labs/react-freeze", @@ -68516,8 +68041,8 @@ "pushedAt": "2024-02-28T22:44:26Z", "forks": 33, "issues": 17, - "subscribers": 16, - "stars": 1623, + "subscribers": 15, + "stars": 1625, "dependencies": 0 }, "name": "react-freeze", @@ -68525,7 +68050,6 @@ "isPrivate": false, "description": "Prevent React component subtrees from rendering.", "topics": [ - "react", "freeze" ], "license": { @@ -68538,12 +68062,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-freeze", "npm": { - "downloads": 6923098, - "weekDownloads": 1154149, + "downloads": 6857580, + "weekDownloads": 1576941, "size": 17179, "latestRelease": "1.0.4", "latestReleaseDate": "2024-02-28T22:44:42.518Z" @@ -68556,8 +68081,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "react freeze" + "popularity": 0.195, + "topicSearchString": "freeze" }, { "githubUrl": "https://github.com/shirakaba/react-native-native-runtime", @@ -68581,8 +68106,8 @@ "pushedAt": "2025-08-09T10:12:41Z", "forks": 3, "issues": 1, - "subscribers": 7, - "stars": 250, + "subscribers": 6, + "stars": 252, "dependencies": 2 }, "name": "react-native-native-runtime", @@ -68591,7 +68116,6 @@ "registry": "https://registry.npmjs.org/", "description": "The Objective-C runtime exposed directly to React Native via JSI (Java runtime may follow)!", "topics": [ - "react-native", "ios", "android" ], @@ -68605,11 +68129,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-native-runtime", "npm": { - "downloads": 1, + "downloads": 3, "weekDownloads": 0, "size": 109022, "latestRelease": "0.2.0", @@ -68621,7 +68146,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/agoldis/react-native-mlkit-ocr", @@ -68647,10 +68172,10 @@ "updatedAt": "2023-09-30T22:39:10Z", "createdAt": "2020-12-05T10:04:27Z", "pushedAt": "2023-09-30T22:39:10Z", - "forks": 43, + "forks": 44, "issues": 16, - "subscribers": 6, - "stars": 207, + "subscribers": 5, + "stars": 210, "dependencies": 0 }, "name": "react-native-mlkit-ocr", @@ -68661,7 +68186,6 @@ "mlkit", "ocr", "text-recognition", - "react-native", "ios", "android" ], @@ -68675,24 +68199,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-mlkit-ocr", "npm": { - "downloads": 14735, - "weekDownloads": 2967, + "downloads": 15023, + "weekDownloads": 3677, "size": 51794, "latestRelease": "0.3.0", "latestReleaseDate": "2023-04-13T03:57:44.266Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.171, - "topicSearchString": "mlkit ocr text-recognition react-native ios android" + "popularity": -0.542, + "topicSearchString": "mlkit ocr text-recognition ios android" }, { "githubUrl": "https://github.com/miblanchard/react-native-slider", @@ -68718,10 +68243,10 @@ "updatedAt": "2024-05-03T12:18:49Z", "createdAt": "2020-05-04T22:25:22Z", "pushedAt": "2024-05-03T12:18:49Z", - "forks": 75, + "forks": 77, "issues": 45, "subscribers": 3, - "stars": 461, + "stars": 467, "dependencies": 0 }, "name": "@miblanchard/react-native-slider", @@ -68729,8 +68254,7 @@ "isPrivate": false, "description": "A pure JavaScript component for react-native and react-native-web", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "slider", @@ -68747,11 +68271,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 300859, - "weekDownloads": 53759, + "downloads": 301123, + "weekDownloads": 72871, "size": 101483, "latestRelease": "2.6.0", "latestReleaseDate": "2024-03-24T23:06:05.847Z" @@ -68762,8 +68287,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.152, - "topicSearchString": "react-component react-native ios android slider javascript web" + "popularity": 0.206, + "topicSearchString": "component ios android slider javascript web" }, { "githubUrl": "https://github.com/popshoplive/react-native-shareplay", @@ -68797,7 +68322,6 @@ "registry": "https://registry.npmjs.org/", "description": "iOS 15 share play API in RN", "topics": [ - "react-native", "ios" ], "license": { @@ -68810,13 +68334,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-shareplay", "npm": { - "downloads": 142, - "weekDownloads": 32, + "downloads": 109, + "weekDownloads": 15, "size": 33600, "latestRelease": "0.9.0", "latestReleaseDate": "2021-11-10T01:25:16.318Z" @@ -68826,8 +68351,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.306, - "topicSearchString": "react-native ios" + "popularity": -1.38, + "topicSearchString": "ios" }, { "githubUrl": "https://github.com/Doko-Demo-Doa/react-native-shake", @@ -68844,13 +68369,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-06-29T03:52:24Z", + "updatedAt": "2025-10-15T09:19:25Z", "createdAt": "2017-06-27T08:54:42Z", - "pushedAt": "2025-06-29T03:52:24Z", - "forks": 67, + "pushedAt": "2025-10-15T09:19:25Z", + "forks": 68, "issues": 6, "subscribers": 2, - "stars": 292, + "stars": 295, "dependencies": 0 }, "name": "react-native-shake", @@ -68859,7 +68384,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native shake event detector", "topics": [ - "react-native", "ios", "android" ], @@ -68873,23 +68397,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-shake", "npm": { - "downloads": 98799, - "weekDownloads": 16043, - "size": 47664, - "latestRelease": "6.7.8", - "latestReleaseDate": "2025-06-29T03:53:08.758Z" + "downloads": 97015, + "weekDownloads": 24233, + "size": 47705, + "latestRelease": "6.8.1", + "latestReleaseDate": "2025-10-15T09:21:33.894Z" }, - "score": 51, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.138, - "topicSearchString": "react-native ios android" + "popularity": 0.212, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/flowkey/react-native-home-indicator", @@ -68911,8 +68437,8 @@ "pushedAt": "2022-09-20T12:50:41Z", "forks": 22, "issues": 5, - "subscribers": 11, - "stars": 80, + "subscribers": 10, + "stars": 81, "dependencies": 0 }, "name": "react-native-home-indicator", @@ -68920,7 +68446,6 @@ "isPrivate": false, "description": "A component for react-native", "topics": [ - "react-native", "home-indicator", "prefershomeindicatorautohidden", "iphonex", @@ -68936,13 +68461,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-home-indicator", "npm": { - "downloads": 2091, - "weekDownloads": 471, + "downloads": 2496, + "weekDownloads": 615, "size": 17161, "latestRelease": "0.2.10", "latestReleaseDate": "2022-09-20T12:51:14.777Z" @@ -68952,14 +68478,15 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.559, - "topicSearchString": "react-native home-indicator prefershomeindicatorautohidden iphonex safe-area" + "popularity": -0.54, + "topicSearchString": "home-indicator prefershomeindicatorautohidden iphonex safe-area" }, { "githubUrl": "https://github.com/flexible-agency/react-native-email-link", "ios": true, "android": true, "expoGo": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/tschoffelen/react-native-email-link", @@ -68977,7 +68504,7 @@ "forks": 73, "issues": 0, "subscribers": 3, - "stars": 432, + "stars": 433, "dependencies": 0 }, "name": "react-native-email-link", @@ -68985,12 +68512,10 @@ "isPrivate": false, "description": "📭 Open an email client from React Native (for 'magic link' type functionality).", "topics": [ - "react-native", - "react-component", + "component", "email", "link", "linking", - "react", "ios", "android" ], @@ -69004,12 +68529,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-email-link", "npm": { - "downloads": 336707, - "weekDownloads": 54846, + "downloads": 263569, + "weekDownloads": 61310, "size": 43434, "latestRelease": "1.16.1", "latestReleaseDate": "2024-06-29T13:32:37.003Z" @@ -69020,8 +68546,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.138, - "topicSearchString": "react-native react-component email link linking react ios android" + "popularity": 0.198, + "topicSearchString": "component email link linking ios android" }, { "githubUrl": "https://github.com/hoaphantn7604/react-native-element-dropdown", @@ -69049,10 +68575,10 @@ "updatedAt": "2025-01-11T03:16:41Z", "createdAt": "2021-06-22T18:50:00Z", "pushedAt": "2025-01-11T03:16:41Z", - "forks": 191, + "forks": 193, "issues": 138, "subscribers": 3, - "stars": 1253, + "stars": 1270, "dependencies": 1 }, "name": "react-native-element-dropdown", @@ -69061,7 +68587,6 @@ "registry": "https://registry.npmjs.org/", "description": "A react-native dropdown component easy to customize for both iOS and Android. ", "topics": [ - "react-native", "elements", "components", "material", @@ -69084,26 +68609,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-element-dropdown", "npm": { - "downloads": 491966, - "weekDownloads": 81155, + "downloads": 428953, + "weekDownloads": 96494, "size": 358790, "latestRelease": "2.12.4", "latestReleaseDate": "2025-01-11T03:16:34.351Z" }, - "score": 46, + "score": 49, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.14, - "topicSearchString": "react-native elements components material dropdown lazy-loading load-more menu multiselect picker select select-country" + "popularity": 0.191, + "topicSearchString": "elements components material dropdown lazy-loading load-more menu multiselect picker select select-country" }, { "githubUrl": "https://github.com/gorhom/react-native-paper-onboarding", @@ -69130,10 +68655,10 @@ "updatedAt": "2021-11-03T14:49:11Z", "createdAt": "2020-02-29T17:51:41Z", "pushedAt": "2021-11-03T14:49:11Z", - "forks": 49, + "forks": 50, "issues": 7, - "subscribers": 15, - "stars": 894, + "subscribers": 14, + "stars": 899, "dependencies": 3 }, "name": "@gorhom/paper-onboarding", @@ -69144,7 +68669,6 @@ "onboarding", "paper", "paper-onboarding", - "react-native", "ios", "android", "reanimated", @@ -69163,12 +68687,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 105, - "weekDownloads": 44, + "downloads": 413, + "weekDownloads": 31, "size": 293297, "latestRelease": "1.2.0", "latestReleaseDate": "2021-07-28T20:26:31.990Z" @@ -69180,8 +68705,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.133, - "topicSearchString": "onboarding paper paper-onboarding react-native ios android reanimated slider material ui redash" + "popularity": -1.436, + "topicSearchString": "onboarding paper paper-onboarding ios android reanimated slider material ui redash" }, { "githubUrl": "https://github.com/MobileReality/react-native-select-pro/tree/master/packages/react-native-select-pro", @@ -69209,7 +68734,7 @@ "forks": 18, "issues": 3, "subscribers": 9, - "stars": 323, + "stars": 324, "dependencies": 2 }, "name": "@mobile-reality/react-native-select-pro", @@ -69218,8 +68743,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native dropdown (select) component developed by Mobile Reality", "topics": [ - "react-native", - "react", "ios", "android", "select", @@ -69238,11 +68761,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1169, - "weekDownloads": 296, + "downloads": 1457, + "weekDownloads": 257, "size": 684037, "latestRelease": "2.3.0", "latestReleaseDate": "2024-10-18T13:59:10.773Z" @@ -69253,8 +68777,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.215, - "topicSearchString": "react-native react ios android select picker dropdown menu component" + "popularity": 0.15, + "topicSearchString": "ios android select picker dropdown menu component" }, { "githubUrl": "https://github.com/craftzdog/react-native-quick-base64", @@ -69275,13 +68799,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-01T06:58:35Z", + "updatedAt": "2025-09-01T07:12:19Z", "createdAt": "2021-02-05T05:28:56Z", - "pushedAt": "2025-09-01T06:58:35Z", - "forks": 26, - "issues": 10, - "subscribers": 3, - "stars": 423, + "pushedAt": "2025-09-01T07:12:19Z", + "forks": 27, + "issues": 9, + "subscribers": 2, + "stars": 426, "dependencies": 0 }, "name": "react-native-quick-base64", @@ -69290,7 +68814,6 @@ "registry": "https://registry.npmjs.org/", "description": "A fast base64 module for React Native", "topics": [ - "react-native", "ios", "android" ], @@ -69304,25 +68827,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-quick-base64", "npm": { - "downloads": 683452, - "weekDownloads": 100890, + "downloads": 691176, + "weekDownloads": 164458, "size": 42766, "latestRelease": "2.2.2", "latestReleaseDate": "2025-09-01T07:12:22.541Z" }, - "score": 73, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.125, - "topicSearchString": "react-native ios android" + "popularity": 0.202, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/getbouncer/react-native-cardscan", @@ -69351,7 +68873,7 @@ "forks": 13, "issues": 4, "subscribers": 4, - "stars": 64, + "stars": 65, "dependencies": 0 }, "name": "react-native-cardscan", @@ -69359,7 +68881,6 @@ "isPrivate": false, "description": "This library provides payment card scanning functionality for your react-native app.", "topics": [ - "react-native", "card", "scan", "cardscan", @@ -69378,13 +68899,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-cardscan", "npm": { - "downloads": 391, - "weekDownloads": 77, + "downloads": 822, + "weekDownloads": 102, "size": 5246634, "latestRelease": "2.0.0", "latestReleaseDate": "2021-10-04T22:29:31.113Z" @@ -69395,8 +68917,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.333, - "topicSearchString": "react-native card scan cardscan payment mobile android ios" + "popularity": -1.394, + "topicSearchString": "card scan cardscan payment mobile android ios" }, { "githubUrl": "https://github.com/rodgomesc/vision-camera-code-scanner", @@ -69420,10 +68942,10 @@ "updatedAt": "2023-10-23T19:37:53Z", "createdAt": "2021-08-16T15:05:05Z", "pushedAt": "2023-10-23T19:37:53Z", - "forks": 144, + "forks": 143, "issues": 86, "subscribers": 11, - "stars": 337, + "stars": 339, "dependencies": 0 }, "name": "vision-camera-code-scanner", @@ -69432,7 +68954,6 @@ "registry": "https://registry.npmjs.org/", "description": "VisionCamera Frame Processor Plugin to read barcodes using MLKit Vision QrCode Scanning", "topics": [ - "react-native", "ios", "android" ], @@ -69446,13 +68967,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "vision-camera-code-scanner", "npm": { - "downloads": 26925, - "weekDownloads": 4798, + "downloads": 27661, + "weekDownloads": 5806, "size": 160020, "latestRelease": "0.2.0", "latestReleaseDate": "2022-04-01T12:40:01.176Z" @@ -69464,8 +68986,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, - "topicSearchString": "react-native ios android" + "popularity": -0.572, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/react-native-twitter-signin/twitter-signin", @@ -69500,9 +69022,6 @@ "isPrivate": false, "description": "react-native twitter signin using TwitterKit5", "topics": [ - "react", - "react-native", - "native", "twitter", "signin", "social-signin", @@ -69519,11 +69038,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 62, - "weekDownloads": 8, + "downloads": 410, + "weekDownloads": 21, "size": 40178415, "latestRelease": "1.2.0", "latestReleaseDate": "2021-10-09T07:58:57.328Z" @@ -69533,8 +69053,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.636, - "topicSearchString": "react react-native native twitter signin social-signin authentication hacktoberfest" + "popularity": -0.706, + "topicSearchString": "twitter signin social-signin authentication hacktoberfest" }, { "githubUrl": "https://github.com/aeirola/react-native-svg-app-icon", @@ -69557,8 +69077,8 @@ "pushedAt": "2022-04-19T18:01:51Z", "forks": 15, "issues": 12, - "subscribers": 5, - "stars": 173, + "subscribers": 4, + "stars": 171, "dependencies": 4 }, "name": "react-native-svg-app-icon", @@ -69566,7 +69086,6 @@ "isPrivate": false, "description": "Generate all app icons for you React Native apps from a single SVG file", "topics": [ - "react-native", "svg", "app-icon" ], @@ -69580,13 +69099,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-svg-app-icon", "npm": { - "downloads": 3001, - "weekDownloads": 406, + "downloads": 2544, + "weekDownloads": 651, "size": 50938, "latestRelease": "0.6.1", "latestReleaseDate": "2022-04-19T18:05:44.993Z" @@ -69596,8 +69116,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.635, - "topicSearchString": "react-native svg app-icon" + "popularity": -0.532, + "topicSearchString": "svg app-icon" }, { "githubUrl": "https://github.com/kanzitelli/rn-bounceable", @@ -69632,8 +69152,6 @@ "isPrivate": false, "description": "🏀 Native bounceable effect for any React Native component. Built with Reanimated 2. Compatible with Expo (Web).", "topics": [ - "react", - "react-native", "expo", "bounceable", "reanimated", @@ -69651,13 +69169,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-bounceable", "npm": { - "downloads": 1280, - "weekDownloads": 123, + "downloads": 1082, + "weekDownloads": 214, "size": 9110, "latestRelease": "1.2.0", "latestReleaseDate": "2022-08-29T13:45:05.747Z" @@ -69667,8 +69186,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.668, - "topicSearchString": "react react-native expo bounceable reanimated bounceable-component rn-bounceable web" + "popularity": -0.581, + "topicSearchString": "expo bounceable reanimated bounceable-component rn-bounceable web" }, { "githubUrl": "https://github.com/craftzdog/react-native-checkbox-reanimated", @@ -69696,8 +69215,8 @@ "pushedAt": "2025-04-04T00:29:12Z", "forks": 29, "issues": 5, - "subscribers": 7, - "stars": 181, + "subscribers": 6, + "stars": 182, "dependencies": 0 }, "name": "react-native-checkbox-reanimated", @@ -69706,7 +69225,6 @@ "registry": "https://registry.npmjs.org/", "description": "Animated checkbox built with Reanimated v2", "topics": [ - "react-native", "ios", "android", "ui" @@ -69721,23 +69239,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-checkbox-reanimated", "npm": { - "downloads": 6327, - "weekDownloads": 1095, + "downloads": 8603, + "weekDownloads": 1845, "size": 39288, "latestRelease": "0.1.2", "latestReleaseDate": "2025-04-04T00:29:14.276Z" }, - "score": 51, + "score": 41, "matchingScoreModifiers": [ "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.147, - "topicSearchString": "react-native ios android ui" + "popularity": 0.182, + "topicSearchString": "ios android ui" }, { "githubUrl": "https://github.com/zoontek/react-native-edge-to-edge", @@ -69746,6 +69266,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/zoontek/react-native-edge-to-edge", @@ -69762,8 +69283,8 @@ "pushedAt": "2025-09-08T13:10:04Z", "forks": 28, "issues": 3, - "subscribers": 7, - "stars": 943, + "subscribers": 6, + "stars": 971, "dependencies": 0 }, "name": "react-native-edge-to-edge", @@ -69771,8 +69292,6 @@ "isPrivate": false, "description": "Effortlessly enable edge-to-edge display in React Native (formerly known as react-native-bars).", "topics": [ - "react", - "react-native", "edge-to-edge", "status-bar", "navigation-bar", @@ -69789,26 +69308,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-edge-to-edge", "npm": { - "downloads": 4181281, - "weekDownloads": 739896, + "downloads": 2901378, + "weekDownloads": 667332, "size": 120168, "latestRelease": "1.7.0", "latestReleaseDate": "2025-08-28T13:02:44.060Z" }, - "score": 97, + "score": 70, "matchingScoreModifiers": [ - "Very popular", "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.15, - "topicSearchString": "react react-native edge-to-edge status-bar navigation-bar system-bar system-bars" + "popularity": 0.196, + "topicSearchString": "edge-to-edge status-bar navigation-bar system-bar system-bars" }, { "githubUrl": "https://github.com/henrhie/react-native-sha", @@ -69842,7 +69360,6 @@ "registry": "https://registry.npmjs.org/", "description": "Blazing fast ⚡⚡⚡ Secure Hash Algorithm solution for React Native with direct C++ bindings", "topics": [ - "react-native", "ios", "android" ], @@ -69856,12 +69373,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-sha", "npm": { - "downloads": 15, + "downloads": 8, "weekDownloads": 0, "size": 97336, "latestRelease": "0.1.6", @@ -69873,7 +69391,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/kubilaysalih/react-native-customizable-toast", @@ -69912,7 +69430,6 @@ "registry": "https://registry.npmjs.org/", "description": "🏹 yet another toast library based on reanimated 2 layout animations", "topics": [ - "react-native", "ios", "android" ], @@ -69926,12 +69443,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-customizable-toast", "npm": { - "downloads": 787, - "weekDownloads": 118, + "downloads": 554, + "weekDownloads": 103, "size": 146642, "latestRelease": "0.2.1", "latestReleaseDate": "2023-08-13T13:33:44.971Z" @@ -69941,8 +69459,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, - "topicSearchString": "react-native ios android" + "popularity": -0.592, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/microsoft/react-native-lazy-index", @@ -69964,7 +69482,7 @@ "pushedAt": "2022-03-23T08:50:27Z", "forks": 9, "issues": 2, - "subscribers": 10, + "subscribers": 9, "stars": 230, "dependencies": 5 }, @@ -69983,8 +69501,6 @@ "on-demand", "performance", "ram", - "react", - "react-native", "require", "ram-bundle", "lazy-loading" @@ -69999,12 +69515,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-lazy-index", "npm": { - "downloads": 11, + "downloads": 28, "weekDownloads": 2, "size": 20906, "latestRelease": "2.1.4", @@ -70016,8 +69533,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, - "topicSearchString": "babel bundle codegen index.js inline lazy macro on-demand performance ram react react-native require ram-bundle lazy-loading" + "popularity": -1.433, + "topicSearchString": "babel bundle codegen index.js inline lazy macro on-demand performance ram require ram-bundle lazy-loading" }, { "githubUrl": "https://github.com/homielab/react-native-auto-scroll", @@ -70056,10 +69573,8 @@ "registry": "https://registry.npmjs.org/", "description": "A performance auto horizontal scrolling component for react-native ", "topics": [ - "react-native", "ios", "android", - "react", "marquee", "auto-scrolling", "auto-scroll" @@ -70074,23 +69589,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 7571, - "weekDownloads": 1244, + "downloads": 7068, + "weekDownloads": 1556, "size": 24290, "latestRelease": "1.1.2", "latestReleaseDate": "2025-09-10T14:20:53.920Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.14, - "topicSearchString": "react-native ios android react marquee auto-scrolling auto-scroll" + "popularity": 0.187, + "topicSearchString": "ios android marquee auto-scrolling auto-scroll" }, { "githubUrl": "https://github.com/douglasjunior/react-native-recaptcha-that-works", @@ -70123,7 +69638,7 @@ "forks": 32, "issues": 3, "subscribers": 3, - "stars": 176, + "stars": 177, "dependencies": 0 }, "name": "react-native-recaptcha-that-works", @@ -70131,7 +69646,6 @@ "isPrivate": false, "description": "⚛ A reCAPTCHA bridge for React Native that works (Android and iOS)", "topics": [ - "react-native", "ios", "android", "recaptcha", @@ -70150,24 +69664,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-recaptcha-that-works", "npm": { - "downloads": 72124, - "weekDownloads": 12644, + "downloads": 71905, + "weekDownloads": 17366, "size": 39880, "latestRelease": "2.0.0", "latestReleaseDate": "2023-08-19T18:14:23.406Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.149, - "topicSearchString": "react-native ios android recaptcha captcha security webview hacktoberfest" + "popularity": 0.205, + "topicSearchString": "ios android recaptcha captcha security webview hacktoberfest" }, { "githubUrl": "https://github.com/SrBrahma/react-native-payment-icons", @@ -70194,7 +69708,7 @@ "forks": 5, "issues": 0, "subscribers": 1, - "stars": 19, + "stars": 20, "dependencies": 0 }, "name": "react-native-payment-icons", @@ -70207,9 +69721,7 @@ "payment", "visa", "mastercard", - "react-native", "credit-card", - "native", "icon", "paypal", "icons", @@ -70228,22 +69740,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-payment-icons", "npm": { - "downloads": 6518, - "weekDownloads": 993, + "downloads": 6834, + "weekDownloads": 1633, "size": 53834, "latestRelease": "1.0.11", "latestReleaseDate": "2021-12-13T17:01:37.615Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.12, - "topicSearchString": "credit card payment visa mastercard react-native credit-card native icon paypal icons logo svg image creditcard" + "popularity": -0.047, + "topicSearchString": "credit card payment visa mastercard credit-card icon paypal icons logo svg image creditcard" }, { "githubUrl": "https://github.com/birkir/react-native-sfsymbols", @@ -70265,10 +69779,10 @@ "updatedAt": "2024-03-18T00:19:31Z", "createdAt": "2020-10-09T15:31:11Z", "pushedAt": "2024-03-18T00:19:31Z", - "forks": 12, + "forks": 11, "issues": 10, - "subscribers": 4, - "stars": 141, + "subscribers": 3, + "stars": 140, "dependencies": 0 }, "name": "react-native-sfsymbols", @@ -70279,8 +69793,6 @@ "sf", "symbols", "icons", - "react", - "native", "sfsymbols", "symbol", "ios" @@ -70295,12 +69807,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-sfsymbols", "npm": { - "downloads": 8816, - "weekDownloads": 1640, + "downloads": 9440, + "weekDownloads": 1836, "size": 24204, "latestRelease": "1.2.2", "latestReleaseDate": "2024-06-12T10:16:24.735Z" @@ -70310,8 +69823,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.158, - "topicSearchString": "sf symbols icons react native sfsymbols symbol ios" + "popularity": 0.165, + "topicSearchString": "sf symbols icons sfsymbols symbol ios" }, { "githubUrl": "https://github.com/vonovak/react-native-platforms", @@ -70337,7 +69850,7 @@ "pushedAt": "2021-12-25T23:23:41Z", "forks": 0, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 22, "dependencies": 0 }, @@ -70347,7 +69860,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Platform Shortcuts", "topics": [ - "react-native", "ios", "android" ], @@ -70361,13 +69873,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-platforms", "npm": { - "downloads": 31, - "weekDownloads": 0, + "downloads": 94, + "weekDownloads": 43, "size": 21164, "latestRelease": "0.2.0", "latestReleaseDate": "2021-12-25T23:23:38.274Z" @@ -70377,8 +69890,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native ios android" + "popularity": -1.359, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/dohooo/react-native-reanimated-carousel", @@ -70407,13 +69920,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-08T02:08:20Z", + "updatedAt": "2025-09-23T08:07:34Z", "createdAt": "2021-09-07T05:58:39Z", - "pushedAt": "2025-08-08T02:08:20Z", - "forks": 340, - "issues": 21, + "pushedAt": "2025-09-23T08:07:34Z", + "forks": 341, + "issues": 26, "subscribers": 27, - "stars": 3206, + "stars": 3242, "dependencies": 0 }, "name": "react-native-reanimated-carousel", @@ -70422,7 +69935,6 @@ "registry": "https://registry.npmjs.org/", "description": "🎠 React Native swiper/carousel component, fully implemented using reanimated v2, support to iOS/Android/Web. (Swiper/Carousel)", "topics": [ - "react-native", "ios", "android", "carousel", @@ -70442,25 +69954,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-reanimated-carousel", "npm": { - "downloads": 1187249, - "weekDownloads": 208392, + "downloads": 1087449, + "weekDownloads": 245306, "size": 1764025, "latestRelease": "4.0.3", "latestReleaseDate": "2025-08-08T02:20:17.525Z" }, - "score": 92, + "score": 97, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.149, - "topicSearchString": "react-native ios android carousel reanimated infinite-scroll swiper web snap" + "popularity": 0.192, + "topicSearchString": "ios android carousel reanimated infinite-scroll swiper web snap" }, { "githubUrl": "https://github.com/MinaSamir11/react-native-in-app-review", @@ -70488,10 +70002,10 @@ "updatedAt": "2025-09-03T13:04:07Z", "createdAt": "2020-08-09T20:08:55Z", "pushedAt": "2025-09-03T13:04:07Z", - "forks": 71, - "issues": 34, - "subscribers": 7, - "stars": 703, + "forks": 73, + "issues": 35, + "subscribers": 6, + "stars": 706, "dependencies": 0 }, "name": "react-native-in-app-review", @@ -70499,7 +70013,6 @@ "isPrivate": false, "description": "The Google Play In-App Review API, App store rating API lets you prompt users to submit Play Store or App store ratings and reviews without the inconvenience of leaving your app or game.", "topics": [ - "react-native", "review", "app-review", "in-app-review", @@ -70515,7 +70028,6 @@ "review-is-sent-to-the-app-gallery", "rating", "view", - "react-component", "component", "in-app-comment", "review-api", @@ -70532,25 +70044,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-in-app-review", "npm": { - "downloads": 557205, - "weekDownloads": 81345, + "downloads": 672483, + "weekDownloads": 155032, "size": 60618, "latestRelease": "4.4.2", "latestReleaseDate": "2025-09-03T13:04:19.644Z" }, - "score": 73, + "score": 68, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.124, - "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" + "popularity": 0.196, + "topicSearchString": "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 component in-app-comment review-api playstore appstore" }, { "githubUrl": "https://github.com/shipt/osmosis/tree/development/osmosis", @@ -70578,8 +70090,8 @@ "pushedAt": "2025-03-19T17:59:44Z", "forks": 4, "issues": 0, - "subscribers": 80, - "stars": 28, + "subscribers": 79, + "stars": 29, "dependencies": 0 }, "name": "@shipt/osmosis", @@ -70587,8 +70099,6 @@ "isPrivate": false, "description": "A lightweight state management library for React and React Native", "topics": [ - "react", - "react-native", "state-management", "hooks", "state-persistence", @@ -70604,11 +70114,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 336, - "weekDownloads": 45, + "downloads": 260, + "weekDownloads": 34, "size": 38458, "latestRelease": "2.1.10", "latestReleaseDate": "2025-03-19T18:10:01.083Z" @@ -70619,8 +70130,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.636, - "topicSearchString": "react react-native state-management hooks state-persistence shipt" + "popularity": -0.639, + "topicSearchString": "state-management hooks state-persistence shipt" }, { "githubUrl": "https://github.com/FormidableLabs/react-native-owl", @@ -70644,10 +70155,10 @@ "updatedAt": "2025-01-15T16:33:40Z", "createdAt": "2020-12-17T11:35:00Z", "pushedAt": "2025-01-15T16:33:40Z", - "forks": 28, - "issues": 22, - "subscribers": 41, - "stars": 681, + "forks": 29, + "issues": 23, + "subscribers": 39, + "stars": 682, "dependencies": 7 }, "name": "react-native-owl", @@ -70655,14 +70166,12 @@ "isPrivate": false, "description": "Visual regression testing library for React Native that enables developers to introduce visual regression tests to their apps.", "topics": [ - "react-native", "ios", "android", "mobile", "visual-regression", "testing", "tooling", - "react", "javscript", "typescript" ], @@ -70676,12 +70185,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-owl", "npm": { - "downloads": 1264, - "weekDownloads": 239, + "downloads": 1304, + "weekDownloads": 394, "size": 155902, "latestRelease": "1.5.0", "latestReleaseDate": "2025-01-14T19:34:19.293Z" @@ -70692,8 +70202,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, - "topicSearchString": "react-native ios android mobile visual-regression testing tooling react javscript typescript" + "popularity": 0.258, + "topicSearchString": "ios android mobile visual-regression testing tooling javscript typescript" }, { "githubUrl": "https://github.com/browniefed/react-native-ticker", @@ -70720,7 +70230,7 @@ "forks": 41, "issues": 11, "subscribers": 4, - "stars": 461, + "stars": 460, "dependencies": 0 }, "name": "react-native-ticker", @@ -70728,8 +70238,6 @@ "isPrivate": false, "description": "React Native Number Ticker", "topics": [ - "react-native", - "react", "ticker", "animated" ], @@ -70743,12 +70251,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ticker", "npm": { - "downloads": 2189, - "weekDownloads": 441, + "downloads": 2425, + "weekDownloads": 420, "size": 14162, "latestRelease": "6.0.1", "latestReleaseDate": "2024-02-06T03:32:22.696Z" @@ -70759,12 +70268,13 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.171, - "topicSearchString": "react-native react ticker animated" + "popularity": 0.147, + "topicSearchString": "ticker animated" }, { "githubUrl": "https://github.com/agencyenterprise/react-native-health", "ios": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/agencyenterprise/react-native-health", @@ -70779,10 +70289,10 @@ "updatedAt": "2024-10-15T16:20:48Z", "createdAt": "2020-09-21T19:09:21Z", "pushedAt": "2024-10-15T16:20:48Z", - "forks": 261, - "issues": 117, - "subscribers": 27, - "stars": 1067, + "forks": 264, + "issues": 121, + "subscribers": 26, + "stars": 1081, "dependencies": 1 }, "name": "react-native-health", @@ -70794,9 +70304,6 @@ "health-kit", "healthkit", "ios", - "react-native", - "react", - "native", "apple-healthkit", "health", "fitness" @@ -70811,12 +70318,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-health", "npm": { - "downloads": 58306, - "weekDownloads": 10154, + "downloads": 59045, + "weekDownloads": 11493, "size": 552260, "latestRelease": "1.19.0", "latestReleaseDate": "2024-10-15T16:21:11.925Z" @@ -70829,8 +70337,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.148, - "topicSearchString": "apple health-kit healthkit ios react-native react native apple-healthkit health fitness" + "popularity": 0.165, + "topicSearchString": "apple health-kit healthkit ios apple-healthkit health fitness" }, { "githubUrl": "https://github.com/nomi9995/react-native-interactable-reanimated", @@ -70873,10 +70381,7 @@ "topics": [ "reanimated", "interactable", - "interactable-reanimated", - "react", - "native", - "react-native" + "interactable-reanimated" ], "license": { "key": "mit", @@ -70888,13 +70393,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-interactable-reanimated", "npm": { - "downloads": 3038, - "weekDownloads": 847, + "downloads": 1669, + "weekDownloads": 361, "size": 129811, "latestRelease": "0.0.15", "latestReleaseDate": "2021-04-21T19:54:21.052Z" @@ -70904,8 +70410,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.513, - "topicSearchString": "reanimated interactable interactable-reanimated react native react-native" + "popularity": -0.566, + "topicSearchString": "reanimated interactable interactable-reanimated" }, { "githubUrl": "https://github.com/ihmpavel/expo-video-player", @@ -70929,10 +70435,10 @@ "updatedAt": "2022-09-29T19:32:17Z", "createdAt": "2018-12-20T23:36:22Z", "pushedAt": "2022-09-29T19:32:17Z", - "forks": 111, + "forks": 112, "issues": 24, - "subscribers": 5, - "stars": 212, + "subscribers": 4, + "stars": 213, "dependencies": 1 }, "name": "expo-video-player", @@ -70943,7 +70449,6 @@ "customizable", "expo", "player", - "react-native", "video-player", "expo-video-player", "videoplayer", @@ -70961,13 +70466,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "expo-video-player", "npm": { - "downloads": 8981, - "weekDownloads": 1739, + "downloads": 11004, + "weekDownloads": 2155, "size": 41869, "latestRelease": "2.2.0", "latestReleaseDate": "2022-09-29T19:32:53.919Z" @@ -70978,8 +70484,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.585, - "topicSearchString": "customizable expo player react-native video-player expo-video-player videoplayer expo-videoplayer video typescript" + "popularity": -0.584, + "topicSearchString": "customizable expo player video-player expo-video-player videoplayer expo-videoplayer video typescript" }, { "githubUrl": "https://github.com/interhub/react-native-accelerometer-parallax", @@ -70999,7 +70505,7 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2021-09-19T14:04:37Z", "createdAt": "2021-05-10T08:39:11Z", "pushedAt": "2021-09-19T14:04:37Z", @@ -71014,9 +70520,7 @@ "isPrivate": false, "registry": "https://registry.npmjs.org/", "description": "Simple Accelerometer animation react-native library for animate translateXY some View RN.", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -71027,12 +70531,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-accelerometer-parallax", "npm": { - "downloads": 65, + "downloads": 183, "weekDownloads": 0, "size": 10594, "latestRelease": "1.6.1", @@ -71044,7 +70549,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native" + "topicSearchString": "" }, { "githubUrl": "https://github.com/computerjazz/react-native-swipe-calendar", @@ -71082,8 +70587,6 @@ "isPrivate": false, "description": "A swipeable calendar component for React Native.", "topics": [ - "react", - "native", "infinite", "pager", "swipe", @@ -71099,13 +70602,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-swipe-calendar", "npm": { - "downloads": 881, - "weekDownloads": 147, + "downloads": 1118, + "weekDownloads": 275, "size": 219985, "latestRelease": "0.0.21", "latestReleaseDate": "2022-11-19T23:05:19.814Z" @@ -71115,8 +70619,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.358, - "topicSearchString": "react native infinite pager swipe calendar" + "popularity": -0.541, + "topicSearchString": "infinite pager swipe calendar" }, { "githubUrl": "https://github.com/fakeheal/react-native-pan-pinch-view", @@ -71146,7 +70650,7 @@ "forks": 13, "issues": 4, "subscribers": 4, - "stars": 81, + "stars": 82, "dependencies": 0 }, "name": "react-native-pan-pinch-view", @@ -71155,7 +70659,6 @@ "registry": "https://registry.npmjs.org/", "description": "🔍 A view component for React Native with pinch to zoom and drag to pan functionality.", "topics": [ - "react-native", "ios", "android", "component", @@ -71171,12 +70674,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-pan-pinch-view", "npm": { - "downloads": 756, - "weekDownloads": 163, + "downloads": 548, + "weekDownloads": 166, "size": 66733, "latestRelease": "2.0.0", "latestReleaseDate": "2023-10-12T16:53:54.651Z" @@ -71186,8 +70691,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.566, - "topicSearchString": "react-native ios android component zoom" + "popularity": -1.241, + "topicSearchString": "ios android component zoom" }, { "githubUrl": "https://github.com/gobeyondidentity/bi-sdk-react-native", @@ -71197,6 +70702,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/gobeyondidentity/bi-sdk-react-native", @@ -71213,7 +70719,7 @@ "pushedAt": "2023-09-28T20:49:56Z", "forks": 2, "issues": 0, - "subscribers": 4, + "subscribers": 3, "stars": 11, "dependencies": 0 }, @@ -71223,7 +70729,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native SDK for Beyond Identity Passkeys", "topics": [ - "react-native", "ios", "android", "oauth", @@ -71242,11 +70747,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, + "unmaintained": true, "npm": { - "downloads": 21, - "weekDownloads": 2, + "downloads": 112, + "weekDownloads": 16, "size": 2437197, "latestRelease": "2.0.1", "latestReleaseDate": "2023-09-28T20:14:42.427Z" @@ -71256,8 +70763,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.9, - "topicSearchString": "react-native ios android oauth passkey passkeys passwordless authentication" + "popularity": -1.627, + "topicSearchString": "ios android oauth passkey passkeys passwordless authentication" }, { "githubUrl": "https://github.com/xulihang/vision-camera-dynamsoft-barcode-reader", @@ -71277,12 +70784,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2024-09-05T02:03:14Z", + "updatedAt": "2025-09-22T07:52:04Z", "createdAt": "2022-01-25T07:17:41Z", - "pushedAt": "2024-09-05T02:03:14Z", + "pushedAt": "2025-09-22T07:52:04Z", "forks": 15, "issues": 1, - "subscribers": 4, + "subscribers": 3, "stars": 81, "dependencies": 0 }, @@ -71292,7 +70799,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Vision Camera Frame Processor Plugin of Dynamsoft Barcode Reader", "topics": [ - "react-native", "ios", "android", "pdf417", @@ -71311,23 +70817,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "vision-camera-dynamsoft-barcode-reader", "npm": { - "downloads": 81, - "weekDownloads": 10, - "size": 76133, - "latestRelease": "2.2.1", - "latestReleaseDate": "2024-08-16T08:07:21.438Z" + "downloads": 521, + "weekDownloads": 102, + "size": 77310, + "latestRelease": "2.3.0", + "latestReleaseDate": "2025-09-22T07:48:36.110Z" }, - "score": 32, + "score": 49, "matchingScoreModifiers": [ - "Not updated recently", + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.645, - "topicSearchString": "react-native ios android pdf417 barcode qr-code ean13 data-matrix" + "popularity": -0.583, + "topicSearchString": "ios android pdf417 barcode qr-code ean13 data-matrix" }, { "githubUrl": "https://github.com/gajjartejas/react-native-lan-port-scanner", @@ -71362,7 +70870,6 @@ "registry": "https://registry.npmjs.org/", "description": "A simple port scanner for react native.", "topics": [ - "react-native", "ios", "android", "lan", @@ -71383,12 +70890,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-lan-port-scanner", "npm": { - "downloads": 196, - "weekDownloads": 20, + "downloads": 170, + "weekDownloads": 25, "size": 57006, "latestRelease": "1.4.2", "latestReleaseDate": "2023-12-16T16:56:02.454Z" @@ -71398,8 +70907,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.663, - "topicSearchString": "react-native ios android lan scanner port lan-scan lan-scanner port-scanner wifi-scanner" + "popularity": -0.625, + "topicSearchString": "ios android lan scanner port lan-scan lan-scanner port-scanner wifi-scanner" }, { "githubUrl": "https://github.com/Soomgo-Mobile/react-native-animated-pagination-dot", @@ -71428,7 +70937,7 @@ "forks": 34, "issues": 2, "subscribers": 4, - "stars": 205, + "stars": 204, "dependencies": 1 }, "name": "react-native-animated-pagination-dot", @@ -71439,7 +70948,6 @@ "topics": [ "pagination", "dot", - "react-native", "instagram", "scroll", "scrollable", @@ -71456,13 +70964,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-animated-pagination-dot", "npm": { - "downloads": 11330, - "weekDownloads": 1684, + "downloads": 10946, + "weekDownloads": 2740, "size": 90946, "latestRelease": "0.4.0", "latestReleaseDate": "2022-09-15T13:52:56.667Z" @@ -71473,8 +70982,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.624, - "topicSearchString": "pagination dot react-native instagram scroll scrollable page paginate" + "popularity": -0.537, + "topicSearchString": "pagination dot instagram scroll scrollable page paginate" }, { "githubUrl": "https://github.com/haxibiao/react-native-ad", @@ -71509,7 +71018,6 @@ "registry": "https://npm.pkg.github.com/", "description": "通用广告 sdk 封装模块,穿山甲新的 gromore 聚合 sdk 已经完成重构且支持新旧 rn 架构,支持 expo 框架,欢迎邮件或微信联系", "topics": [ - "react-native", "ads", "gromore", "ad" @@ -71524,12 +71032,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-ad", "npm": { - "downloads": 29, - "weekDownloads": 2, + "downloads": 127, + "weekDownloads": 13, "size": 4186934, "latestRelease": "1.2.4", "latestReleaseDate": "2021-10-26T16:31:37.137Z" @@ -71539,8 +71048,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.683, - "topicSearchString": "react-native ads gromore ad" + "popularity": -0.66, + "topicSearchString": "ads gromore ad" }, { "githubUrl": "https://github.com/Assembless/react-native-material-you", @@ -71576,7 +71085,6 @@ "topics": [ "material-you", "material-design", - "react-native", "personalization" ], "license": { @@ -71589,12 +71097,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 113, - "weekDownloads": 17, + "downloads": 242, + "weekDownloads": 37, "size": 281570979, "latestRelease": "1.0.0-beta.4", "latestReleaseDate": "2022-02-05T20:52:22.954Z" @@ -71604,8 +71113,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.369, - "topicSearchString": "material-you material-design react-native personalization" + "popularity": -1.368, + "topicSearchString": "material-you material-design personalization" }, { "githubUrl": "https://github.com/clerk/javascript/tree/main/packages/expo", @@ -71627,13 +71136,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T15:46:02Z", + "updatedAt": "2025-10-17T18:15:17Z", "createdAt": "2021-12-14T16:53:48Z", - "pushedAt": "2025-09-12T15:46:02Z", - "forks": 379, - "issues": 7, + "pushedAt": "2025-10-17T18:15:17Z", + "forks": 394, + "issues": 15, "subscribers": 8, - "stars": 1558, + "stars": 1587, "dependencies": 7 }, "name": "@clerk/clerk-expo", @@ -71641,8 +71150,6 @@ "isPrivate": false, "description": "Clerk React Native/Expo library", "topics": [ - "react", - "react-native", "expo", "auth", "authentication", @@ -71660,14 +71167,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 187234, - "weekDownloads": 32245, - "size": 348270, - "latestRelease": "2.15.0", - "latestReleaseDate": "2025-09-12T15:49:26.788Z" + "downloads": 278621, + "weekDownloads": 44448, + "size": 351246, + "latestRelease": "2.17.0", + "latestReleaseDate": "2025-10-17T18:18:49.238Z" }, "score": 73, "matchingScoreModifiers": [ @@ -71676,8 +71184,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.146, - "topicSearchString": "react react-native expo auth authentication passwordless session jwt" + "popularity": 0.136, + "topicSearchString": "expo auth authentication passwordless session jwt" }, { "githubUrl": "https://github.com/TheRogue76/react-native-hashing", @@ -71709,14 +71217,12 @@ "registry": "https://registry.npmjs.org/", "description": "A hashing library for react native written in c++ with JSI", "topics": [ - "react-native", "ios", "android", "hashing", "jsi", "cpp", "javascript", - "react", "typescript" ], "license": { @@ -71729,13 +71235,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-hashing", "npm": { - "downloads": 7, - "weekDownloads": 0, + "downloads": 25, + "weekDownloads": 5, "size": 216882, "latestRelease": "0.1.5", "latestReleaseDate": "2022-03-26T17:25:02.091Z" @@ -71745,8 +71252,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native ios android hashing jsi cpp javascript react typescript" + "popularity": -1.55, + "topicSearchString": "ios android hashing jsi cpp javascript typescript" }, { "githubUrl": "https://github.com/aykutkardas/react-icomoon", @@ -71774,8 +71281,8 @@ "pushedAt": "2025-02-04T05:32:45Z", "forks": 21, "issues": 3, - "subscribers": 5, - "stars": 239, + "subscribers": 4, + "stars": 241, "dependencies": 0 }, "name": "react-icomoon", @@ -71783,8 +71290,6 @@ "isPrivate": false, "description": "It makes it very simple to use SVG icons in your React and React-Native projects.", "topics": [ - "react", - "react-native", "icomoon", "svg", "icon", @@ -71803,12 +71308,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-icomoon", "npm": { - "downloads": 103853, - "weekDownloads": 18445, + "downloads": 115943, + "weekDownloads": 27295, "size": 92411, "latestRelease": "2.6.1", "latestReleaseDate": "2025-02-04T05:33:07.040Z" @@ -71819,8 +71325,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.151, - "topicSearchString": "react react-native icomoon svg icon icons reactjs svg-icons hacktoberfest" + "popularity": 0.2, + "topicSearchString": "icomoon svg icon icons reactjs svg-icons hacktoberfest" }, { "githubUrl": "https://github.com/MuhammedKpln/react-native-chatty", @@ -71858,11 +71364,9 @@ "registry": "https://registry.npmjs.org/", "description": "💬 Full-featured high performance chat UI for React Native", "topics": [ - "react-native", "ios", "android", "javascript", - "react", "web", "chat", "chat-ui", @@ -71878,13 +71382,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "unmaintained": true, "npmPkg": "react-native-chatty", "npm": { - "downloads": 73, - "weekDownloads": 6, + "downloads": 5123, + "weekDownloads": 2, "size": 725887, "latestRelease": "0.4.3", "latestReleaseDate": "2022-04-20T17:39:25.101Z" @@ -71894,8 +71400,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.429, - "topicSearchString": "react-native ios android javascript react web chat chat-ui expo" + "popularity": -0.75, + "topicSearchString": "ios android javascript web chat chat-ui expo" }, { "githubUrl": "https://github.com/cwnicoletti/react-native-gauge/tree/main/src", @@ -71930,8 +71436,6 @@ "isPrivate": false, "description": "React Native component used to display a gauge for metrics or purely aesthetic purposes ", "topics": [ - "react-native", - "react-native", "gauge" ], "license": { @@ -71944,12 +71448,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 82, - "weekDownloads": 10, + "downloads": 147, + "weekDownloads": 9, "size": 36562, "latestRelease": "0.1.2", "latestReleaseDate": "2022-03-11T18:58:40.482Z" @@ -71959,8 +71464,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.645, - "topicSearchString": "react-native react-native gauge" + "popularity": -1.697, + "topicSearchString": "gauge" }, { "githubUrl": "https://github.com/caglardurmus/react-native-insta-story", @@ -71991,7 +71496,7 @@ "forks": 92, "issues": 17, "subscribers": 4, - "stars": 183, + "stars": 184, "dependencies": 3 }, "name": "react-native-insta-story", @@ -71999,7 +71504,6 @@ "isPrivate": false, "description": "Story component for React Native", "topics": [ - "react-native", "insta-story", "story", "instagram", @@ -72016,13 +71520,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-insta-story", "npm": { - "downloads": 2758, - "weekDownloads": 400, + "downloads": 3172, + "weekDownloads": 786, "size": 71597, "latestRelease": "1.1.9", "latestReleaseDate": "2023-04-21T02:00:47.076Z" @@ -72033,8 +71538,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.627, - "topicSearchString": "react-native insta-story story instagram ios android" + "popularity": -0.539, + "topicSearchString": "insta-story story instagram ios android" }, { "githubUrl": "https://github.com/Kieran-McIntyre/react-native-section-alphabet-list", @@ -72062,10 +71567,10 @@ "updatedAt": "2022-11-24T20:52:40Z", "createdAt": "2020-04-10T16:41:59Z", "pushedAt": "2022-11-24T20:52:40Z", - "forks": 47, + "forks": 48, "issues": 18, "subscribers": 1, - "stars": 204, + "stars": 205, "dependencies": 1 }, "name": "react-native-section-alphabet-list", @@ -72073,7 +71578,6 @@ "isPrivate": false, "description": "A simple React Native component that takes an array of data and renders a SectionList with alphabetically sorted data", "topics": [ - "react-native", "alphabet", "sectionlist", "letters", @@ -72091,13 +71595,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-section-alphabet-list", "npm": { - "downloads": 20482, - "weekDownloads": 3568, + "downloads": 22697, + "weekDownloads": 4425, "size": 25645, "latestRelease": "3.0.0", "latestReleaseDate": "2022-11-24T20:50:59.533Z" @@ -72108,8 +71613,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, - "topicSearchString": "react-native alphabet sectionlist letters address addressbook custom" + "popularity": -0.584, + "topicSearchString": "alphabet sectionlist letters address addressbook custom" }, { "githubUrl": "https://github.com/alexZajac/react-native-skeleton-content", @@ -72137,10 +71642,10 @@ "updatedAt": "2023-08-17T08:26:13Z", "createdAt": "2019-06-18T15:01:59Z", "pushedAt": "2023-08-17T08:26:13Z", - "forks": 122, + "forks": 121, "issues": 6, "subscribers": 4, - "stars": 627, + "stars": 628, "dependencies": 3 }, "name": "react-native-skeleton-content", @@ -72148,7 +71653,6 @@ "isPrivate": false, "description": "A customizable skeleton-like loading placeholder for react native projects using expo. ", "topics": [ - "react-native", "skeleton", "loader", "placeholders", @@ -72166,13 +71670,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-skeleton-content", "npm": { - "downloads": 6101, - "weekDownloads": 1071, + "downloads": 8292, + "weekDownloads": 1460, "size": 42964, "latestRelease": "1.0.28", "latestReleaseDate": "2022-10-04T07:22:35.066Z" @@ -72183,8 +71688,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.601, - "topicSearchString": "react-native skeleton loader placeholders gradient animation component" + "popularity": -0.6, + "topicSearchString": "skeleton loader placeholders gradient animation component" }, { "githubUrl": "https://github.com/alexZajac/react-native-skeleton-content-nonexpo", @@ -72223,7 +71728,6 @@ "topics": [ "node", "npm", - "react-native", "component", "loader", "animation", @@ -72239,13 +71743,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-skeleton-content-nonexpo", "npm": { - "downloads": 3518, - "weekDownloads": 582, + "downloads": 3128, + "weekDownloads": 769, "size": 42316, "latestRelease": "1.0.13", "latestReleaseDate": "2021-05-22T10:24:43.879Z" @@ -72256,8 +71761,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, - "topicSearchString": "node npm react-native component loader animation skeleton" + "popularity": -0.541, + "topicSearchString": "node npm component loader animation skeleton" }, { "githubUrl": "https://github.com/Expensify/react-native-share-menu", @@ -72284,10 +71789,10 @@ "updatedAt": "2023-09-19T02:37:53Z", "createdAt": "2016-03-14T03:12:34Z", "pushedAt": "2023-09-19T02:37:53Z", - "forks": 222, + "forks": 223, "issues": 129, - "subscribers": 58, - "stars": 689, + "subscribers": 57, + "stars": 692, "dependencies": 0 }, "name": "react-native-share-menu", @@ -72295,8 +71800,7 @@ "isPrivate": false, "description": "A module for React Native that adds your app to the share menu of the device", "topics": [ - "react-component", - "react-native", + "component", "android", "ios", "share", @@ -72314,12 +71818,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-share-menu", "npm": { - "downloads": 9486, - "weekDownloads": 1439, + "downloads": 10811, + "weekDownloads": 2066, "size": 62433, "latestRelease": "6.0.0", "latestReleaseDate": "2022-05-12T20:35:00.093Z" @@ -72332,8 +71838,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.129, - "topicSearchString": "react-component react-native android ios share share-extension custom-view share-intent" + "popularity": -0.588, + "topicSearchString": "component android ios share share-extension custom-view share-intent" }, { "githubUrl": "https://github.com/jamonholmgren/react-native-colo-loco", @@ -72356,7 +71862,7 @@ "pushedAt": "2023-11-15T17:03:13Z", "forks": 12, "issues": 6, - "subscribers": 6, + "subscribers": 5, "stars": 297, "dependencies": 0 }, @@ -72365,7 +71871,6 @@ "isPrivate": false, "description": "Colocate your native modules and components with your JavaScript/JSX files.", "topics": [ - "react-native", "ios", "android" ], @@ -72379,12 +71884,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-colo-loco", "npm": { - "downloads": 63, - "weekDownloads": 16, + "downloads": 179, + "weekDownloads": 5, "size": 40769, "latestRelease": "1.3.0", "latestReleaseDate": "2023-11-15T17:03:17.509Z" @@ -72395,8 +71901,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.521, - "topicSearchString": "react-native ios android" + "popularity": -0.726, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/software-mansion-labs/react-native-url-router", @@ -72442,13 +71948,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-url-router", "npm": { - "downloads": 36, - "weekDownloads": 8, + "downloads": 134, + "weekDownloads": 11, "size": 63032, "latestRelease": "0.2.2", "latestReleaseDate": "2023-01-04T16:09:43.221Z" @@ -72458,7 +71965,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.3, + "popularity": -1.429, "topicSearchString": "" }, { @@ -72494,8 +72001,6 @@ "isPrivate": false, "description": "A ScrollView-like component with animated horizontal tab when scrolling", "topics": [ - "react", - "native", "tab", "scroll", "string", @@ -72520,13 +72025,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-scrollable-tabstring", "npm": { - "downloads": 31, - "weekDownloads": 2, + "downloads": 59, + "weekDownloads": 9, "size": 38314, "latestRelease": "0.0.8", "latestReleaseDate": "2021-02-15T04:48:56.071Z" @@ -72536,8 +72042,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.693, - "topicSearchString": "react native tab scroll string navigator tabstring stringtab scrollable horizontal animated component scrollview ios android" + "popularity": -1.612, + "topicSearchString": "tab scroll string navigator tabstring stringtab scrollable horizontal animated component scrollview ios android" }, { "githubUrl": "https://github.com/LunatiqueCoder/luna/tree/master/packages/create-luna-app", @@ -72562,7 +72068,7 @@ "forks": 19, "issues": 2, "subscribers": 5, - "stars": 272, + "stars": 271, "dependencies": 1 }, "name": "create-luna-app", @@ -72570,12 +72076,9 @@ "isPrivate": false, "description": "🌘Luna is a React Native and Next.js boilerplate so your app can run on Android, IOS and Web concurrently.", "topics": [ - "react", - "native", "boilerplate", "template", "luna", - "react-native", "web", "web", "next", @@ -72593,20 +72096,20 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "create-luna-app", - "npm": { - "size": 25567 - }, - "score": 32, + "npm": {}, + "score": 41, "matchingScoreModifiers": [ + "Known", "Not updated recently", "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react native boilerplate template luna react-native web web next nextjs solito tamagui" + "topicSearchString": "boilerplate template luna web web next nextjs solito tamagui" }, { "githubUrl": "https://github.com/criszz77/react-native-media-console", @@ -72633,7 +72136,7 @@ "forks": 36, "issues": 21, "subscribers": 4, - "stars": 229, + "stars": 231, "dependencies": 0 }, "name": "react-native-media-console", @@ -72641,11 +72144,7 @@ "isPrivate": true, "description": "A React Native video player. Built with TypeScript ❤️", "topics": [ - "react-native", "video", - "react-video-controls", - "react-video-player", - "react", "video-controls", "video-player", "community", @@ -72662,12 +72161,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-media-console", "npm": { - "downloads": 25966, - "weekDownloads": 3919, + "downloads": 29342, + "weekDownloads": 6367, "size": 1368036, "latestRelease": "2.2.4", "latestReleaseDate": "2024-06-02T10:05:33.734Z" @@ -72678,8 +72179,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.128, - "topicSearchString": "react-native video react-video-controls react-video-player react video-controls video-player community tvos media-player" + "popularity": 0.184, + "topicSearchString": "video video-controls video-player community tvos media-player" }, { "githubUrl": "https://github.com/ujjalkar/rn-status-bar", @@ -72715,7 +72216,6 @@ "registry": "https://registry.npmjs.org/", "description": "iOS Status bar background color native support since we cannot change status bar bg on iOS. Works both iOS & Android", "topics": [ - "react-native", "ios", "android", "statusbar" @@ -72730,12 +72230,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-status-bar", "npm": { - "downloads": 22, + "downloads": 18, "weekDownloads": 0, "size": 84475, "latestRelease": "0.1.6", @@ -72747,7 +72248,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android statusbar" + "topicSearchString": "ios android statusbar" }, { "githubUrl": "https://github.com/nshaposhnik/react-native-virtual-keyboard", @@ -72785,11 +72286,10 @@ "isPrivate": false, "description": "React native's software/virtual numeric keyboard, which can be used instead of Android/iOS ones if it suits your app style better.", "topics": [ - "keyboard", - "react", - "react-native" + "keyboard" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -72798,13 +72298,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-virtual-keyboard", "npm": { - "downloads": 1247, - "weekDownloads": 194, + "downloads": 1446, + "weekDownloads": 241, "size": 7758, "latestRelease": "1.2.3", "latestReleaseDate": "2023-07-26T15:27:17.519Z" @@ -72814,8 +72315,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.618, - "topicSearchString": "keyboard react react-native" + "popularity": -0.608, + "topicSearchString": "keyboard" }, { "githubUrl": "https://github.com/yutasuzuki/react-native-record-screen", @@ -72838,8 +72339,8 @@ "updatedAt": "2024-04-18T10:39:18Z", "createdAt": "2020-07-29T14:55:43Z", "pushedAt": "2024-04-18T10:39:18Z", - "forks": 42, - "issues": 44, + "forks": 43, + "issues": 45, "subscribers": 4, "stars": 164, "dependencies": 0 @@ -72850,7 +72351,6 @@ "registry": "https://registry.npmjs.org/", "description": "react-native-record-screen", "topics": [ - "react-native", "ios", "android" ], @@ -72864,12 +72364,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-record-screen", "npm": { - "downloads": 1483, - "weekDownloads": 204, + "downloads": 2579, + "weekDownloads": 262, "size": 69149, "latestRelease": "0.6.2", "latestReleaseDate": "2024-04-18T10:44:17.457Z" @@ -72880,8 +72381,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.117, - "topicSearchString": "react-native ios android" + "popularity": 0.086, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/peterp/react-native-tags", @@ -72915,7 +72416,6 @@ "isPrivate": false, "description": "Tag input component for React Native", "topics": [ - "react-native", "tags", "tag-input" ], @@ -72929,13 +72429,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tags", "npm": { - "downloads": 3430, - "weekDownloads": 590, + "downloads": 3136, + "weekDownloads": 621, "size": 12484, "latestRelease": "2.2.1", "latestReleaseDate": "2021-10-28T16:40:41.531Z" @@ -72946,8 +72447,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, - "topicSearchString": "react-native tags tag-input" + "popularity": -0.581, + "topicSearchString": "tags tag-input" }, { "githubUrl": "https://github.com/SvanBoxel/visibility-sensor-react-native", @@ -72978,7 +72479,7 @@ "pushedAt": "2022-12-08T01:15:02Z", "forks": 19, "issues": 6, - "subscribers": 6, + "subscribers": 5, "stars": 112, "dependencies": 0 }, @@ -72988,13 +72489,12 @@ "registry": "https://npm.pkg.github.com/", "description": "React Native component that helps with determining whether a component is in the viewport.", "topics": [ - "react-native", - "react", "visibility", "visbility-sensor", "viewport" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -73003,11 +72503,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5474, - "weekDownloads": 971, + "downloads": 4891, + "weekDownloads": 1241, "size": 15225, "latestRelease": "1.0.2", "latestReleaseDate": "2020-11-09T13:50:54.003Z" @@ -73017,8 +72518,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, - "topicSearchString": "react-native react visibility visbility-sensor viewport" + "popularity": -0.534, + "topicSearchString": "visibility visbility-sensor viewport" }, { "npmPkg": "@dimaportenko/react-native-shadow-view", @@ -73057,7 +72558,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native library with native android view which supports same shadow styles as iOS ", "topics": [ - "react-native", "ios", "android" ], @@ -73071,11 +72571,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 209, - "weekDownloads": 19, + "downloads": 119, + "weekDownloads": 34, "size": 116231, "latestRelease": "0.1.7", "latestReleaseDate": "2024-09-21T17:31:01.632Z" @@ -73085,8 +72586,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.672, - "topicSearchString": "react-native ios android" + "popularity": -0.507, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/yamankatby/react-native-flex-layout", @@ -73123,7 +72624,6 @@ "registry": "https://registry.npmjs.org/", "description": "Layout primitives for React Native.", "topics": [ - "react-native", "ios", "android", "flexbox", @@ -73139,13 +72639,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-flex-layout", "npm": { - "downloads": 16266, - "weekDownloads": 2572, + "downloads": 20986, + "weekDownloads": 3971, "size": 181167, "latestRelease": "0.1.5", "latestReleaseDate": "2022-03-03T15:09:07.887Z" @@ -73155,8 +72656,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.616, - "topicSearchString": "react-native ios android flexbox layout" + "popularity": -0.589, + "topicSearchString": "ios android flexbox layout" }, { "githubUrl": "https://github.com/jacobp100/react-native-tableview-list", @@ -73185,7 +72686,7 @@ "pushedAt": "2023-11-18T13:54:57Z", "forks": 0, "issues": 3, - "subscribers": 3, + "subscribers": 2, "stars": 78, "dependencies": 0 }, @@ -73195,7 +72696,6 @@ "registry": "https://registry.npmjs.org/", "description": "UITableView-based SectionList", "topics": [ - "react-native", "ios", "android" ], @@ -73209,11 +72709,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-tableview-list", "npm": { - "downloads": 6, + "downloads": 168, "weekDownloads": 0, "size": 168653, "latestRelease": "0.1.17", @@ -73225,7 +72726,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/invertase/notifee/tree/main/packages/react-native", @@ -73247,10 +72748,10 @@ "updatedAt": "2025-01-24T18:09:33Z", "createdAt": "2017-06-02T09:44:41Z", "pushedAt": "2025-01-24T18:09:33Z", - "forks": 251, - "issues": 34, - "subscribers": 18, - "stars": 2087, + "forks": 252, + "issues": 29, + "subscribers": 16, + "stars": 2106, "dependencies": 0 }, "name": "@notifee/react-native", @@ -73258,8 +72759,6 @@ "isPrivate": false, "description": "Notifee - a feature rich notifications library for React Native.", "topics": [ - "react", - "react-native", "scheduling", "channels", "android", @@ -73280,24 +72779,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 909668, - "weekDownloads": 140229, + "downloads": 957601, + "weekDownloads": 226920, "size": 919380, "latestRelease": "9.1.8", "latestReleaseDate": "2024-12-20T01:36:19.738Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.131, - "topicSearchString": "react react-native scheduling channels android ios firebase fcm notifee notifications onesignal" + "popularity": 0.201, + "topicSearchString": "scheduling channels android ios firebase fcm notifee notifications onesignal" }, { "githubUrl": "https://github.com/wix/react-native-notifications", @@ -73317,10 +72816,10 @@ "updatedAt": "2023-09-14T07:17:56Z", "createdAt": "2016-04-06T13:17:44Z", "pushedAt": "2023-09-14T07:17:56Z", - "forks": 668, + "forks": 669, "issues": 2, - "subscribers": 327, - "stars": 3315, + "subscribers": 325, + "stars": 3320, "dependencies": 0 }, "name": "react-native-notifications", @@ -73329,8 +72828,7 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Notifications", "topics": [ - "react-component", - "react-native", + "component", "ios", "push-notifications", "notifications", @@ -73350,13 +72848,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-notifications", "npm": { - "downloads": 120865, - "weekDownloads": 18846, + "downloads": 134548, + "weekDownloads": 28966, "size": 2758655, "latestRelease": "5.1.0", "latestReleaseDate": "2023-09-14T07:17:44.264Z" @@ -73369,8 +72868,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.617, - "topicSearchString": "react-component react-native ios push-notifications notifications notification pushkit push-kit actionable-notifications interactive-notifications" + "popularity": -0.567, + "topicSearchString": "component ios push-notifications notifications notification pushkit push-kit actionable-notifications interactive-notifications" }, { "githubUrl": "https://github.com/Gustash/react-native-focus", @@ -73404,7 +72903,6 @@ "registry": "https://registry.npmjs.org/", "description": "Get iOS Focus status information in React Native", "topics": [ - "react-native", "ios", "ios-15", "focus", @@ -73420,13 +72918,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-focus", "npm": { - "downloads": 8, - "weekDownloads": 1, + "downloads": 7, + "weekDownloads": 0, "size": 52379, "latestRelease": "1.2.0", "latestReleaseDate": "2022-04-24T10:40:12.185Z" @@ -73436,8 +72935,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, - "topicSearchString": "react-native ios ios-15 focus do-not-disturb" + "popularity": -1, + "topicSearchString": "ios ios-15 focus do-not-disturb" }, { "githubUrl": "https://github.com/forwardsoftware/react-auth/tree/main/lib", @@ -73461,13 +72960,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T15:24:24Z", + "updatedAt": "2025-10-10T23:44:32Z", "createdAt": "2022-02-09T11:40:16Z", - "pushedAt": "2025-09-11T15:24:24Z", + "pushedAt": "2025-10-10T23:44:32Z", "forks": 3, "issues": 0, "subscribers": 0, - "stars": 22, + "stars": 24, "dependencies": 1 }, "name": "@forward-software/react-auth", @@ -73475,8 +72974,6 @@ "isPrivate": false, "description": "Simplify your Auth flow when working with React apps", "topics": [ - "react", - "react-native", "auth", "authentication" ], @@ -73490,22 +72987,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1, - "weekDownloads": 0, - "size": 44867, - "latestRelease": "2.0.0", - "latestReleaseDate": "2025-05-16T16:46:17.375Z" + "downloads": 202, + "weekDownloads": 7, + "size": 44909, + "latestRelease": "2.0.2", + "latestReleaseDate": "2025-10-10T23:45:14.019Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react react-native auth authentication" + "popularity": -0.97, + "topicSearchString": "auth authentication" }, { "githubUrl": "https://github.com/erksch/react-native-wheely", @@ -73532,9 +73030,9 @@ "createdAt": "2020-02-13T12:35:31Z", "pushedAt": "2023-07-18T23:29:20Z", "forks": 62, - "issues": 18, + "issues": 19, "subscribers": 3, - "stars": 465, + "stars": 468, "dependencies": 0 }, "name": "react-native-wheely", @@ -73542,8 +73040,6 @@ "isPrivate": false, "description": "An all JavaScript wheel picker for react-native without any native code.", "topics": [ - "react", - "react-native", "wheel-picker", "wheel", "picker", @@ -73559,13 +73055,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-wheely", "npm": { - "downloads": 66758, - "weekDownloads": 11429, + "downloads": 53191, + "weekDownloads": 12553, "size": 20511, "latestRelease": "0.6.0", "latestReleaseDate": "2022-11-13T15:28:28.324Z" @@ -73576,8 +73073,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, - "topicSearchString": "react react-native wheel-picker wheel picker wheely" + "popularity": -0.549, + "topicSearchString": "wheel-picker wheel picker wheely" }, { "githubUrl": "https://github.com/iamolegga/react-native-launch-arguments", @@ -73595,13 +73092,13 @@ "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", - "forks": 28, + "pushedAt": "2025-10-20T16:49:14Z", + "forks": 29, "issues": 1, - "subscribers": 4, - "stars": 67, + "subscribers": 2, + "stars": 66, "dependencies": 0 }, "name": "react-native-launch-arguments", @@ -73609,9 +73106,6 @@ "isPrivate": false, "description": "Get launch arguments for testing with Detox, Appium, and Maestro", "topics": [ - "react", - "native", - "react-native", "launch", "arguments", "detox", @@ -73629,24 +73123,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-launch-arguments", "npm": { - "downloads": 567535, - "weekDownloads": 79713, - "size": 30750, - "latestRelease": "4.1.0", - "latestReleaseDate": "2025-02-22T11:50:49.412Z" + "downloads": 601000, + "weekDownloads": 155173, + "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.119, - "topicSearchString": "react native react-native launch arguments detox testing appium maestro" + "popularity": 0.219, + "topicSearchString": "launch arguments detox testing appium maestro" }, { "githubUrl": "https://github.com/heyman333/react-native-animated-numbers", @@ -73674,7 +73169,7 @@ "forks": 44, "issues": 8, "subscribers": 3, - "stars": 456, + "stars": 459, "dependencies": 0 }, "name": "react-native-animated-numbers", @@ -73682,12 +73177,9 @@ "isPrivate": false, "description": "🎰 Library showing animation of number changes in react-native", "topics": [ - "react-native", "component", - "react-component", "ios", "android", - "react", "animation", "text", "number", @@ -73704,12 +73196,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-numbers", "npm": { - "downloads": 16435, - "weekDownloads": 2548, + "downloads": 16481, + "weekDownloads": 3540, "size": 44605, "latestRelease": "0.6.3", "latestReleaseDate": "2024-11-15T04:57:21.111Z" @@ -73720,8 +73213,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.132, - "topicSearchString": "react-native component react-component ios android react animation text number animated numbers" + "popularity": 0.183, + "topicSearchString": "component ios android animation text number animated numbers" }, { "githubUrl": "https://github.com/jkdrangel/react-native-switch-selector", @@ -73743,7 +73236,7 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": true, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2022-12-02T13:50:55Z", "createdAt": "2019-10-03T11:07:21Z", "pushedAt": "2022-12-02T13:50:55Z", @@ -73757,9 +73250,7 @@ "fullName": "jkdrangel/react-native-switch-selector", "isPrivate": false, "description": "Switch Selector for React Native", - "topics": [ - "react-native" - ], + "topics": [], "license": { "key": "mit", "name": "MIT License", @@ -73770,13 +73261,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-switch-selector", "npm": { - "downloads": 30894, - "weekDownloads": 5206, + "downloads": 32345, + "weekDownloads": 6656, "size": 234161, "latestRelease": "2.3.0", "latestReleaseDate": "2022-12-02T13:51:09.318Z" @@ -73786,8 +73278,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, - "topicSearchString": "react-native" + "popularity": -0.575, + "topicSearchString": "" }, { "githubUrl": "https://github.com/ammarahm-ed/react-native-admob-native-ads", @@ -73796,6 +73288,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/ammarahm-ed/react-native-admob-native-ads", @@ -73807,13 +73300,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2024-08-29T10:31:32Z", + "updatedAt": "2025-09-30T17:22:38Z", "createdAt": "2020-03-17T05:29:33Z", - "pushedAt": "2024-08-29T10:31:32Z", + "pushedAt": "2025-09-30T17:22:38Z", "forks": 130, - "issues": 28, - "subscribers": 3, - "stars": 435, + "issues": 29, + "subscribers": 2, + "stars": 436, "dependencies": 0 }, "name": "react-native-admob-native-ads", @@ -73823,18 +73316,13 @@ "topics": [ "android", "ios", - "react-native", "admob", - "native-ads", - "admob-native-ads", + "ads", "admob-ads", "google-admob", - "react", - "native", "advanced", - "ads", - "native-advanced-ads", - "admob-native-advanced-ads", + "advanced-ads", + "admob-advanced-ads", "objective-c", "java" ], @@ -73848,24 +73336,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-admob-native-ads", "npm": { - "downloads": 3750, - "weekDownloads": 596, + "downloads": 3541, + "weekDownloads": 623, "size": 757247, "latestRelease": "0.7.6", "latestReleaseDate": "2024-08-29T10:31:33.272Z" }, - "score": 41, + "score": 57, "matchingScoreModifiers": [ "Known", - "Not updated recently", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.135, - "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" + "popularity": 0.15, + "topicSearchString": "android ios admob ads admob-ads google-admob advanced advanced-ads admob-advanced-ads objective-c java" }, { "githubUrl": "https://github.com/margelo/react-native-graph", @@ -73893,10 +73383,10 @@ "updatedAt": "2024-03-21T14:15:34Z", "createdAt": "2022-04-29T12:40:18Z", "pushedAt": "2024-03-21T14:15:34Z", - "forks": 119, + "forks": 123, "issues": 30, - "subscribers": 18, - "stars": 2304, + "subscribers": 17, + "stars": 2344, "dependencies": 0 }, "name": "react-native-graph", @@ -73905,10 +73395,8 @@ "registry": "https://registry.npmjs.org/", "description": "📈 Beautiful, high-performance Graphs and Charts for React Native built with Skia", "topics": [ - "react-native", "ios", "android", - "react", "svg", "chart", "charts", @@ -73935,12 +73423,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-graph", "npm": { - "downloads": 26823, - "weekDownloads": 4273, + "downloads": 30938, + "weekDownloads": 5981, "size": 264119, "latestRelease": "1.1.0", "latestReleaseDate": "2024-03-12T12:21:31.205Z" @@ -73952,8 +73441,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.135, - "topicSearchString": "react-native ios android react svg chart charts library performance crypto graph animation graphs stock beautiful wallet animated skia linegraph" + "popularity": 0.164, + "topicSearchString": "ios android svg chart charts library performance crypto graph animation graphs stock beautiful wallet animated skia linegraph" }, { "githubUrl": "https://github.com/margelo/react-native-bignumber", @@ -73978,9 +73467,9 @@ "createdAt": "2022-03-03T08:52:46Z", "pushedAt": "2025-07-21T11:09:34Z", "forks": 16, - "issues": 10, - "subscribers": 9, - "stars": 365, + "issues": 9, + "subscribers": 8, + "stars": 370, "dependencies": 1 }, "name": "react-native-bignumber", @@ -73989,7 +73478,6 @@ "registry": "https://registry.npmjs.org/", "description": "🔢 The fastest Big Number library for React Native", "topics": [ - "react-native", "ios", "android", "jsi", @@ -74003,8 +73491,6 @@ "big", "math", "library", - "react", - "native", "wallet" ], "license": { @@ -74017,12 +73503,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-bignumber", "npm": { - "downloads": 820, - "weekDownloads": 161, + "downloads": 638, + "weekDownloads": 200, "size": 352235, "latestRelease": "0.3.0", "latestReleaseDate": "2025-07-21T11:09:31.601Z" @@ -74032,8 +73519,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.582, - "topicSearchString": "react-native ios android jsi crypto c++ fast web3 number bignumber bn big math library react native wallet" + "popularity": -0.483, + "topicSearchString": "ios android jsi crypto c++ fast web3 number bignumber bn big math library wallet" }, { "githubUrl": "https://github.com/streem/react-native-select-contact", @@ -74064,8 +73551,6 @@ "isPrivate": false, "description": "A cross-platform contact selection library for react-native", "topics": [ - "react", - "react-native", "contacts", "address-book", "people", @@ -74081,13 +73566,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-select-contact", "npm": { - "downloads": 38742, - "weekDownloads": 7345, + "downloads": 38601, + "weekDownloads": 8688, "size": 182975, "latestRelease": "1.6.3", "latestReleaseDate": "2021-06-04T16:00:42.223Z" @@ -74098,8 +73584,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.589, - "topicSearchString": "react react-native contacts address-book people select-contact" + "popularity": -0.559, + "topicSearchString": "contacts address-book people select-contact" }, { "githubUrl": "https://github.com/KjellConnelly/react-native-shared-group-preferences", @@ -74115,7 +73601,7 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2023-09-18T15:52:52Z", "createdAt": "2018-03-09T18:40:25Z", "pushedAt": "2023-09-18T15:52:52Z", @@ -74129,9 +73615,7 @@ "fullName": "KjellConnelly/react-native-shared-group-preferences", "isPrivate": false, "description": "#### To Know - Doesn't work for Expo since this uses native code. - iOS & Android ONLY - Uses Xcode's Shared Preferences App Groups (iOS) and Public External Storage for Android. - Once you install via npm, you will need to do some configuration in Xcode for your javascript to access a shared group container. Android will need Permissions. - I tried to model this after React Native's AsyncStorage. Main thing is that you no longer need to do JSON.stringify and JSON.parse when you set/get. Not sure why they make you do that to begin with... but you can set/get an JSONable item using this module. - All methods return a promise. So make sure to make your functions async. - iOS's data is securely sandboxed within your app group. I couldn't find something as easy to access, or that wouldn't be deleted if you delete an app, so the Android version saves a json file to the android device's external storage. This is good because if the app is deleted, another app can still access the data. But this is bad because any other app can delete/edit/access this file. For this reason, at least for Android, do not store data in it that is sensitive. If you're saving user preferences, fine. But do not save something like credit card numbers or anything like that in here. That would be irresponsible. The file is saved to the user's storage in the following format: ```$storage/$appGroupIdentifier/data.json```. So make sure your appGroupIdentifier is a valid folder name. Reverse dns works fine.", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -74142,12 +73626,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-shared-group-preferences", "npm": { - "downloads": 35265, - "weekDownloads": 5393, + "downloads": 33436, + "weekDownloads": 6854, "size": 36840, "latestRelease": "1.1.24", "latestReleaseDate": "2023-09-18T15:52:57.494Z" @@ -74158,8 +73644,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.13, - "topicSearchString": "react-native" + "popularity": -0.576, + "topicSearchString": "" }, { "githubUrl": "https://github.com/shipt/segmented-arc-for-react-native", @@ -74189,8 +73675,8 @@ "pushedAt": "2025-06-27T15:17:59Z", "forks": 12, "issues": 2, - "subscribers": 59, - "stars": 102, + "subscribers": 58, + "stars": 101, "dependencies": 1 }, "name": "@shipt/segmented-arc-for-react-native", @@ -74198,8 +73684,6 @@ "isPrivate": false, "description": "Segmented arc component for React Native", "topics": [ - "react", - "react-native", "ios", "android", "segmented-arc", @@ -74216,11 +73700,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1244, - "weekDownloads": 173, + "downloads": 909, + "weekDownloads": 229, "size": 62417, "latestRelease": "2.0.0", "latestReleaseDate": "2025-03-10T18:40:03.773Z" @@ -74230,8 +73715,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.118, - "topicSearchString": "react react-native ios android segmented-arc arc segmented-gauge" + "popularity": -0.535, + "topicSearchString": "ios android segmented-arc arc segmented-gauge" }, { "githubUrl": "https://github.com/Bur0/react-native-actions-sheet-picker", @@ -74270,7 +73755,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native component that provides a filterable select dropdown/picker.", "topics": [ - "react-native", "ios", "android", "select", @@ -74285,7 +73769,6 @@ "actions-sheet", "actionsheet", "filterable", - "react", "javascript" ], "license": { @@ -74298,13 +73781,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-actions-sheet-picker", "npm": { - "downloads": 365, - "weekDownloads": 30, + "downloads": 336, + "weekDownloads": 63, "size": 54672, "latestRelease": "0.3.5", "latestReleaseDate": "2022-08-11T08:52:53.342Z" @@ -74314,8 +73798,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.429, - "topicSearchString": "react-native ios android select searchable-select picker dropdown modal selector selectbox searchable option actions-sheet actionsheet filterable react javascript" + "popularity": -1.341, + "topicSearchString": "ios android select searchable-select picker dropdown modal selector selectbox searchable option actions-sheet actionsheet filterable javascript" }, { "githubUrl": "https://github.com/pavel-corsaghin/react-native-leaflet", @@ -74343,10 +73827,10 @@ "updatedAt": "2025-06-02T15:40:00Z", "createdAt": "2021-09-03T17:18:21Z", "pushedAt": "2025-06-02T15:40:00Z", - "forks": 42, + "forks": 43, "issues": 21, "subscribers": 3, - "stars": 148, + "stars": 152, "dependencies": 0 }, "name": "react-native-leaflet-view", @@ -74355,7 +73839,6 @@ "registry": "https://registry.npmjs.org/", "description": "A LeafletView component using WebView and Leaflet map for React Native applications", "topics": [ - "react-native", "ios", "android", "leaflet", @@ -74371,11 +73854,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 5684, - "weekDownloads": 782, + "downloads": 4588, + "weekDownloads": 1122, "size": 517438, "latestRelease": "1.1.2", "latestReleaseDate": "2025-06-02T15:39:53.882Z" @@ -74385,8 +73869,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.117, - "topicSearchString": "react-native ios android leaflet leaflet-map" + "popularity": 0.208, + "topicSearchString": "ios android leaflet leaflet-map" }, { "githubUrl": "https://github.com/kirillzyusko/react-native-keyboard-controller", @@ -74394,7 +73878,7 @@ "https://github.com/kirillzyusko/react-native-keyboard-controller/tree/main/example" ], "images": [ - "https://raw.githubusercontent.com/kirillzyusko/react-native-keyboard-controller/main/gifs/demo.gif" + "https://raw.githubusercontent.com/kirillzyusko/react-native-keyboard-controller/main/gifs/demo.png" ], "ios": true, "android": true, @@ -74410,13 +73894,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-09T08:23:05Z", + "updatedAt": "2025-10-20T11:58:48Z", "createdAt": "2022-04-17T18:00:04Z", - "pushedAt": "2025-09-09T08:23:05Z", - "forks": 120, - "issues": 46, - "subscribers": 13, - "stars": 2816, + "pushedAt": "2025-10-20T11:58:48Z", + "forks": 123, + "issues": 60, + "subscribers": 14, + "stars": 2934, "dependencies": 1 }, "name": "react-native-keyboard-controller", @@ -74425,7 +73909,6 @@ "registry": "https://registry.npmjs.org/", "description": "⌨️ Keyboard manager which works in identical way on both iOS and Android", "topics": [ - "react-native", "keyboard", "interactive", "dismiss", @@ -74457,25 +73940,26 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-keyboard-controller", "npm": { - "downloads": 1373622, - "weekDownloads": 227130, - "size": 1041429, - "latestRelease": "1.18.6", - "latestReleaseDate": "2025-09-01T14:56:26.511Z" + "downloads": 1457231, + "weekDownloads": 320984, + "size": 1105230, + "latestRelease": "1.19.2", + "latestReleaseDate": "2025-10-20T12:02:07.093Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.141, - "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" + "popularity": 0.187, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/craftzdog/react-native-quick-websql", @@ -74500,7 +73984,7 @@ "pushedAt": "2023-01-17T06:12:34Z", "forks": 3, "issues": 1, - "subscribers": 3, + "subscribers": 2, "stars": 45, "dependencies": 1 }, @@ -74510,7 +73994,6 @@ "registry": "https://registry.npmjs.org/", "description": "Fast WebSQL-compatible SQLite driver for React Native", "topics": [ - "react-native", "ios", "android", "sqlite", @@ -74527,13 +74010,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-quick-websql", "npm": { - "downloads": 181, - "weekDownloads": 18, + "downloads": 374, + "weekDownloads": 62, "size": 42762, "latestRelease": "0.3.0", "latestReleaseDate": "2023-01-17T06:12:43.872Z" @@ -74543,8 +74027,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.414, - "topicSearchString": "react-native ios android sqlite jsi typescript" + "popularity": -1.359, + "topicSearchString": "ios android sqlite jsi typescript" }, { "githubUrl": "https://github.com/TheWidlarzGroup/react-native-notificated", @@ -74567,10 +74051,10 @@ "updatedAt": "2024-10-14T14:47:04Z", "createdAt": "2021-12-02T18:02:34Z", "pushedAt": "2024-10-14T14:47:04Z", - "forks": 23, - "issues": 4, - "subscribers": 6, - "stars": 394, + "forks": 24, + "issues": 5, + "subscribers": 5, + "stars": 392, "dependencies": 0 }, "name": "react-native-notificated", @@ -74579,7 +74063,6 @@ "registry": "https://registry.npmjs.org/", "description": "⚡️React Native toast notifications", "topics": [ - "react-native", "ios", "android", "push-notifications", @@ -74598,12 +74081,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-notificated", "npm": { - "downloads": 6028, - "weekDownloads": 950, + "downloads": 4714, + "weekDownloads": 855, "size": 591251, "latestRelease": "0.1.7", "latestReleaseDate": "2024-10-14T14:46:58.189Z" @@ -74614,8 +74098,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.134, - "topicSearchString": "react-native ios android push-notifications notifications toast toast-notifications notification" + "popularity": 0.154, + "topicSearchString": "ios android push-notifications notifications toast toast-notifications notification" }, { "githubUrl": "https://github.com/oblador/react-native-esbuild", @@ -74641,8 +74125,8 @@ "pushedAt": "2023-07-11T07:12:37Z", "forks": 13, "issues": 2, - "subscribers": 7, - "stars": 603, + "subscribers": 6, + "stars": 601, "dependencies": 10 }, "name": "react-native-esbuild", @@ -74650,7 +74134,6 @@ "isPrivate": false, "description": "Fast bundler and dev server for react-native using esbuild", "topics": [ - "react-native", "esbuild", "dev-server", "development", @@ -74666,13 +74149,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-esbuild", "npm": { - "downloads": 42, - "weekDownloads": 1, + "downloads": 236, + "weekDownloads": 4, "size": 52997, "latestRelease": "0.6.0", "latestReleaseDate": "2023-07-11T07:12:43.301Z" @@ -74683,8 +74167,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.478, - "topicSearchString": "react-native esbuild dev-server development bundler" + "popularity": -1.485, + "topicSearchString": "esbuild dev-server development bundler" }, { "githubUrl": "https://github.com/apperside/cross-local-storage", @@ -74719,7 +74203,6 @@ "isPrivate": false, "description": "A small, typescript first, well tested, cross platform wrapper around react-native-async-storage/async-storage which works out of the on both the browser and react native", "topics": [ - "react", "library", "storybook", "components" @@ -74734,13 +74217,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "cross-local-storage", "npm": { - "downloads": 9, - "weekDownloads": 4, + "downloads": 37, + "weekDownloads": 0, "size": 1795929, "latestRelease": "0.0.5", "latestReleaseDate": "2022-09-24T08:20:59.233Z" @@ -74750,8 +74234,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, - "topicSearchString": "react library storybook components" + "popularity": -1, + "topicSearchString": "library storybook components" }, { "githubUrl": "https://github.com/howljs/rn-card-scanner", @@ -74780,7 +74264,7 @@ "forks": 11, "issues": 11, "subscribers": 2, - "stars": 94, + "stars": 95, "dependencies": 0 }, "name": "rn-card-scanner", @@ -74789,7 +74273,6 @@ "registry": "https://registry.npmjs.org/", "description": "This library provides payment card scanning functionality for your React Native app", "topics": [ - "react-native", "ios", "android", "card-scanner" @@ -74804,12 +74287,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "rn-card-scanner", "npm": { - "downloads": 4388, - "weekDownloads": 655, + "downloads": 4389, + "weekDownloads": 1517, "size": 137603552, "latestRelease": "1.1.2", "latestReleaseDate": "2024-03-13T05:08:49.979Z" @@ -74819,8 +74304,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.127, - "topicSearchString": "react-native ios android card-scanner" + "popularity": 0.294, + "topicSearchString": "ios android card-scanner" }, { "githubUrl": "https://github.com/isaced/react-native-cupertino-list", @@ -74847,7 +74332,7 @@ "pushedAt": "2023-03-15T12:33:14Z", "forks": 1, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 7, "dependencies": 0 }, @@ -74858,7 +74343,6 @@ "description": "a Cupertino/iOS list for React Native", "topics": [ "cupertino", - "react-native", "component" ], "license": { @@ -74871,13 +74355,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-cupertino-list", "npm": { - "downloads": 7, - "weekDownloads": 2, + "downloads": 111, + "weekDownloads": 3, "size": 16359, "latestRelease": "0.0.8", "latestReleaseDate": "2023-03-15T12:34:17.730Z" @@ -74887,8 +74372,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.35, - "topicSearchString": "cupertino react-native component" + "popularity": -1.727, + "topicSearchString": "cupertino component" }, { "githubUrl": "https://github.com/computerjazz/react-native-infinite-pager", @@ -74922,8 +74407,6 @@ "isPrivate": false, "description": "An infinitely-swipeable pager component.", "topics": [ - "react", - "native", "infinite", "pager", "swipe", @@ -74939,12 +74422,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-infinite-pager", "npm": { - "downloads": 13717, - "weekDownloads": 2108, + "downloads": 11812, + "weekDownloads": 2628, "size": 194270, "latestRelease": "0.3.18", "latestReleaseDate": "2024-08-17T00:25:09.282Z" @@ -74955,8 +74439,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.131, - "topicSearchString": "react native infinite pager swipe slideshow" + "popularity": 0.189, + "topicSearchString": "infinite pager swipe slideshow" }, { "githubUrl": "https://github.com/th3rdwave/react-navigation-bottom-sheet", @@ -74980,10 +74464,10 @@ "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, + "stars": 458, "dependencies": 0 }, "name": "@th3rdwave/react-navigation-bottom-sheet", @@ -74992,8 +74476,7 @@ "registry": "https://registry.npmjs.org/", "description": "Bottom sheet component for React Navigation", "topics": [ - "react-native", - "react-navigation", + "navigation", "bottom-sheet" ], "license": { @@ -75006,11 +74489,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 31721, - "weekDownloads": 5333, + "downloads": 42851, + "weekDownloads": 7911, "size": 64815, "latestRelease": "0.3.2", "latestReleaseDate": "2024-06-01T03:32:08.143Z" @@ -75021,8 +74505,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.143, - "topicSearchString": "react-native react-navigation bottom-sheet" + "popularity": 0.157, + "topicSearchString": "navigation bottom-sheet" }, { "githubUrl": "https://github.com/Liamandrew/react-native-picky", @@ -75052,8 +74536,8 @@ "pushedAt": "2022-07-16T06:06:28Z", "forks": 11, "issues": 7, - "subscribers": 3, - "stars": 58, + "subscribers": 2, + "stars": 57, "dependencies": 0 }, "name": "react-native-picky", @@ -75062,12 +74546,10 @@ "registry": "https://registry.npmjs.org/", "description": "An awesome native wheel picker component for React Native.", "topics": [ - "react-native", "ios", "android", "picker", "wheel", - "react", "typescript", "wheelpicker" ], @@ -75081,13 +74563,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-picky", "npm": { - "downloads": 702, - "weekDownloads": 92, + "downloads": 633, + "weekDownloads": 143, "size": 97781, "latestRelease": "0.4.0", "latestReleaseDate": "2022-07-16T06:06:24.860Z" @@ -75097,8 +74580,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.388, - "topicSearchString": "react-native ios android picker wheel react typescript wheelpicker" + "popularity": -1.307, + "topicSearchString": "ios android picker wheel typescript wheelpicker" }, { "githubUrl": "https://github.com/b0iq/react-native-place-picker", @@ -75121,8 +74604,8 @@ "updatedAt": "2024-09-22T11:22:36Z", "createdAt": "2022-06-17T16:21:54Z", "pushedAt": "2024-09-22T11:22:36Z", - "forks": 8, - "issues": 2, + "forks": 9, + "issues": 5, "subscribers": 1, "stars": 127, "dependencies": 0 @@ -75132,14 +74615,12 @@ "isPrivate": false, "description": "Pick any place with single click 🚀", "topics": [ - "react-native", "expo", "place-picker", "reactnativeplacepicker", "android", "ios", "kotlin", - "react", "reactjs", "swift", "typescript" @@ -75154,12 +74635,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "react-native-place-picker", "npm": { - "downloads": 589, - "weekDownloads": 99, + "downloads": 1004, + "weekDownloads": 152, "size": 93346, "latestRelease": "3.0.8", "latestReleaseDate": "2024-09-22T11:22:54.350Z" @@ -75169,8 +74652,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, - "topicSearchString": "react-native expo place-picker reactnativeplacepicker android ios kotlin react reactjs swift typescript" + "popularity": 0.129, + "topicSearchString": "expo place-picker reactnativeplacepicker android ios kotlin reactjs swift typescript" }, { "githubUrl": "https://github.com/Shopify/react-native-performance/tree/main/packages/react-native-performance", @@ -75191,23 +74674,21 @@ "hasWiki": false, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2024-04-10T19:41:42Z", "createdAt": "2022-04-26T14:24:03Z", "pushedAt": "2024-04-10T19:41:42Z", "forks": 51, "issues": 15, - "subscribers": 232, - "stars": 978, + "subscribers": 230, + "stars": 984, "dependencies": 0 }, "name": "@shopify/react-native-performance", "fullName": "Shopify/react-native-performance", "isPrivate": false, "description": "A library for measuring the render times for the different flows in your app.", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -75218,11 +74699,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 53610, - "weekDownloads": 5820, + "downloads": 22669, + "weekDownloads": 6033, "size": 881469, "latestRelease": "4.1.2", "latestReleaseDate": "2022-08-30T08:03:01.929Z" @@ -75234,12 +74716,13 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.092, - "topicSearchString": "react-native" + "popularity": 0.226, + "topicSearchString": "" }, { "githubUrl": "https://github.com/bndkt/react-native-app-clip", "expoGo": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/bndkt/react-native-app-clip", @@ -75254,9 +74737,9 @@ "updatedAt": "2025-05-12T16:31:15Z", "createdAt": "2022-06-14T01:25:17Z", "pushedAt": "2025-05-12T16:31:15Z", - "forks": 30, - "issues": 8, - "subscribers": 10, + "forks": 31, + "issues": 10, + "subscribers": 9, "stars": 620, "dependencies": 2 }, @@ -75265,7 +74748,6 @@ "isPrivate": false, "description": "Easily add an App Clip for iOS apps built with React Native", "topics": [ - "react-native", "expo", "app-clip", "reactnativeappclip", @@ -75281,12 +74763,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-app-clip", "npm": { - "downloads": 37765, - "weekDownloads": 7052, + "downloads": 32318, + "weekDownloads": 7069, "size": 68597, "latestRelease": "0.6.1", "latestReleaseDate": "2025-05-12T16:32:11.452Z" @@ -75296,8 +74780,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.159, - "topicSearchString": "react-native expo app-clip reactnativeappclip ios" + "popularity": 0.186, + "topicSearchString": "expo app-clip reactnativeappclip ios" }, { "githubUrl": "https://github.com/ivanmoskalev/react-native-compressed-jsbundle", @@ -75331,7 +74815,6 @@ "registry": "https://registry.npmjs.org/", "description": "Ship React Native .jsbundles compressed by Brotli algorithm. ", "topics": [ - "react-native", "ios", "android", "brotli", @@ -75347,13 +74830,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-compressed-jsbundle", "npm": { - "downloads": 343, - "weekDownloads": 75, + "downloads": 414, + "weekDownloads": 118, "size": 2151590, "latestRelease": "0.1.2", "latestReleaseDate": "2021-09-20T10:31:10.297Z" @@ -75363,8 +74847,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.313, - "topicSearchString": "react-native ios android brotli compression" + "popularity": -1.257, + "topicSearchString": "ios android brotli compression" }, { "githubUrl": "https://github.com/LinusU/react-native-get-random-values", @@ -75388,8 +74872,8 @@ "pushedAt": "2024-03-06T17:24:07Z", "forks": 49, "issues": 11, - "subscribers": 7, - "stars": 385, + "subscribers": 6, + "stars": 390, "dependencies": 1 }, "name": "react-native-get-random-values", @@ -75402,7 +74886,6 @@ "get-random-values", "getrandomvalues", "polyfill", - "react-native", "webcrypto", "rng", "random", @@ -75419,35 +74902,34 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-get-random-values", "npm": { - "downloads": 5396388, - "weekDownloads": 910303, + "downloads": 5304881, + "weekDownloads": 1216527, "size": 20018, "latestRelease": "1.11.0", "latestReleaseDate": "2024-03-06T17:25:12.791Z" }, - "score": 81, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.143, - "topicSearchString": "crypto.getrandomvalues crypto get-random-values getrandomvalues polyfill react-native webcrypto rng random javascript hacktoberfest" + "popularity": 0.195, + "topicSearchString": "crypto.getrandomvalues crypto get-random-values getrandomvalues polyfill webcrypto rng random javascript hacktoberfest" }, { "githubUrl": "https://github.com/Shopify/react-native-skia/tree/main/packages/skia", "npmPkg": "@shopify/react-native-skia", "examples": [ - "https://github.com/Shopify/react-native-skia/tree/main/apps/fabric", - "https://github.com/Shopify/react-native-skia/tree/main/apps/paper", - "https://github.com/Shopify/react-native-skia/tree/main/apps/remotion", - "https://github.com/Shopify/react-native-skia/tree/main/external-apps/expo-router-app" + "https://github.com/Shopify/react-native-skia/tree/main/apps/example", + "https://github.com/Shopify/react-native-skia/tree/main/apps/headless", + "https://github.com/Shopify/react-native-skia/tree/main/apps/remotion" ], "android": true, "ios": true, @@ -75464,23 +74946,21 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": true, - "hasTopics": true, - "updatedAt": "2025-09-12T08:24:45Z", + "hasTopics": false, + "updatedAt": "2025-10-20T16:37:23Z", "createdAt": "2021-11-08T13:19:09Z", - "pushedAt": "2025-09-12T08:24:45Z", - "forks": 515, - "issues": 80, - "subscribers": 270, - "stars": 7816, + "pushedAt": "2025-10-20T16:37:23Z", + "forks": 523, + "issues": 76, + "subscribers": 271, + "stars": 7894, "dependencies": 2 }, "name": "@shopify/react-native-skia", "fullName": "Shopify/react-native-skia", "isPrivate": false, "description": "High-performance React Native Graphics using Skia", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -75491,14 +74971,16 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 1287237, - "weekDownloads": 218800, - "size": 441871963, - "latestRelease": "2.2.14", - "latestReleaseDate": "2025-09-12T08:53:55.503Z" + "downloads": 1258116, + "weekDownloads": 270917, + "size": 9253651, + "latestRelease": "2.3.5", + "latestReleaseDate": "2025-10-20T11:47:02.112Z" }, "score": 89, "matchingScoreModifiers": [ @@ -75508,8 +74990,8 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.144, - "topicSearchString": "react-native" + "popularity": 0.183, + "topicSearchString": "" }, { "githubUrl": "https://github.com/Shopify/flash-list", @@ -75534,21 +75016,20 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T23:42:02Z", + "updatedAt": "2025-09-25T16:26:48Z", "createdAt": "2021-12-20T15:48:14Z", - "pushedAt": "2025-09-11T23:42:02Z", - "forks": 295, - "issues": 44, - "subscribers": 249, - "stars": 6615, - "dependencies": 1 + "pushedAt": "2025-09-25T16:26:48Z", + "forks": 309, + "issues": 56, + "subscribers": 247, + "stars": 6708, + "dependencies": 0 }, "name": "@shopify/flash-list", "fullName": "Shopify/flash-list", "isPrivate": false, "description": "A better list for React Native", "topics": [ - "react-native", "recyclerview", "listview", "flatlist-alternative", @@ -75569,14 +75050,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2182703, - "weekDownloads": 352038, - "size": 1144626, - "latestRelease": "2.0.3", - "latestReleaseDate": "2025-08-21T17:00:57.596Z" + "downloads": 2304856, + "weekDownloads": 528195, + "size": 804730, + "latestRelease": "2.1.0", + "latestReleaseDate": "2025-09-25T16:30:34.501Z" }, "score": 97, "matchingScoreModifiers": [ @@ -75586,8 +75068,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.137, - "topicSearchString": "react-native recyclerview listview flatlist-alternative flatlist recyclerlistview 60fps cross-platform web performance" + "popularity": 0.195, + "topicSearchString": "recyclerview listview flatlist-alternative flatlist recyclerlistview 60fps cross-platform web performance" }, { "githubUrl": "https://github.com/callstack/reassure/tree/main/packages/reassure", @@ -75612,9 +75094,9 @@ "createdAt": "2022-02-24T08:34:03Z", "pushedAt": "2025-03-12T09:58:56Z", "forks": 37, - "issues": 10, - "subscribers": 21, - "stars": 1378, + "issues": 11, + "subscribers": 20, + "stars": 1392, "dependencies": 5 }, "name": "reassure", @@ -75622,7 +75104,6 @@ "isPrivate": false, "description": "Performance testing companion for React and React Native", "topics": [ - "react-native", "ios", "android" ], @@ -75636,12 +75117,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "reassure", "npm": { - "downloads": 314136, - "weekDownloads": 46933, + "downloads": 471839, + "weekDownloads": 114020, "size": 30430, "latestRelease": "1.4.0", "latestReleaseDate": "2025-03-12T09:59:52.922Z" @@ -75653,8 +75135,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.127, - "topicSearchString": "react-native ios android" + "popularity": 0.205, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/talknagish/react-native-turbo-starter", @@ -75688,7 +75170,6 @@ "registry": "https://registry.npmjs.org/", "description": "React 0.68+ Turbo Module starter using codegen with typescript for Objective-C and Java/Kotlin with C++ shared library. 🚀🚀🚀", "topics": [ - "react-native", "ios", "android" ], @@ -75702,18 +75183,19 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-turbo-starter", "npm": {}, - "score": 32, + "score": 43, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Known", + "Not updated recently" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/leotm/react-native-template-new-architecture", @@ -75731,21 +75213,20 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-05T17:02:15Z", + "updatedAt": "2025-10-20T12:45:03Z", "createdAt": "2020-04-24T16:50:07Z", - "pushedAt": "2025-09-05T17:02:15Z", + "pushedAt": "2025-10-20T12:45:03Z", "forks": 27, "issues": 25, - "subscribers": 2, + "subscribers": 1, "stars": 250, "dependencies": 14 }, "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", "eslint", "prettier", @@ -75760,18 +75241,20 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-template-new-architecture", "npm": {}, - "score": 38, + "score": 46, "matchingScoreModifiers": [ + "Known", "No license", "Recently updated", "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native typescript eslint prettier storybook m1 arm64 android ios gradle" + "topicSearchString": "typescript eslint prettier storybook m1 arm64 android ios gradle" }, { "githubUrl": "https://github.com/mmazzarolo/react-native-universal-monorepo", @@ -75795,10 +75278,10 @@ "updatedAt": "2022-05-29T10:21:24Z", "createdAt": "2021-09-07T10:02:07Z", "pushedAt": "2022-05-29T10:21:24Z", - "forks": 154, + "forks": 155, "issues": 16, - "subscribers": 31, - "stars": 1729, + "subscribers": 30, + "stars": 1730, "dependencies": 0 }, "name": "react-native-universal-project", @@ -75806,8 +75289,6 @@ "isPrivate": true, "description": "React Native boilerplate supporting multiple platforms: Android, iOS, macOS, Windows, web, browser extensions, Electron.", "topics": [ - "react-native", - "react", "electron", "web", "android", @@ -75825,18 +75306,21 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-universal-monorepo", "npm": {}, - "score": 32, + "score": 57, "matchingScoreModifiers": [ + "Popular", + "Known", "Not updated recently", "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native react electron web android ios windows macos" + "topicSearchString": "electron web android ios windows macos" }, { "githubUrl": "https://github.com/Abhinandan-Kushwaha/react-native-gifted-charts", @@ -75861,13 +75345,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-31T14:04:01Z", + "updatedAt": "2025-09-17T18:59:28Z", "createdAt": "2021-07-30T13:10:45Z", - "pushedAt": "2025-08-31T14:04:01Z", + "pushedAt": "2025-09-17T18:59:28Z", "forks": 181, - "issues": 97, + "issues": 101, "subscribers": 6, - "stars": 1104, + "stars": 1146, "dependencies": 1 }, "name": "react-native-gifted-charts", @@ -75889,8 +75373,6 @@ "star", "population", "pyramid", - "react", - "react-native", "barchart", "piechart", "line-charts", @@ -75908,26 +75390,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-gifted-charts", "npm": { - "downloads": 280014, - "weekDownloads": 47908, + "downloads": 291924, + "weekDownloads": 65761, "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.145, - "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" + "popularity": 0.191, + "topicSearchString": "chart charts graph data-visualization bar pie donut area line radar star population pyramid barchart piechart line-charts pie-chart donut-chart area-chart" }, { "githubUrl": "https://github.com/Luffos/rxn-input", @@ -75959,9 +75441,7 @@ "isPrivate": false, "description": "🎮 🖱️ ⌨️‎ ‎ Cross-Platform Input Handler for React Native and React Native Web.", "topics": [ - "react", "typescript", - "react-native", "input", "web", "rxn", @@ -75984,12 +75464,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rxn-input", "npm": { - "downloads": 0, - "weekDownloads": 0, + "downloads": 23, + "weekDownloads": 20, "size": 100091, "latestRelease": "0.0.1", "latestReleaseDate": "2022-11-30T06:03:59.091Z" @@ -75999,8 +75480,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react typescript react-native input web rxn gamepad keyboard mouse keyboard-events android ios listener gamepad-inputs" + "popularity": -0.95, + "topicSearchString": "typescript input web rxn gamepad keyboard mouse keyboard-events android ios listener gamepad-inputs" }, { "githubUrl": "https://github.com/wobsoriano/rn-perfect-sketch-canvas", @@ -76028,7 +75509,7 @@ "pushedAt": "2023-12-14T19:25:31Z", "forks": 18, "issues": 13, - "subscribers": 5, + "subscribers": 4, "stars": 152, "dependencies": 2 }, @@ -76038,13 +75519,11 @@ "registry": "https://registry.npmjs.org/", "description": "Perfect pressure-sensitive drawing for both iOS and Android.", "topics": [ - "react-native", "ios", "android", "sketch", "canvas", - "skia", - "react" + "skia" ], "license": { "key": "mit", @@ -76056,12 +75535,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-perfect-sketch-canvas", "npm": { - "downloads": 451, - "weekDownloads": 69, + "downloads": 476, + "weekDownloads": 100, "size": 80063, "latestRelease": "0.3.0", "latestReleaseDate": "2022-08-03T22:01:13.102Z" @@ -76071,8 +75551,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.62, - "topicSearchString": "react-native ios android sketch canvas skia react" + "popularity": -0.571, + "topicSearchString": "ios android sketch canvas skia" }, { "githubUrl": "https://github.com/uragirii/rn-skia-sketch-canvas", @@ -76108,7 +75588,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native component for drawing by touching using Skia renderer", "topics": [ - "react-native", "ios", "android" ], @@ -76122,12 +75601,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-skia-sketch-canvas", "npm": { - "downloads": 13, + "downloads": 12, "weekDownloads": 0, "size": 57576, "latestRelease": "0.3.1", @@ -76139,7 +75619,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/FormidableLabs/react-native-zephyr/tree/master/packages/core", @@ -76166,7 +75646,7 @@ "pushedAt": "2023-06-06T17:48:04Z", "forks": 5, "issues": 10, - "subscribers": 32, + "subscribers": 31, "stars": 346, "dependencies": 0 }, @@ -76175,8 +75655,6 @@ "isPrivate": false, "description": "TailwindCSS-inspired styling library for React Native", "topics": [ - "react", - "react-native", "styling", "tailwind-css" ], @@ -76190,12 +75668,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 203, - "weekDownloads": 80, + "downloads": 212, + "weekDownloads": 14, "size": 911621, "latestRelease": "1.1.2", "latestReleaseDate": "2023-06-06T17:49:16.736Z" @@ -76206,8 +75685,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.16, - "topicSearchString": "react react-native styling tailwind-css" + "popularity": -1.443, + "topicSearchString": "styling tailwind-css" }, { "githubUrl": "https://github.com/inokawa/react-native-react-bridge", @@ -76237,8 +75716,8 @@ "pushedAt": "2025-09-01T00:56:51Z", "forks": 26, "issues": 8, - "subscribers": 3, - "stars": 284, + "subscribers": 2, + "stars": 287, "dependencies": 4 }, "name": "react-native-react-bridge", @@ -76246,16 +75725,14 @@ "isPrivate": false, "description": "An easy way to integrate your React (or Preact/React Native Web) app into React Native app with WebView.", "topics": [ - "react", - "react-native", "expo", - "react-dom", + "dom", "preact", "web", "metro", "webview", "html", - "react-hooks", + "hooks", "webassembly" ], "license": { @@ -76268,24 +75745,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-react-bridge", "npm": { - "downloads": 5337, - "weekDownloads": 878, + "downloads": 5879, + "weekDownloads": 1226, "size": 52187, "latestRelease": "0.12.4", "latestReleaseDate": "2025-03-04T22:57:35.288Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.14, - "topicSearchString": "react react-native expo react-dom preact web metro webview html react-hooks webassembly" + "popularity": 0.177, + "topicSearchString": "expo dom preact web metro webview html hooks webassembly" }, { "githubUrl": "https://github.com/alabsi91/reanimated-color-picker", @@ -76329,8 +75806,8 @@ "pushedAt": "2025-09-11T10:10:29Z", "forks": 22, "issues": 4, - "subscribers": 3, - "stars": 393, + "subscribers": 2, + "stars": 408, "dependencies": 0 }, "name": "reanimated-color-picker", @@ -76338,7 +75815,6 @@ "isPrivate": false, "description": "A Pure JavaScript Color Picker for React Native", "topics": [ - "react-native", "color-picker", "expo", "android", @@ -76369,24 +75845,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "reanimated-color-picker", "npm": { - "downloads": 113739, - "weekDownloads": 19575, + "downloads": 132794, + "weekDownloads": 31882, "size": 3713380, "latestRelease": "4.1.1", "latestReleaseDate": "2025-09-11T10:27:28.162Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.146, - "topicSearchString": "react-native color-picker expo android ios web reanimated color picker wheel slider swatches palette rgb hex hsl hsv hwb colorkit renimated" + "popularity": 0.204, + "topicSearchString": "color-picker expo android ios web reanimated color picker wheel slider swatches palette rgb hex hsl hsv hwb colorkit renimated" }, { "githubUrl": "https://github.com/alabsi91/react-native-material-you-colors", @@ -76414,8 +75889,8 @@ "pushedAt": "2025-05-24T12:36:48Z", "forks": 0, "issues": 2, - "subscribers": 3, - "stars": 35, + "subscribers": 2, + "stars": 37, "dependencies": 1 }, "name": "react-native-material-you-colors", @@ -76425,7 +75900,6 @@ "description": "Bring Material You color palettes to Android, iOS, and web platforms.", "topics": [ "web", - "react-native", "palette", "material-you", "material-design", @@ -76446,22 +75920,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-material-you-colors", "npm": { - "downloads": 95, - "weekDownloads": 3, + "downloads": 185, + "weekDownloads": 33, "size": 440753, "latestRelease": "0.1.2", "latestReleaseDate": "2023-10-23T11:59:37.795Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.723, - "topicSearchString": "web react-native palette material-you material-design ios dynamic-color colors android expo palette-generation" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.597, + "topicSearchString": "web palette material-you material-design ios dynamic-color colors android expo palette-generation" }, { "githubUrl": "https://github.com/teovillanueva/react-native-web-maps/tree/main/packages/react-native-web-maps", @@ -76503,7 +75977,6 @@ "registry": "https://registry.npmjs.org/", "description": "Cross platform maps for react & react-native", "topics": [ - "react-native", "web", "maps", "maps", @@ -76520,11 +75993,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 58762, - "weekDownloads": 12023, + "downloads": 39644, + "weekDownloads": 8749, "size": 331001, "latestRelease": "0.9.5", "latestReleaseDate": "2024-04-25T15:20:35.662Z" @@ -76534,8 +76008,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.174, - "topicSearchString": "react-native web maps maps ios android" + "popularity": 0.188, + "topicSearchString": "web maps maps ios android" }, { "githubUrl": "https://github.com/likashefqet/react-native-image-zoom", @@ -76563,10 +76037,10 @@ "updatedAt": "2024-12-20T13:20:41Z", "createdAt": "2021-12-09T05:46:30Z", "pushedAt": "2024-12-20T13:20:41Z", - "forks": 50, - "issues": 3, + "forks": 51, + "issues": 1, "subscribers": 8, - "stars": 476, + "stars": 484, "dependencies": 0 }, "name": "@likashefqet/react-native-image-zoom", @@ -76584,8 +76058,6 @@ "reanimated", "gesture", "instagram", - "react", - "react-native", "image-zoom", "zoom-image", "zoomable-image", @@ -76606,23 +76078,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 164490, - "weekDownloads": 27560, + "downloads": 180040, + "weekDownloads": 38431, "size": 205566, "latestRelease": "4.3.0", "latestReleaseDate": "2024-12-20T13:22:58.902Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.142, - "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" + "popularity": 0.181, + "topicSearchString": "photo image picture zoom pinch pan reanimated gesture instagram image-zoom zoom-image zoomable-image zoomable javascript ui-lib rn likashefqet likashefi" }, { "githubUrl": "https://github.com/barthap/expo-music-picker", @@ -76630,6 +76102,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", @@ -76655,7 +76128,6 @@ "isPrivate": false, "description": " A music picker library for React Native. Provides access to the system's UI for selecting songs from the phone's music library.", "topics": [ - "react-native", "expo", "expo-music-picker", "music", @@ -76676,13 +76148,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "unmaintained": true, "npmPkg": "expo-music-picker", "npm": { - "downloads": 18, - "weekDownloads": 1, + "downloads": 98, + "weekDownloads": 10, "size": 71006, "latestRelease": "0.1.1", "latestReleaseDate": "2022-07-14T12:21:54.392Z" @@ -76692,8 +76166,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.45, - "topicSearchString": "react-native expo expo-music-picker music picker music-picker expomusicpicker android ios music-metadata" + "popularity": -1.413, + "topicSearchString": "expo expo-music-picker music picker music-picker expomusicpicker android ios music-metadata" }, { "githubUrl": "https://github.com/OvalMoney/react-native-fitness", @@ -76716,8 +76190,8 @@ "pushedAt": "2021-05-12T15:37:01Z", "forks": 62, "issues": 22, - "subscribers": 11, - "stars": 358, + "subscribers": 10, + "stars": 359, "dependencies": 0 }, "name": "@ovalmoney/react-native-fitness", @@ -76725,9 +76199,6 @@ "isPrivate": false, "description": " A React Native module to interact with Apple Healthkit and Google Fit.", "topics": [ - "react", - "native", - "react-native", "health-kit", "google-fit", "fitness", @@ -76745,12 +76216,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 635, - "weekDownloads": 61, + "downloads": 757, + "weekDownloads": 152, "size": 197655, "latestRelease": "0.5.3", "latestReleaseDate": "2021-04-19T16:27:44.896Z" @@ -76761,8 +76233,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.418, - "topicSearchString": "react native react-native health-kit google-fit fitness android ios apple-health" + "popularity": -1.329, + "topicSearchString": "health-kit google-fit fitness android ios apple-health" }, { "githubUrl": "https://github.com/dcangulo/react-native-outside-press", @@ -76790,7 +76262,7 @@ "forks": 6, "issues": 6, "subscribers": 2, - "stars": 136, + "stars": 141, "dependencies": 0 }, "name": "react-native-outside-press", @@ -76798,11 +76270,9 @@ "isPrivate": false, "description": "airbnb/react-outside-click-handler but for React Native.", "topics": [ - "react-native", "ios", "android", "expo", - "react", "macos", "web", "windows", @@ -76818,12 +76288,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-outside-press", "npm": { - "downloads": 55591, - "weekDownloads": 9319, + "downloads": 55753, + "weekDownloads": 12564, "size": 50287, "latestRelease": "1.2.2", "latestReleaseDate": "2024-01-02T04:41:39.274Z" @@ -76833,8 +76304,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "react-native ios android expo react macos web windows reactjs" + "popularity": 0.192, + "topicSearchString": "ios android expo macos web windows reactjs" }, { "githubUrl": "https://github.com/websitebeaver/react-native-document-scanner-plugin", @@ -76844,10 +76315,11 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/WebsiteBeaver/react-native-document-scanner-plugin", - "homepage": "https://react-native-document-scanner.js.org/" + "homepage": "https://react-native-document-scanner.js.org" }, "stats": { "hasIssues": true, @@ -76855,13 +76327,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2024-10-24T00:32:39Z", + "updatedAt": "2025-09-29T22:34:31Z", "createdAt": "2022-07-23T22:45:42Z", - "pushedAt": "2024-10-24T00:32:39Z", - "forks": 86, - "issues": 36, - "subscribers": 11, - "stars": 366, + "pushedAt": "2025-09-29T22:34:31Z", + "forks": 91, + "issues": 35, + "subscribers": 10, + "stars": 380, "dependencies": 0 }, "name": "react-native-document-scanner-plugin", @@ -76870,7 +76342,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native document scanner plugin for Android and iOS", "topics": [ - "react-native", "ios", "android", "document-scanner" @@ -76883,26 +76354,27 @@ "id": "MDc6TGljZW5zZTEz" }, "hasTypes": true, - "newArchitecture": false, + "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-document-scanner-plugin", "npm": { - "downloads": 112035, - "weekDownloads": 20776, - "size": 69191, - "latestRelease": "1.0.1", - "latestReleaseDate": "2024-10-24T00:38:07.567Z" + "downloads": 81221, + "weekDownloads": 17667, + "size": 53842, + "latestRelease": "2.0.2", + "latestReleaseDate": "2025-09-29T22:38:03.550Z" }, - "score": 41, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.158, - "topicSearchString": "react-native ios android document-scanner" + "popularity": 0.185, + "topicSearchString": "ios android document-scanner" }, { "githubUrl": "https://github.com/thakurballary/react-native-btr", @@ -76923,13 +76395,13 @@ "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, - "stars": 144, + "stars": 150, "dependencies": 3 }, "name": "react-native-btr", @@ -76960,12 +76432,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-btr", "npm": { - "downloads": 6951, - "weekDownloads": 1055, + "downloads": 10123, + "weekDownloads": 1721, "size": 20186, "latestRelease": "2.2.2", "latestReleaseDate": "2025-07-25T18:47:49.602Z" @@ -76974,7 +76447,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.129, + "popularity": 0.145, "topicSearchString": "android ios bottomsheet checkbox collapsible-card color-picker radio-buttons snackbar tags ui-components ui-elements icon-picker" }, { @@ -77004,8 +76477,8 @@ "pushedAt": "2025-08-07T09:09:30Z", "forks": 18, "issues": 24, - "subscribers": 29, - "stars": 281, + "subscribers": 28, + "stars": 284, "dependencies": 1 }, "name": "@react-native-ama/core", @@ -77013,7 +76486,6 @@ "isPrivate": false, "description": "Accessible Mobile App Library for React Native", "topics": [ - "react-native", "a11y", "accessibility" ], @@ -77027,11 +76499,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2723, - "weekDownloads": 484, + "downloads": 2676, + "weekDownloads": 638, "size": 81407, "latestRelease": "1.2.1", "latestReleaseDate": "2025-08-07T09:10:45.848Z" @@ -77041,8 +76514,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.151, - "topicSearchString": "react-native a11y accessibility" + "popularity": 0.203, + "topicSearchString": "a11y accessibility" }, { "githubUrl": "https://github.com/xulihang/vision-camera-dynamsoft-label-recognizer", @@ -77067,7 +76540,7 @@ "pushedAt": "2025-09-11T05:49:23Z", "forks": 5, "issues": 0, - "subscribers": 3, + "subscribers": 2, "stars": 39, "dependencies": 0 }, @@ -77077,7 +76550,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Vision Camera Frame Processor Plugin of Dynamsoft Label Recognizer", "topics": [ - "react-native", "mrz", "machine-readable-zone", "ocr", @@ -77095,23 +76567,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "vision-camera-dynamsoft-label-recognizer", "npm": { - "downloads": 189, - "weekDownloads": 43, + "downloads": 348, + "weekDownloads": 34, "size": 204902, "latestRelease": "3.1.0", "latestReleaseDate": "2025-02-26T07:43:10.305Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.555, - "topicSearchString": "react-native mrz machine-readable-zone ocr optical-character-recognition ios android" + "popularity": -0.666, + "topicSearchString": "mrz machine-readable-zone ocr optical-character-recognition ios android" }, { "githubUrl": "https://github.com/mateoguzmana/react-native-fiesta", @@ -77142,7 +76615,7 @@ "forks": 12, "issues": 0, "subscribers": 7, - "stars": 567, + "stars": 569, "dependencies": 0 }, "name": "react-native-fiesta", @@ -77151,16 +76624,14 @@ "registry": "https://registry.npmjs.org/", "description": "🎉 A set of celebration animations powered by @shopify/react-native-skia. Engage more with your users by celebrating in your React Native application.", "topics": [ - "react-native", "ios", "android", - "@shopify/skia", + "@shopify/-skia", "web", "skia", "animations", - "react-component", + "component", "javascript", - "react", "typescript", "hacktoberfest" ], @@ -77174,12 +76645,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-fiesta", "npm": { - "downloads": 659, - "weekDownloads": 89, + "downloads": 1032, + "weekDownloads": 223, "size": 300788, "latestRelease": "0.7.0", "latestReleaseDate": "2024-06-09T14:00:18.830Z" @@ -77190,8 +76662,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.635, - "topicSearchString": "react-native ios android @shopify/skia web skia animations react-component javascript react typescript hacktoberfest" + "popularity": 0.184, + "topicSearchString": "ios android @shopify/-skia web skia animations component javascript typescript hacktoberfest" }, { "githubUrl": "https://github.com/aarongrider/vision-camera-ocr", @@ -77218,10 +76690,10 @@ "updatedAt": "2022-02-21T22:35:42Z", "createdAt": "2022-02-18T03:04:41Z", "pushedAt": "2022-02-21T22:35:42Z", - "forks": 61, - "issues": 28, + "forks": 62, + "issues": 29, "subscribers": 5, - "stars": 270, + "stars": 271, "dependencies": 0 }, "name": "vision-camera-ocr", @@ -77230,7 +76702,6 @@ "registry": "https://registry.npmjs.org/", "description": "VisionCamera Frame Processor Plugin to detect text in real time using MLKit Text Detector (OCR)", "topics": [ - "react-native", "ios", "android", "mobile", @@ -77246,13 +76717,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "vision-camera-ocr", "npm": { - "downloads": 793, - "weekDownloads": 94, + "downloads": 509, + "weekDownloads": 80, "size": 48307, "latestRelease": "1.0.0", "latestReleaseDate": "2022-02-21T22:35:39.641Z" @@ -77263,8 +76735,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.399, - "topicSearchString": "react-native ios android mobile camera" + "popularity": -1.366, + "topicSearchString": "ios android mobile camera" }, { "githubUrl": "https://github.com/klarna-incubator/react-native-vector-drawable", @@ -77291,7 +76763,7 @@ "pushedAt": "2024-02-10T13:37:31Z", "forks": 7, "issues": 1, - "subscribers": 8, + "subscribers": 7, "stars": 33, "dependencies": 0 }, @@ -77300,8 +76772,6 @@ "isPrivate": false, "description": "Android vector drawables in React Native", "topics": [ - "react-native", - "react", "mobile", "android", "ui", @@ -77319,11 +76789,12 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 6809, - "weekDownloads": 1187, + "downloads": 5633, + "weekDownloads": 1891, "size": 30013, "latestRelease": "0.5.1", "latestReleaseDate": "2024-02-10T13:33:14.155Z" @@ -77332,8 +76803,8 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": 0.148, - "topicSearchString": "react-native react mobile android ui vector image component" + "popularity": 0.285, + "topicSearchString": "mobile android ui vector image component" }, { "githubUrl": "https://github.com/wix/Detox/tree/master/detox", @@ -77349,6 +76820,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", @@ -77360,13 +76832,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-02T15:03:42Z", + "updatedAt": "2025-10-19T16:08:59Z", "createdAt": "2016-06-15T11:58:01Z", - "pushedAt": "2025-09-02T15:03:42Z", - "forks": 1885, - "issues": 194, + "pushedAt": "2025-10-19T16:08:59Z", + "forks": 1884, + "issues": 197, "subscribers": 370, - "stars": 11618, + "stars": 11675, "dependencies": 37 }, "name": "detox", @@ -77384,15 +76856,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "detox", "npm": { - "downloads": 1479056, - "weekDownloads": 226948, - "size": 14920534, - "latestRelease": "20.41.1", - "latestReleaseDate": "2025-09-02T15:03:46.778Z" + "downloads": 1495470, + "weekDownloads": 360584, + "size": 14944362, + "latestRelease": "20.44.0", + "latestReleaseDate": "2025-10-19T16:09:03.654Z" }, "score": 86, "matchingScoreModifiers": [ @@ -77403,7 +76876,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.13, + "popularity": 0.205, "topicSearchString": "" }, { @@ -77412,7 +76885,8 @@ "https://github.com/dev-family/react-native-wallet-manager/tree/main/example" ], "images": [ - "https://raw.githubusercontent.com/dev-family/react-native-wallet-manager/main/docs/screenshot.gif" + "https://raw.githubusercontent.com/dev-family/react-native-wallet-manager/main/docs/android.gif", + "https://raw.githubusercontent.com/dev-family/react-native-wallet-manager/main/docs/ios.gif" ], "ios": true, "github": { @@ -77429,10 +76903,10 @@ "updatedAt": "2024-10-17T11:27:50Z", "createdAt": "2021-08-10T07:31:15Z", "pushedAt": "2024-10-17T11:27:50Z", - "forks": 17, + "forks": 18, "issues": 3, - "subscribers": 4, - "stars": 182, + "subscribers": 3, + "stars": 188, "dependencies": 0 }, "name": "react-native-wallet-manager", @@ -77441,7 +76915,6 @@ "registry": "https://registry.npmjs.org/", "description": "Provides Apple Wallet functionality for IOS (PassKit) and Google Wallet for Android.", "topics": [ - "react-native", "ios", "android", "wallet", @@ -77461,12 +76934,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-wallet-manager", "npm": { - "downloads": 41091, - "weekDownloads": 9598, + "downloads": 43747, + "weekDownloads": 8228, "size": 52579, "latestRelease": "1.1.1", "latestReleaseDate": "2024-10-17T11:30:04.678Z" @@ -77477,8 +76951,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.199, - "topicSearchString": "react-native ios android wallet apple-wallet pkpass google-wallet google-wallet-api passkit" + "popularity": 0.16, + "topicSearchString": "ios android wallet apple-wallet pkpass google-wallet google-wallet-api passkit" }, { "githubUrl": "https://github.com/wix-incubator/react-native-wallet-pass", @@ -77500,7 +76974,7 @@ "pushedAt": "2021-06-09T16:19:37Z", "forks": 3, "issues": 0, - "subscribers": 1, + "subscribers": 0, "stars": 5, "dependencies": 0 }, @@ -77509,7 +76983,6 @@ "isPrivate": false, "description": "React Native module to handle PassKit.", "topics": [ - "react-native", "ios", "android", "passkit", @@ -77525,13 +76998,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-wallet-pass", "npm": { - "downloads": 371, - "weekDownloads": 58, + "downloads": 532, + "weekDownloads": 119, "size": 36611, "latestRelease": "1.0.5", "latestReleaseDate": "2021-06-09T15:09:03.102Z" @@ -77541,8 +77015,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.617, - "topicSearchString": "react-native ios android passkit wallet" + "popularity": -1.56, + "topicSearchString": "ios android passkit wallet" }, { "githubUrl": "https://github.com/sendbird/sendbird-uikit-react-native/tree/main/packages/uikit-react-native", @@ -77564,13 +77038,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T01:43:11Z", + "updatedAt": "2025-10-16T00:48:14Z", "createdAt": "2022-01-13T02:38:10Z", - "pushedAt": "2025-09-10T01:43:11Z", + "pushedAt": "2025-10-16T00:48:14Z", "forks": 44, "issues": 0, - "subscribers": 11, - "stars": 89, + "subscribers": 10, + "stars": 88, "dependencies": 5 }, "name": "@sendbird/uikit-react-native", @@ -77581,7 +77055,6 @@ "topics": [ "sendbird", "uikit", - "react-native", "chat", "messaging", "real-time", @@ -77599,14 +77072,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "nitro" }, "npm": { - "downloads": 26506, - "weekDownloads": 3933, - "size": 5649687, - "latestRelease": "3.10.3", - "latestReleaseDate": "2025-09-10T01:39:41.302Z" + "downloads": 29880, + "weekDownloads": 5900, + "size": 5784001, + "latestRelease": "3.11.2", + "latestReleaseDate": "2025-10-16T03:57:52.835Z" }, "score": 57, "matchingScoreModifiers": [ @@ -77614,8 +77089,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.126, - "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" + "popularity": 0.168, + "topicSearchString": "sendbird uikit chat messaging real-time ui-components user-authentication channel-management sdk-integration customizable feature-rich social-app customer-support gaming api" }, { "githubUrl": "https://github.com/sendbird/sendbird-calls-sdk-react-native", @@ -77638,12 +77113,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-15T06:04:29Z", + "updatedAt": "2025-10-17T05:55:38Z", "createdAt": "2022-01-12T06:21:54Z", - "pushedAt": "2025-07-15T06:04:29Z", + "pushedAt": "2025-10-17T05:55:38Z", "forks": 3, "issues": 0, - "subscribers": 7, + "subscribers": 6, "stars": 2, "dependencies": 0 }, @@ -77653,7 +77128,6 @@ "registry": "https://registry.npmjs.org/", "description": "Sendbird Calls SDK for React-Native", "topics": [ - "react-native", "calls", "audio-calls", "video-calls", @@ -77687,21 +77161,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1540, - "weekDownloads": 315, - "size": 1037139, - "latestRelease": "1.1.8", - "latestReleaseDate": "2025-04-29T07:41:05.677Z" + "downloads": 1796, + "weekDownloads": 320, + "size": 1034268, + "latestRelease": "1.1.10", + "latestReleaseDate": "2025-10-17T05:55:37.488Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.076, - "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" + "popularity": -0.098, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/Luffos/rxn-units", @@ -77737,9 +77213,7 @@ "isPrivate": false, "description": "📐 Cross-Platform Viewport Units (vw, vh, vmin, vmax, percentage) + useUnits hook for React Native, React Native Web and Expo.", "topics": [ - "react", "typescript", - "react-native", "units", "web", "expo", @@ -77759,12 +77233,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rxn-units", "npm": { - "downloads": 364, - "weekDownloads": 155, + "downloads": 153, + "weekDownloads": 53, "size": 7596, "latestRelease": "0.1.7", "latestReleaseDate": "2022-12-30T00:47:41.488Z" @@ -77773,8 +77248,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.385, - "topicSearchString": "react typescript react-native units web expo rxn viewport viewport-units reactjs vh" + "popularity": -0.456, + "topicSearchString": "typescript units web expo rxn viewport viewport-units reactjs vh" }, { "githubUrl": "https://github.com/BabylonJS/BabylonReactNative/tree/master/Modules/@babylonjs/react-native", @@ -77797,23 +77272,21 @@ "hasWiki": false, "hasSponsorships": false, "hasDiscussions": true, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2025-07-13T07:23:14Z", "createdAt": "2020-04-01T00:20:13Z", "pushedAt": "2025-07-13T07:23:14Z", "forks": 66, "issues": 11, - "subscribers": 16, - "stars": 412, + "subscribers": 15, + "stars": 415, "dependencies": 2 }, "name": "@babylonjs/react-native", "fullName": "BabylonJS/BabylonReactNative", "isPrivate": false, "description": "Babylon Native integration into React Native", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -77824,11 +77297,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1232, - "weekDownloads": 224, + "downloads": 1459, + "weekDownloads": 291, "size": 64555, "latestRelease": "1.9.0", "latestReleaseDate": "2025-07-13T10:06:52.132Z" @@ -77838,8 +77312,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.155, - "topicSearchString": "react-native" + "popularity": 0.17, + "topicSearchString": "" }, { "githubUrl": "https://github.com/zhigang1992/react-native-video-cache", @@ -77858,23 +77332,21 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2023-09-28T01:09:55Z", "createdAt": "2019-05-02T10:18:13Z", "pushedAt": "2023-09-28T01:09:55Z", - "forks": 59, + "forks": 60, "issues": 23, "subscribers": 4, - "stars": 196, + "stars": 197, "dependencies": 0 }, "name": "react-native-video-cache", "fullName": "zhigang1992/react-native-video-cache", "isPrivate": false, "description": "Caching your video without headache", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -77885,12 +77357,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-video-cache", "npm": { - "downloads": 18414, - "weekDownloads": 2263, + "downloads": 24057, + "weekDownloads": 5437, "size": 80219, "latestRelease": "2.7.4", "latestReleaseDate": "2023-09-28T01:09:25.708Z" @@ -77901,8 +77375,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.104, - "topicSearchString": "react-native" + "popularity": -0.558, + "topicSearchString": "" }, { "githubUrl": "https://github.com/kenjdavidson/react-native-bluetooth-classic", @@ -77919,13 +77393,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-07-24T12:47:56Z", + "updatedAt": "2025-09-26T13:08:50Z", "createdAt": "2019-06-22T03:15:16Z", - "pushedAt": "2025-07-24T12:47:56Z", - "forks": 102, + "pushedAt": "2025-09-26T13:08:50Z", + "forks": 103, "issues": 21, - "subscribers": 10, - "stars": 262, + "subscribers": 9, + "stars": 267, "dependencies": 1 }, "name": "react-native-bluetooth-classic", @@ -77933,7 +77407,6 @@ "isPrivate": false, "description": "⚛ Bluetooth classic Android(Bluetooth)/IOS(ExternalAccessory) module for serial communication", "topics": [ - "react-native", "bluetooth-classic", "bluetooth-adapter", "android", @@ -77951,27 +77424,30 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-bluetooth-classic", "npm": { - "downloads": 16419, - "weekDownloads": 3182, - "size": 340014, - "latestRelease": "1.73.0-rc.14", - "latestReleaseDate": "2025-07-24T12:47:59.922Z" + "downloads": 17447, + "weekDownloads": 4349, + "size": 340030, + "latestRelease": "1.73.0-rc.15", + "latestReleaseDate": "2025-09-26T13:08:54.135Z" }, - "score": 51, + "score": 57, "matchingScoreModifiers": [ "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, - "topicSearchString": "react-native bluetooth-classic bluetooth-adapter android external-accessory ios bluetooth" + "popularity": 0.212, + "topicSearchString": "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", @@ -77989,7 +77465,7 @@ "forks": 10, "issues": 8, "subscribers": 3, - "stars": 74, + "stars": 75, "dependencies": 0 }, "name": "react-native-cloud-store", @@ -77998,12 +77474,10 @@ "registry": "https://registry.npmjs.org/", "description": "A react-native module for icloud drive", "topics": [ - "react-native", "ios", "android", "icloud", - "swift", - "react" + "swift" ], "license": { "key": "mit", @@ -78015,12 +77489,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-cloud-store", "npm": { - "downloads": 14963, - "weekDownloads": 2505, + "downloads": 15719, + "weekDownloads": 2756, "size": 221149, "latestRelease": "0.12.0", "latestReleaseDate": "2024-04-11T05:51:23.622Z" @@ -78030,8 +77505,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "react-native ios android icloud swift react" + "popularity": 0.149, + "topicSearchString": "ios android icloud swift" }, { "githubUrl": "https://github.com/mateoguzmana/react-native-clocks", @@ -78068,11 +77543,9 @@ "registry": "https://registry.npmjs.org/", "description": "🕑 React Native customisable clocks built with @shopify/react-native-skia.", "topics": [ - "react-native", "ios", "android", "clock", - "react", "web", "skia", "time", @@ -78089,12 +77562,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-clocks", "npm": { - "downloads": 3, - "weekDownloads": 0, + "downloads": 24, + "weekDownloads": 2, "size": 167694, "latestRelease": "0.1.1", "latestReleaseDate": "2023-09-30T11:34:11.451Z" @@ -78104,8 +77579,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native ios android clock react web skia time javascript typescript" + "popularity": -1.42, + "topicSearchString": "ios android clock web skia time javascript typescript" }, { "githubUrl": "https://github.com/ouroboroscoding/react-native-picker", @@ -78132,7 +77607,7 @@ "pushedAt": "2023-05-30T11:40:28Z", "forks": 3, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 11, "dependencies": 2 }, @@ -78141,8 +77616,6 @@ "isPrivate": false, "description": "Substitute Picker now that it's been completely removed from React-Native", "topics": [ - "react-native", - "react", "expo", "picker", "select" @@ -78157,12 +77630,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 129, - "weekDownloads": 17, + "downloads": 161, + "weekDownloads": 26, "size": 19730, "latestRelease": "0.3.1", "latestReleaseDate": "2023-05-30T11:40:43.640Z" @@ -78172,8 +77646,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.637, - "topicSearchString": "react-native react expo picker select" + "popularity": -1.609, + "topicSearchString": "expo picker select" }, { "githubUrl": "https://github.com/ouroboroscoding/react-native-snackbar", @@ -78200,7 +77674,7 @@ "pushedAt": "2022-10-03T16:32:09Z", "forks": 0, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 1, "dependencies": 1 }, @@ -78209,8 +77683,6 @@ "isPrivate": false, "description": "React Native Snackbar", "topics": [ - "react-native", - "react", "expo", "snackbar", "popup", @@ -78226,12 +77698,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 61, - "weekDownloads": 12, + "downloads": 58, + "weekDownloads": 16, "size": 20317, "latestRelease": "0.1.4", "latestReleaseDate": "2022-10-03T16:32:29.200Z" @@ -78241,8 +77714,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.579, - "topicSearchString": "react-native react expo snackbar popup notification" + "popularity": -1.504, + "topicSearchString": "expo snackbar popup notification" }, { "githubUrl": "https://github.com/hirbod/react-native-volume-manager", @@ -78273,7 +77746,7 @@ "forks": 21, "issues": 3, "subscribers": 3, - "stars": 326, + "stars": 331, "dependencies": 0 }, "name": "react-native-volume-manager", @@ -78282,14 +77755,12 @@ "registry": "https://registry.npmjs.org/", "description": "React Native module which adds the ability to change the system volume on iOS and Android, listen to volume changes and supress the native volume UI to build your own volume slider or UX. It can listen to iOS mute switch and ringer mode changes on Android (and let you set the ringer mode)", "topics": [ - "react-native", "ios", "expo", "volume", "mute", "silent", - "android", - "react" + "android" ], "license": { "key": "mit", @@ -78301,24 +77772,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-volume-manager", "npm": { - "downloads": 99006, - "weekDownloads": 16600, + "downloads": 98323, + "weekDownloads": 23818, "size": 240484, "latestRelease": "2.0.8", "latestReleaseDate": "2024-12-23T13:58:26.362Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.143, - "topicSearchString": "react-native ios expo volume mute silent android react" + "popularity": 0.206, + "topicSearchString": "ios expo volume mute silent android" }, { "githubUrl": "https://github.com/aws/amazon-ivs-react-native-player", @@ -78341,9 +77812,9 @@ "updatedAt": "2025-06-12T17:01:20Z", "createdAt": "2021-08-17T19:48:45Z", "pushedAt": "2025-06-12T17:01:20Z", - "forks": 31, + "forks": 33, "issues": 25, - "subscribers": 30, + "subscribers": 29, "stars": 305, "dependencies": 0 }, @@ -78353,7 +77824,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native wrapper for the Amazon IVS iOS and Android player SDKs.", "topics": [ - "react-native", "ios", "android", "amazon-ivs" @@ -78368,12 +77838,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "amazon-ivs-react-native-player", "npm": { - "downloads": 5171, - "weekDownloads": 873, + "downloads": 7105, + "weekDownloads": 1130, "size": 204354489, "latestRelease": "1.5.0", "latestReleaseDate": "2024-02-20T20:44:39.220Z" @@ -78383,15 +77854,14 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.144, - "topicSearchString": "react-native ios android amazon-ivs" + "popularity": 0.135, + "topicSearchString": "ios android amazon-ivs" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-router", "examples": [ "https://github.com/expo/examples/tree/master/with-router", "https://github.com/expo/examples/tree/master/with-router-tailwind", - "https://github.com/expo/examples/tree/master/with-nativewind", "https://github.com/EvanBacon/expo-router-instagram-layout", "https://github.com/EvanBacon/expo-router-twitter", "https://github.com/expo/examples/tree/master/with-router-menus", @@ -78405,6 +77875,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -78416,13 +77887,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-13T20:19:47Z", + "updatedAt": "2025-10-21T14:18:08Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-13T20:19:47Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-21T14:18:08Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 23 }, "name": "expo-router", @@ -78430,7 +77901,6 @@ "isPrivate": false, "description": "Expo Router is a file-based router for React Native and web applications.", "topics": [ - "react-native", "expo" ], "license": { @@ -78443,27 +77913,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-router", "npm": { - "downloads": 3289944, - "weekDownloads": 597832, - "size": 2487818, - "latestRelease": "6.0.4", - "latestReleaseDate": "2025-09-13T20:52:49.950Z" + "downloads": 3698923, + "weekDownloads": 783629, + "size": 2450190, + "latestRelease": "6.0.13", + "latestReleaseDate": "2025-10-20T23:27:11.287Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.154, - "topicSearchString": "react-native expo" + "popularity": 0.18, + "topicSearchString": "expo" }, { "githubUrl": "https://github.com/omdxp/react-native-help-create", @@ -78481,12 +77952,12 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-04-29T02:10:40Z", + "updatedAt": "2025-10-01T21:12:20Z", "createdAt": "2021-02-12T19:42:06Z", - "pushedAt": "2025-04-29T02:10:40Z", + "pushedAt": "2025-10-01T21:12:20Z", "forks": 0, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 25, "dependencies": 2 }, @@ -78495,7 +77966,6 @@ "isPrivate": false, "description": "This command line helps you create components, screens, navigations and even redux implementation for your react native project", "topics": [ - "react-native", "help-create", "rnhc", "mobile-development", @@ -78516,22 +77986,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-help-create", "npm": { - "downloads": 8, - "weekDownloads": 1, + "downloads": 283, + "weekDownloads": 7, "size": 115710, "latestRelease": "2.7.0", "latestReleaseDate": "2022-09-30T14:37:41.706Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.55, - "topicSearchString": "react-native help-create rnhc mobile-development best-practice best-practices cross-platform redux typescript javascript" + "popularity": -0.729, + "topicSearchString": "help-create rnhc mobile-development best-practice best-practices cross-platform redux typescript javascript" }, { "githubUrl": "https://github.com/Mindinventory/awesome-clock", @@ -78561,7 +78033,7 @@ "pushedAt": "2022-07-28T09:55:02Z", "forks": 0, "issues": 0, - "subscribers": 4, + "subscribers": 3, "stars": 14, "dependencies": 3 }, @@ -78571,7 +78043,6 @@ "registry": "https://registry.npmjs.org/", "description": "MindInventory react-native-awesome-clock lib can be used to show this awesome Clock UI in your react-native projects", "topics": [ - "react-native", "ios", "android", "awesome-clock", @@ -78591,11 +78062,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 3, + "downloads": 17, "weekDownloads": 0, "size": 263300, "latestRelease": "0.1.2", @@ -78607,7 +78079,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android awesome-clock customcomponent npm-package npmjs reactnative clock-view" + "topicSearchString": "ios android awesome-clock customcomponent npm-package npmjs reactnative clock-view" }, { "githubUrl": "https://github.com/Mindinventory/react-native-tabbar-interaction", @@ -78636,7 +78108,7 @@ "pushedAt": "2025-05-09T08:28:47Z", "forks": 170, "issues": 1, - "subscribers": 18, + "subscribers": 17, "stars": 847, "dependencies": 3 }, @@ -78646,13 +78118,12 @@ "registry": "https://registry.npmjs.org/", "description": "Tabbar Component For React-Native", "topics": [ - "react-native", "basic-components", "tabbar", - "react-tab", + "tab", "reactnative", "reactnative-animation-challenges", - "react-animation", + "animation", "navigation", "component", "library", @@ -78668,11 +78139,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 431, - "weekDownloads": 59, + "downloads": 604, + "weekDownloads": 95, "size": 146257, "latestRelease": "3.0.1", "latestReleaseDate": "2025-05-09T08:30:14.759Z" @@ -78683,8 +78155,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.633, - "topicSearchString": "react-native basic-components tabbar react-tab reactnative reactnative-animation-challenges react-animation navigation component library easy-to-use" + "popularity": -0.616, + "topicSearchString": "basic-components tabbar tab reactnative reactnative-animation-challenges animation navigation component library easy-to-use" }, { "githubUrl": "https://github.com/Mindinventory/React-Native-top-navbar", @@ -78710,7 +78182,7 @@ "pushedAt": "2023-12-20T10:20:38Z", "forks": 4, "issues": 0, - "subscribers": 6, + "subscribers": 5, "stars": 32, "dependencies": 1 }, @@ -78720,7 +78192,6 @@ "registry": "https://registry.npmjs.org/", "description": "This reactnative package provides custom header component for mobile apps. also providing utility method to change statusbar color.", "topics": [ - "react-native", "ios", "android", "header", @@ -78742,11 +78213,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 22, - "weekDownloads": 1, + "downloads": 127, + "weekDownloads": 8, "size": 43006, "latestRelease": "0.0.4", "latestReleaseDate": "2023-12-20T10:24:44.976Z" @@ -78756,8 +78228,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.71, - "topicSearchString": "react-native ios android header navbar rn-header actionbar navigation-header top-navigation-bar reactnative mobile-app" + "popularity": -0.695, + "topicSearchString": "ios android header navbar rn-header actionbar navigation-header top-navigation-bar reactnative mobile-app" }, { "githubUrl": "https://github.com/access-mindinventory/react-native-card-animation", @@ -78789,10 +78261,7 @@ "isPrivate": false, "description": "Beautiful Flatlist with OnScroll and OnClick animation. By using this, user can easily animate their flatlist, they can customise animation’s direction, duration, opacity with different colors. They can customise view by their own and integrate into flatlist.", "topics": [ - "react-native", - "react-component", "component", - "react", "flatlist-animaiton", "animation", "onscroll-faltlist-animation", @@ -78820,11 +78289,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 0, + "downloads": 124, "weekDownloads": 0, "size": 12266, "latestRelease": "1.0.4", @@ -78836,7 +78306,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native react-component component react flatlist-animaiton animation onscroll-faltlist-animation mobile ios android ui flatlist card-animaiton flatlist-card animation-library card-animations design mobile-app reactnative reactnative-ui" + "topicSearchString": "component flatlist-animaiton animation onscroll-faltlist-animation mobile ios android ui flatlist card-animaiton flatlist-card animation-library card-animations design mobile-app reactnative reactnative-ui" }, { "githubUrl": "https://github.com/Mindinventory/react-native-stagger-view", @@ -78869,7 +78339,7 @@ "pushedAt": "2022-11-22T06:52:54Z", "forks": 10, "issues": 1, - "subscribers": 5, + "subscribers": 4, "stars": 89, "dependencies": 0 }, @@ -78883,7 +78353,6 @@ "rn-stagger-view", "stagger-list", "rn-stagger-list", - "react-native", "reactnative-list-view" ], "license": { @@ -78896,11 +78365,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 400, + "downloads": 353, "weekDownloads": 62, "size": 100280, "latestRelease": "1.2.1", @@ -78911,8 +78381,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.368, - "topicSearchString": "stagger-view rn-stagger-view stagger-list rn-stagger-list react-native reactnative-list-view" + "popularity": -1.351, + "topicSearchString": "stagger-view rn-stagger-view stagger-list rn-stagger-list reactnative-list-view" }, { "githubUrl": "https://github.com/Mindinventory/react-native-boilerplate", @@ -78936,8 +78406,8 @@ "pushedAt": "2024-12-09T12:24:41Z", "forks": 23, "issues": 1, - "subscribers": 6, - "stars": 142, + "subscribers": 5, + "stars": 143, "dependencies": 9 }, "name": "@mindinventory/react-native-boilerplate", @@ -78945,13 +78415,10 @@ "isPrivate": false, "description": "The Boilerplate contains all the basic packages, common components and, prebuilt code architecture. It will save developer's project setup time. supporting both expo and react-native CLI.", "topics": [ - "react-native", "mindinventory", "boilerplate", "starter-kit", "template", - "react", - "native", "expo", "typescript", "boilerplate-template", @@ -78968,18 +78435,17 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false - }, - "npm": { - "size": 938452 + "hasNativeCode": false, + "configPlugin": false }, + "npm": {}, "score": 32, "matchingScoreModifiers": [ "Not updated recently", "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native mindinventory boilerplate starter-kit template react native expo typescript boilerplate-template javascript starter-template" + "topicSearchString": "mindinventory boilerplate starter-kit template expo typescript boilerplate-template javascript starter-template" }, { "githubUrl": "https://github.com/Mindinventory/react-native-speed-view", @@ -79008,7 +78474,7 @@ "pushedAt": "2022-05-16T13:04:17Z", "forks": 0, "issues": 0, - "subscribers": 5, + "subscribers": 4, "stars": 23, "dependencies": 1 }, @@ -79018,7 +78484,6 @@ "registry": "https://registry.npmjs.org/", "description": "speed progress view, using this component we can show the speed. you can also use it to show progress of any task with effective customized animated view.", "topics": [ - "react-native", "ios", "android", "animation", @@ -79028,8 +78493,7 @@ "speed-meter", "speed-progress", "speed-view", - "runningspeed", - "react" + "runningspeed" ], "license": { "key": "mit", @@ -79041,12 +78505,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 17, - "weekDownloads": 2, + "downloads": 49, + "weekDownloads": 6, "size": 51785, "latestRelease": "1.0.2", "latestReleaseDate": "2022-05-16T13:01:31.808Z" @@ -79056,8 +78521,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.65, - "topicSearchString": "react-native ios android animation progress-view svg speedview speed-meter speed-progress speed-view runningspeed react" + "popularity": -1.641, + "topicSearchString": "ios android animation progress-view svg speedview speed-meter speed-progress speed-view runningspeed" }, { "githubUrl": "https://github.com/pusher/pusher-websocket-react-native", @@ -79082,8 +78547,8 @@ "createdAt": "2022-03-28T09:54:58Z", "pushedAt": "2024-12-04T10:18:58Z", "forks": 52, - "issues": 30, - "subscribers": 8, + "issues": 31, + "subscribers": 7, "stars": 69, "dependencies": 0 }, @@ -79093,7 +78558,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native official Pusher SDK", "topics": [ - "react-native", "ios", "android" ], @@ -79107,11 +78571,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 53468, - "weekDownloads": 9515, + "downloads": 51458, + "weekDownloads": 11363, "size": 2175612, "latestRelease": "1.3.1", "latestReleaseDate": "2024-02-08T13:16:20.215Z" @@ -79122,8 +78587,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.151, - "topicSearchString": "react-native ios android" + "popularity": 0.188, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/nikochan2k/expo-split-pane", @@ -79159,9 +78624,7 @@ "isPrivate": "true", "description": "Split movable pane for Expo", "topics": [ - "react", "expo", - "react-native", "web", "split", "divider", @@ -79177,13 +78640,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "expo-split-pane", "npm": { - "downloads": 7, - "weekDownloads": 1, + "downloads": 125, + "weekDownloads": 4, "size": 31794, "latestRelease": "0.4.1", "latestReleaseDate": "2022-11-13T05:15:51.554Z" @@ -79193,8 +78657,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, - "topicSearchString": "react expo react-native web split divider movable" + "popularity": -1.722, + "topicSearchString": "expo web split divider movable" }, { "githubUrl": "https://github.com/gmsgowtham/react-native-marked", @@ -79220,13 +78684,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-13T13:36:42Z", + "updatedAt": "2025-09-26T05:23:49Z", "createdAt": "2022-08-20T06:45:23Z", - "pushedAt": "2025-08-13T13:36:42Z", - "forks": 25, + "pushedAt": "2025-09-26T05:23:49Z", + "forks": 26, "issues": 15, - "subscribers": 2, - "stars": 270, + "subscribers": 1, + "stars": 279, "dependencies": 7 }, "name": "react-native-marked", @@ -79235,9 +78699,7 @@ "registry": "https://registry.npmjs.org/", "description": "Markdown renderer for React Native powered by marked.js", "topics": [ - "react-native", "markdown", - "react", "renderer", "marked-js", "typescript" @@ -79252,23 +78714,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-marked", "npm": { - "downloads": 42011, - "weekDownloads": 7279, + "downloads": 46767, + "weekDownloads": 9950, "size": 210930, "latestRelease": "7.0.2", "latestReleaseDate": "2025-06-28T05:46:26.001Z" }, - "score": 51, + "score": 57, "matchingScoreModifiers": [ "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.147, - "topicSearchString": "react-native markdown react renderer marked-js typescript" + "popularity": 0.181, + "topicSearchString": "markdown renderer marked-js typescript" }, { "githubUrl": "https://github.com/CodingItWrong/react-native-style-queries", @@ -79291,13 +78755,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-01T14:13:34Z", + "updatedAt": "2025-10-01T10:47:31Z", "createdAt": "2022-08-29T13:31:01Z", - "pushedAt": "2025-09-01T14:13:34Z", + "pushedAt": "2025-10-01T10:47:31Z", "forks": 0, "issues": 0, - "subscribers": 2, - "stars": 9, + "subscribers": 1, + "stars": 10, "dependencies": 0 }, "name": "react-native-style-queries", @@ -79315,12 +78779,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-style-queries", "npm": { - "downloads": 78, - "weekDownloads": 33, + "downloads": 63, + "weekDownloads": 0, "size": 30464, "latestRelease": "0.1.1", "latestReleaseDate": "2022-08-29T13:34:07.724Z" @@ -79330,7 +78795,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.633, + "popularity": -1, "topicSearchString": "" }, { @@ -79364,7 +78829,7 @@ "forks": 84, "issues": 46, "subscribers": 4, - "stars": 232, + "stars": 235, "dependencies": 4 }, "name": "react-native-autocomplete-dropdown", @@ -79373,7 +78838,6 @@ "registry": "https://registry.npmjs.org/", "description": "Dropdown Item picker with search and autocomplete (typeahead) functionality for react native", "topics": [ - "react-native", "dropdown", "autocomplete", "picker", @@ -79395,12 +78859,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-autocomplete-dropdown", "npm": { - "downloads": 65709, - "weekDownloads": 12383, + "downloads": 68456, + "weekDownloads": 13961, "size": 271247, "latestRelease": "5.0.0", "latestReleaseDate": "2025-05-07T13:31:58.206Z" @@ -79410,8 +78875,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.16, - "topicSearchString": "react-native dropdown autocomplete picker typeahead select android ios dropdown-menu autocomplete-suggestions hacktoberfest" + "popularity": 0.173, + "topicSearchString": "dropdown autocomplete picker typeahead select android ios dropdown-menu autocomplete-suggestions hacktoberfest" }, { "githubUrl": "https://github.com/alan-eu/react-native-fast-shadow", @@ -79438,10 +78903,10 @@ "updatedAt": "2025-09-05T12:41:51Z", "createdAt": "2022-10-19T08:39:41Z", "pushedAt": "2025-09-05T12:41:51Z", - "forks": 11, + "forks": 12, "issues": 9, - "subscribers": 25, - "stars": 570, + "subscribers": 24, + "stars": 575, "dependencies": 0 }, "name": "react-native-fast-shadow", @@ -79450,7 +78915,6 @@ "registry": "https://registry.npmjs.org/", "description": "Fast and high quality Android shadows for React Native", "topics": [ - "react-native", "shadow", "android" ], @@ -79464,24 +78928,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fast-shadow", "npm": { - "downloads": 32517, - "weekDownloads": 5000, + "downloads": 28055, + "weekDownloads": 7003, "size": 50559, "latestRelease": "0.1.1", "latestReleaseDate": "2024-08-05T10:01:19.279Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.131, - "topicSearchString": "react-native shadow android" + "popularity": 0.212, + "topicSearchString": "shadow android" }, { "githubUrl": "https://github.com/howljs/react-native-calendar-kit/tree/main/packages/react-native-calendar-kit", @@ -79504,13 +78968,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-07T16:32:55Z", + "updatedAt": "2025-10-10T05:53:22Z", "createdAt": "2022-11-04T05:06:01Z", - "pushedAt": "2025-09-07T16:32:55Z", - "forks": 94, + "pushedAt": "2025-10-10T05:53:22Z", + "forks": 96, "issues": 28, - "subscribers": 5, - "stars": 555, + "subscribers": 4, + "stars": 571, "dependencies": 5 }, "name": "@howljs/calendar-kit", @@ -79519,7 +78983,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Calendar Kit", "topics": [ - "react-native", "ios", "android", "calendar-kit", @@ -79535,23 +78998,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8654, - "weekDownloads": 1221, - "size": 1979873, - "latestRelease": "2.5.1", - "latestReleaseDate": "2025-09-07T16:32:48.904Z" + "downloads": 10425, + "weekDownloads": 2417, + "size": 1984351, + "latestRelease": "2.5.6", + "latestReleaseDate": "2025-10-10T05:53:18.944Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.12, - "topicSearchString": "react-native ios android calendar-kit calendar-week-view" + "popularity": 0.197, + "topicSearchString": "ios android calendar-kit calendar-week-view" }, { "githubUrl": "https://github.com/Stringsaeed/react-native-tooltiplize", @@ -79585,7 +79048,7 @@ "forks": 2, "issues": 2, "subscribers": 1, - "stars": 36, + "stars": 37, "dependencies": 1 }, "name": "react-native-tooltiplize", @@ -79594,7 +79057,6 @@ "registry": "https://registry.npmjs.org/", "description": "react native tooltip like never before, using leading packages like react-native-reanimated v2, framer-motion, and @gorhom/portal", "topics": [ - "react-native", "ios", "android", "web", @@ -79614,13 +79076,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-tooltiplize", "npm": { - "downloads": 248, - "weekDownloads": 59, + "downloads": 287, + "weekDownloads": 46, "size": 156244, "latestRelease": "0.3.0", "latestReleaseDate": "2022-11-09T03:36:08.677Z" @@ -79630,8 +79093,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.297, - "topicSearchString": "react-native ios android web tooltip tooltiplize tooltip-lib popover popover-view" + "popularity": -1.363, + "topicSearchString": "ios android web tooltip tooltiplize tooltip-lib popover popover-view" }, { "githubUrl": "https://github.com/tony-xlh/vision-camera-dynamsoft-document-normalizer", @@ -79651,13 +79114,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T05:49:00Z", + "updatedAt": "2025-10-17T09:44:25Z", "createdAt": "2022-10-31T08:02:32Z", - "pushedAt": "2025-09-11T05:49:00Z", + "pushedAt": "2025-10-17T09:44:25Z", "forks": 5, - "issues": 2, - "subscribers": 7, - "stars": 63, + "issues": 1, + "subscribers": 5, + "stars": 67, "dependencies": 0 }, "name": "vision-camera-dynamsoft-document-normalizer", @@ -79666,7 +79129,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native Vision Camera frame processor plugin for Dynamsoft Document Normalizer", "topics": [ - "react-native", "ios", "android", "document-scanning", @@ -79687,23 +79149,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "vision-camera-dynamsoft-document-normalizer", "npm": { - "downloads": 315, - "weekDownloads": 35, - "size": 98931, - "latestRelease": "3.4.0", - "latestReleaseDate": "2025-02-26T07:29:56.272Z" + "downloads": 510, + "weekDownloads": 81, + "size": 87550, + "latestRelease": "4.1.0", + "latestReleaseDate": "2025-10-14T08:09:52.174Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.655, - "topicSearchString": "react-native ios android document-scanning document-scanner document-scan document-detection perspective-transformation crop automatic" + "popularity": -0.615, + "topicSearchString": "ios android document-scanning document-scanner document-scan document-detection perspective-transformation crop automatic" }, { "githubUrl": "https://github.com/arnnis/react-native-match-media-polyfill", @@ -79726,7 +79190,7 @@ "pushedAt": "2021-06-18T07:43:14Z", "forks": 1, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 21, "dependencies": 1 }, @@ -79736,16 +79200,13 @@ "description": "window.matchMedia polyfill for React Native", "topics": [ "component", - "react-component", - "react-native", "ios", "media", "query", "responsive", "matchmedia", "mediaquery", - "web", - "react-responsive" + "web" ], "license": { "name": "MIT License", @@ -79757,13 +79218,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-match-media-polyfill", "npm": { - "downloads": 21869, - "weekDownloads": 3330, + "downloads": 16085, + "weekDownloads": 2659, "size": 14147, "latestRelease": "1.0.3", "latestReleaseDate": "2020-01-17T19:28:00.965Z" @@ -79773,8 +79235,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.871, - "topicSearchString": "component react-component react-native ios media query responsive matchmedia mediaquery web react-responsive" + "popularity": -0.859, + "topicSearchString": "component ios media query responsive matchmedia mediaquery web" }, { "githubUrl": "https://github.com/web-ridge/react-ridge-state", @@ -79816,12 +79278,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-ridge-state", "npm": { - "downloads": 4657, - "weekDownloads": 555, + "downloads": 3764, + "weekDownloads": 1157, "size": 28071, "latestRelease": "4.2.9", "latestReleaseDate": "2022-08-02T14:54:02.006Z" @@ -79831,7 +79294,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.101, + "popularity": 0.261, "topicSearchString": "" }, { @@ -79865,7 +79328,6 @@ "registry": "https://registry.npmjs.org/", "description": "The autocomplete package you wished for on all platforms (iOS, Android, web)", "topics": [ - "react-native", "ios", "android" ], @@ -79879,12 +79341,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-paper-autocomplete", "npm": { - "downloads": 257, - "weekDownloads": 44, + "downloads": 454, + "weekDownloads": 33, "size": 351937, "latestRelease": "0.12.0", "latestReleaseDate": "2023-09-27T06:29:22.879Z" @@ -79894,8 +79358,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.853, - "topicSearchString": "react-native ios android" + "popularity": -1.688, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/expo/match-media", @@ -79919,7 +79383,7 @@ "pushedAt": "2022-10-06T20:43:40Z", "forks": 13, "issues": 3, - "subscribers": 6, + "subscribers": 5, "stars": 141, "dependencies": 1 }, @@ -79933,8 +79397,6 @@ "match-media", "expo", "expo-web", - "react", - "react-native", "web", "responsive", "breakpoint", @@ -79950,12 +79412,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "unmaintained": true, "npm": { - "downloads": 106893, - "weekDownloads": 21116, + "downloads": 89131, + "weekDownloads": 21997, "size": 14630, "latestRelease": "0.4.0", "latestReleaseDate": "2022-10-06T20:45:28.118Z" @@ -79966,8 +79430,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.582, - "topicSearchString": "css css-in-js match-media expo expo-web react react-native web responsive breakpoint polyfill" + "popularity": -0.54, + "topicSearchString": "css css-in-js match-media expo expo-web web responsive breakpoint polyfill" }, { "githubUrl": "https://github.com/klazbaba/react-native-form-component", @@ -80007,7 +79471,6 @@ "isPrivate": false, "description": "A customizable form component for react-native. It handles basic validation of input, and also alerts the user of failed validations.", "topics": [ - "react-native", "ios", "android", "form", @@ -80032,12 +79495,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-form-component", "npm": { - "downloads": 480, - "weekDownloads": 87, + "downloads": 1133, + "weekDownloads": 54, "size": 265021, "latestRelease": "2.6.14", "latestReleaseDate": "2024-01-19T07:02:12.659Z" @@ -80047,8 +79511,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.595, - "topicSearchString": "react-native ios android form validated-form form-component component web picker pin-input otp validation declarative modal" + "popularity": 0.041, + "topicSearchString": "ios android form validated-form form-component component web picker pin-input otp validation declarative modal" }, { "githubUrl": "https://github.com/VincentCATILLON/react-native-confetti-cannon", @@ -80076,10 +79540,10 @@ "updatedAt": "2022-09-30T16:14:30Z", "createdAt": "2019-02-01T15:52:36Z", "pushedAt": "2022-09-30T16:14:30Z", - "forks": 60, + "forks": 59, "issues": 10, - "subscribers": 6, - "stars": 508, + "subscribers": 5, + "stars": 515, "dependencies": 0 }, "name": "react-native-confetti-cannon", @@ -80087,8 +79551,6 @@ "isPrivate": false, "description": "React Native confetti explosion and fall like iOS does.", "topics": [ - "react", - "react-native", "web", "confetti", "cannon", @@ -80110,25 +79572,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-confetti-cannon", "npm": { - "downloads": 265361, - "weekDownloads": 34140, + "downloads": 348542, + "weekDownloads": 85455, "size": 25243, "latestRelease": "1.5.2", "latestReleaseDate": "2021-03-03T11:57:14.300Z" }, - "score": 41, + "score": 57, "matchingScoreModifiers": [ + "Popular", "Known", "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.641, - "topicSearchString": "react react-native web confetti cannon explosion fall animation animated particles ios android" + "popularity": -0.542, + "topicSearchString": "web confetti cannon explosion fall animation animated particles ios android" }, { "githubUrl": "https://github.com/acro5piano/react-native-big-calendar", @@ -80154,13 +79618,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-06-05T01:42:30Z", + "updatedAt": "2025-10-15T02:03:21Z", "createdAt": "2019-12-04T05:49:58Z", - "pushedAt": "2025-06-05T01:42:30Z", - "forks": 178, - "issues": 80, - "subscribers": 7, - "stars": 523, + "pushedAt": "2025-10-15T02:03:21Z", + "forks": 180, + "issues": 79, + "subscribers": 6, + "stars": 548, "dependencies": 2 }, "name": "react-native-big-calendar", @@ -80168,8 +79632,6 @@ "isPrivate": false, "description": "gcal/outlook like calendar component for React Native", "topics": [ - "react", - "react-native", "web", "cross-platform", "calendar", @@ -80186,25 +79648,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-big-calendar", "npm": { - "downloads": 19446, - "weekDownloads": 3516, - "size": 625564, - "latestRelease": "4.18.5", - "latestReleaseDate": "2025-08-13T13:35:30.616Z" + "downloads": 19657, + "weekDownloads": 3803, + "size": 619229, + "latestRelease": "4.18.6", + "latestReleaseDate": "2025-09-23T23:42:07.386Z" }, - "score": 57, + "score": 62, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, - "topicSearchString": "react react-native web cross-platform calendar calendar-view calendar-component" + "popularity": 0.164, + "topicSearchString": "web cross-platform calendar calendar-view calendar-component" }, { "githubUrl": "https://github.com/thomas-coldwell/expo-image-editor", @@ -80247,8 +79711,6 @@ "registry": "https://registry.npmjs.org", "description": "A super simple image cropping and rotation tool for Expo that runs on iOS, Android and Web!", "topics": [ - "react", - "react-native", "image", "image-editor", "image-cropping", @@ -80266,13 +79728,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "expo-image-editor", "npm": { - "downloads": 1033, - "weekDownloads": 142, + "downloads": 978, + "weekDownloads": 177, "size": 422831, "latestRelease": "1.7.1", "latestReleaseDate": "2021-10-18T13:01:07.627Z" @@ -80283,8 +79746,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.633, - "topicSearchString": "react react-native image image-editor image-cropping blur expo web" + "popularity": -1.346, + "topicSearchString": "image image-editor image-cropping blur expo web" }, { "githubUrl": "https://github.com/nativewind/nativewind", @@ -80308,13 +79771,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T06:34:30Z", + "updatedAt": "2025-10-12T08:25:36Z", "createdAt": "2022-04-02T12:30:41Z", - "pushedAt": "2025-09-10T06:34:30Z", - "forks": 360, - "issues": 69, - "subscribers": 30, - "stars": 6916, + "pushedAt": "2025-10-12T08:25:36Z", + "forks": 366, + "issues": 68, + "subscribers": 31, + "stars": 7161, "dependencies": 1 }, "name": "nativewind", @@ -80322,9 +79785,6 @@ "isPrivate": false, "description": "The utility-first workflow you love from Tailwind CSS in your React Native applications.", "topics": [ - "react-native", - "react", - "native", "tailwind", "tailwindcss", "theme", @@ -80343,15 +79803,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "nativewind", "npm": { - "downloads": 1366705, - "weekDownloads": 216715, + "downloads": 1535044, + "weekDownloads": 334976, "size": 415554, - "latestRelease": "4.2.0", - "latestReleaseDate": "2025-09-11T22:49:38.310Z" + "latestRelease": "4.2.1", + "latestReleaseDate": "2025-09-14T22:51:13.080Z" }, "score": 97, "matchingScoreModifiers": [ @@ -80361,8 +79822,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.135, - "topicSearchString": "react-native react native tailwind tailwindcss theme style css web nativewind" + "popularity": 0.185, + "topicSearchString": "tailwind tailwindcss theme style css web nativewind" }, { "githubUrl": "https://github.com/jetrockets/react-native-modal", @@ -80393,7 +79854,7 @@ "pushedAt": "2022-12-06T07:15:14Z", "forks": 0, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 20, "dependencies": 4 }, @@ -80402,9 +79863,6 @@ "isPrivate": false, "description": "Light swipeable modal component IOS/Android", "topics": [ - "react-native", - "react", - "native", "modal", "android", "ios", @@ -80422,12 +79880,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 11, - "weekDownloads": 2, + "downloads": 22, + "weekDownloads": 0, "size": 10820, "latestRelease": "1.0.1", "latestReleaseDate": "2022-12-06T09:24:49.650Z" @@ -80437,8 +79896,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, - "topicSearchString": "react-native react native modal android ios backdrop simple animated" + "popularity": -1, + "topicSearchString": "modal android ios backdrop simple animated" }, { "githubUrl": "https://github.com/sidevesh/react-native-snackbar-component", @@ -80467,7 +79926,7 @@ "pushedAt": "2024-12-13T20:49:52Z", "forks": 67, "issues": 4, - "subscribers": 7, + "subscribers": 6, "stars": 186, "dependencies": 1 }, @@ -80482,7 +79941,6 @@ "android", "ios", "notifications", - "react-native", "material-design" ], "license": { @@ -80495,12 +79953,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-snackbar-component", "npm": { - "downloads": 4676, - "weekDownloads": 883, + "downloads": 3201, + "weekDownloads": 720, "size": 310542, "latestRelease": "1.1.12", "latestReleaseDate": "2021-08-16T21:00:09.447Z" @@ -80511,8 +79970,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, - "topicSearchString": "snackbar material design android ios notifications react-native material-design" + "popularity": 0.191, + "topicSearchString": "snackbar material design android ios notifications material-design" }, { "githubUrl": "https://github.com/brunon80/expo-image-crop", @@ -80551,7 +80010,6 @@ "description": "Crop and rotate image without detach your expo project!", "topics": [ "expo", - "react-native", "crop", "image", "rotate" @@ -80566,13 +80024,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "expo-image-crop", "npm": { - "downloads": 1028, - "weekDownloads": 137, + "downloads": 1158, + "weekDownloads": 205, "size": 3584603, "latestRelease": "1.0.4", "latestReleaseDate": "2020-03-04T11:40:14.865Z" @@ -80582,8 +80041,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.636, - "topicSearchString": "expo react-native crop image rotate" + "popularity": -0.599, + "topicSearchString": "expo crop image rotate" }, { "githubUrl": "https://github.com/siposdani87/expo-maps-polygon-editor", @@ -80640,11 +80099,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 56, - "weekDownloads": 3, + "downloads": 528, + "weekDownloads": 25, "size": 79202, "latestRelease": "1.0.7", "latestReleaseDate": "2024-05-07T09:46:19.676Z" @@ -80654,7 +80114,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.954, + "popularity": -0.96, "topicSearchString": "expo-maps-polygon-editor maps polygon editor expo polygon-editor" }, { @@ -80694,7 +80154,6 @@ "registry": "https://registry.npmjs.org/", "description": "Interactive drawing of polygons on the map. ", "topics": [ - "react-native", "ios", "android", "maps", @@ -80714,12 +80173,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 282, - "weekDownloads": 3, + "downloads": 250, + "weekDownloads": 54, "size": 5247311, "latestRelease": "2.0.1", "latestReleaseDate": "2022-11-30T16:45:59.483Z" @@ -80729,8 +80189,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.491, - "topicSearchString": "react-native ios android maps draw maps-draw canvas polygon-overlay expo" + "popularity": -1.314, + "topicSearchString": "ios android maps draw maps-draw canvas polygon-overlay expo" }, { "githubUrl": "https://github.com/enzomanuelmangano/react-native-skia-gesture", @@ -80760,7 +80220,7 @@ "forks": 7, "issues": 2, "subscribers": 4, - "stars": 153, + "stars": 156, "dependencies": 0 }, "name": "react-native-skia-gesture", @@ -80769,7 +80229,6 @@ "registry": "https://registry.npmjs.org/", "description": "A detection system for React Native Skia components", "topics": [ - "react-native", "ios", "android", "gestures", @@ -80785,12 +80244,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-skia-gesture", "npm": { - "downloads": 764, - "weekDownloads": 133, + "downloads": 1158, + "weekDownloads": 356, "size": 81619, "latestRelease": "0.4.0", "latestReleaseDate": "2025-05-27T09:31:59.916Z" @@ -80799,8 +80259,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.601, - "topicSearchString": "react-native ios android gestures skia" + "popularity": 0.262, + "topicSearchString": "ios android gestures skia" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-system-ui", @@ -80811,6 +80271,7 @@ "expoGo": true, "fireos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -80822,13 +80283,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T18:37:51Z", + "updatedAt": "2025-10-09T00:03:40Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-10T18:37:51Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-09T00:03:40Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 2 }, "name": "expo-system-ui", @@ -80836,7 +80297,6 @@ "isPrivate": false, "description": "Interact with system UI elements", "topics": [ - "react-native", "expo", "background-color", "user-interface", @@ -80852,27 +80312,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-system-ui", "npm": { - "downloads": 3178214, - "weekDownloads": 580045, + "downloads": 3199818, + "weekDownloads": 681822, "size": 76586, "latestRelease": "6.0.7", "latestReleaseDate": "2025-09-10T18:40:26.974Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.155, - "topicSearchString": "react-native expo background-color user-interface appearance" + "popularity": 0.181, + "topicSearchString": "expo background-color user-interface appearance" }, { "githubUrl": "https://github.com/ArunGovil/react-native-flatboard/tree/main/release", @@ -80909,7 +80370,6 @@ "description": "A Flatlist based onboarding screen for React Native", "topics": [ "onboarding", - "react-native", "flatlist", "swipeable", "indicator" @@ -80924,12 +80384,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 91, - "weekDownloads": 41, + "downloads": 415, + "weekDownloads": 42, "size": 12910, "latestRelease": "1.0.7", "latestReleaseDate": "2023-04-09T12:56:31.280Z" @@ -80939,8 +80400,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.36, - "topicSearchString": "onboarding react-native flatlist swipeable indicator" + "popularity": -1.663, + "topicSearchString": "onboarding flatlist swipeable indicator" }, { "githubUrl": "https://github.com/okanfidan/react-native-tabbed-section-list", @@ -80977,9 +80438,6 @@ "isPrivate": false, "description": "React Native Tabbed SectionList.", "topics": [ - "react-native", - "react", - "native", "android", "ios", "tabbed-sections", @@ -81000,12 +80458,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 56, - "weekDownloads": 8, + "downloads": 325, + "weekDownloads": 71, "size": 34079, "latestRelease": "0.0.21", "latestReleaseDate": "2022-12-16T16:23:45.281Z" @@ -81015,8 +80474,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.627, - "topicSearchString": "react-native react native android ios tabbed-sections tabbed-section-list scrollview flatlist sectionlist scroll tabs" + "popularity": -1.563, + "topicSearchString": "android ios tabbed-sections tabbed-section-list scrollview flatlist sectionlist scroll tabs" }, { "githubUrl": "https://github.com/DataDog/react-native-performance-limiter", @@ -81041,7 +80500,7 @@ "pushedAt": "2025-04-15T08:55:41Z", "forks": 1, "issues": 0, - "subscribers": 7, + "subscribers": 6, "stars": 19, "dependencies": 0 }, @@ -81051,7 +80510,6 @@ "registry": "https://registry.npmjs.org/", "description": "A package for deliberately limiting the performance of React Native applications", "topics": [ - "react-native", "ios", "android", "performance" @@ -81066,22 +80524,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-performance-limiter", "npm": { - "downloads": 21051, - "weekDownloads": 3263, + "downloads": 20819, + "weekDownloads": 5427, "size": 46499, "latestRelease": "0.3.0", "latestReleaseDate": "2025-04-29T14:40:58.212Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.118, - "topicSearchString": "react-native ios android performance" + "popularity": -0.028, + "topicSearchString": "ios android performance" }, { "githubUrl": "https://github.com/macvish/react-native-basic-carousel", @@ -81119,9 +80578,7 @@ "isPrivate": false, "description": "React Native component used for snapping through and displaying a list views, a basic carousel", "topics": [ - "react-native", "carousel", - "react", "slide", "slider", "swiper", @@ -81144,12 +80601,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-basic-carousel", "npm": { - "downloads": 878, - "weekDownloads": 187, + "downloads": 1432, + "weekDownloads": 255, "size": 39177, "latestRelease": "1.1.2", "latestReleaseDate": "2024-02-01T14:37:57.718Z" @@ -81159,8 +80617,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.818, - "topicSearchString": "react-native carousel react slide slider swiper images scroll items snap android ios snapping autoplay" + "popularity": -0.098, + "topicSearchString": "carousel slide slider swiper images scroll items snap android ios snapping autoplay" }, { "githubUrl": "https://github.com/yuvraj24/react-native-stories-view", @@ -81190,7 +80648,7 @@ "pushedAt": "2023-03-31T07:00:39Z", "forks": 59, "issues": 12, - "subscribers": 7, + "subscribers": 6, "stars": 419, "dependencies": 0 }, @@ -81199,10 +80657,7 @@ "isPrivate": false, "description": "A simple and fully customizable React Native component that implements a status/stories feature similar to Whatsapp & Instagram ⭐✨🌟", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -81216,8 +80671,7 @@ "typescript", "hooks", "javascript", - "react-hooks", - "react-dom", + "dom", "useeffect", "usestate" ], @@ -81231,13 +80685,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-stories-view", "npm": { - "downloads": 3661, - "weekDownloads": 458, + "downloads": 4524, + "weekDownloads": 1134, "size": 49527, "latestRelease": "1.0.9", "latestReleaseDate": "2021-12-03T12:52:15.186Z" @@ -81248,8 +80703,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.644, - "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" + "popularity": -0.537, + "topicSearchString": "component mobile ios android ui story stories status whatsapp instagram cross-platform typescript hooks javascript dom useeffect usestate" }, { "githubUrl": "https://github.com/rmrs/react-native-settings", @@ -81275,7 +80730,7 @@ "forks": 35, "issues": 8, "subscribers": 3, - "stars": 228, + "stars": 227, "dependencies": 0 }, "name": "react-native-settings", @@ -81283,7 +80738,6 @@ "isPrivate": false, "description": "Allows access to various Android and iOS device settings using React Native", "topics": [ - "react-native", "settings", "android", "xcode" @@ -81298,12 +80752,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-settings", "npm": { - "downloads": 6842, - "weekDownloads": 1020, + "downloads": 6546, + "weekDownloads": 1167, "size": 42668, "latestRelease": "1.0.2", "latestReleaseDate": "2025-06-10T14:13:32.068Z" @@ -81313,8 +80768,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.127, - "topicSearchString": "react-native settings android xcode" + "popularity": 0.152, + "topicSearchString": "settings android xcode" }, { "githubUrl": "https://github.com/c19354837/react-native-system-setting", @@ -81352,7 +80807,6 @@ "isPrivate": false, "description": "A library to access system setting, and change it easily. eg: volume, brightness, wifi", "topics": [ - "react-native", "system", "setting", "volume", @@ -81372,13 +80826,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-system-setting", "npm": { - "downloads": 62475, - "weekDownloads": 11238, + "downloads": 64695, + "weekDownloads": 16930, "size": 107553, "latestRelease": "1.7.6", "latestReleaseDate": "2020-10-11T08:08:16.557Z" @@ -81389,8 +80844,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, - "topicSearchString": "react-native system setting volume wifi brightness location bluetooth airplane" + "popularity": -0.528, + "topicSearchString": "system setting volume wifi brightness location bluetooth airplane" }, { "githubUrl": "https://github.com/mouselangelo/react-native-actions-shortcuts", @@ -81424,7 +80879,6 @@ "isPrivate": false, "description": "iOS Home screen Quick Actions & Android App Shortcuts for react-native", "topics": [ - "react-native", "ios", "android", "quick-actions", @@ -81445,12 +80899,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-actions-shortcuts", "npm": { - "downloads": 8608, - "weekDownloads": 1322, + "downloads": 6236, + "weekDownloads": 1543, "size": 1081121, "latestRelease": "1.0.1", "latestReleaseDate": "2020-07-29T06:22:41.789Z" @@ -81460,8 +80915,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.131, - "topicSearchString": "react-native ios android quick-actions app-shortcuts home-screen actions uiapplicationshortcutitem shortcut shortcuts" + "popularity": 0.21, + "topicSearchString": "ios android quick-actions app-shortcuts home-screen actions uiapplicationshortcutitem shortcut shortcuts" }, { "githubUrl": "https://github.com/kingstinct/react-native-healthkit/tree/master/packages/react-native-healthkit", @@ -81471,6 +80926,7 @@ ], "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/kingstinct/react-native-healthkit", @@ -81482,13 +80938,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-03T19:46:37Z", + "updatedAt": "2025-10-15T01:58:41Z", "createdAt": "2020-06-26T22:40:28Z", - "pushedAt": "2025-09-03T19:46:37Z", - "forks": 62, - "issues": 21, - "subscribers": 11, - "stars": 487, + "pushedAt": "2025-10-15T01:58:41Z", + "forks": 66, + "issues": 14, + "subscribers": 10, + "stars": 520, "dependencies": 0 }, "name": "@kingstinct/react-native-healthkit", @@ -81497,7 +80953,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native bindings for HealthKit", "topics": [ - "react-native", "nitro", "healthkit", "ios", @@ -81513,23 +80968,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "nitro" }, "npm": { - "downloads": 37766, - "weekDownloads": 5109, - "size": 2182066, - "latestRelease": "10.1.0", - "latestReleaseDate": "2025-09-03T21:01:10.295Z" + "downloads": 46869, + "weekDownloads": 10014, + "size": 2412650, + "latestRelease": "11.1.1", + "latestReleaseDate": "2025-10-15T02:04:30.326Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.115, - "topicSearchString": "react-native nitro healthkit ios typescript" + "popularity": 0.182, + "topicSearchString": "nitro healthkit ios typescript" }, { "githubUrl": "https://github.com/Kingstinct/react-native-hotkeys", @@ -81554,7 +81010,7 @@ "pushedAt": "2024-02-03T17:28:39Z", "forks": 1, "issues": 3, - "subscribers": 2, + "subscribers": 1, "stars": 20, "dependencies": 1 }, @@ -81563,7 +81019,6 @@ "isPrivate": false, "description": "React Native module to enable listening to and capturing hotkeys. Currently with support for iOS (tested on iPad and M1 Macs) and web.", "topics": [ - "react-native", "expo", "hotkeys", "reactnativekeys", @@ -81580,12 +81035,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "react-native-hotkeys", "npm": { - "downloads": 1698, - "weekDownloads": 372, + "downloads": 1216, + "weekDownloads": 358, "size": 112904, "latestRelease": "0.5.9", "latestReleaseDate": "2024-02-03T17:45:33.671Z" @@ -81595,8 +81052,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.064, - "topicSearchString": "react-native expo hotkeys reactnativekeys ios web" + "popularity": 0, + "topicSearchString": "expo hotkeys reactnativekeys ios web" }, { "githubUrl": "https://github.com/hossein-zare/react-native-chunk-upload", @@ -81636,7 +81093,6 @@ "resumable-upload", "component", "reactnative", - "react-native", "android", "ios", "javascript", @@ -81654,13 +81110,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-chunk-upload", "npm": { - "downloads": 266, - "weekDownloads": 37, + "downloads": 487, + "weekDownloads": 46, "size": 60930, "latestRelease": "2.0.3", "latestReleaseDate": "2021-09-11T09:33:47.337Z" @@ -81670,8 +81127,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.381, - "topicSearchString": "upload chunk chunk-upload chunked-upload resume resumable resumable-upload component reactnative react-native android ios javascript upload-file chunked-uploads blob" + "popularity": -1.419, + "topicSearchString": "upload chunk chunk-upload chunked-upload resume resumable resumable-upload component reactnative android ios javascript upload-file chunked-uploads blob" }, { "githubUrl": "https://github.com/hossein-zare/react-native-dropdown-picker", @@ -81700,10 +81157,10 @@ "updatedAt": "2023-10-07T01:13:49Z", "createdAt": "2020-04-03T00:18:57Z", "pushedAt": "2023-10-07T01:13:49Z", - "forks": 300, - "issues": 156, + "forks": 303, + "issues": 157, "subscribers": 9, - "stars": 1031, + "stars": 1036, "dependencies": 1 }, "name": "react-native-dropdown-picker", @@ -81731,9 +81188,7 @@ "component", "rtl", "rtl-support", - "react", "reactnative", - "react-native", "android", "ios", "javascript", @@ -81749,12 +81204,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-dropdown-picker", "npm": { - "downloads": 414806, - "weekDownloads": 76355, + "downloads": 407852, + "weekDownloads": 92855, "size": 161182, "latestRelease": "5.4.6", "latestReleaseDate": "2023-03-09T23:26:38.932Z" @@ -81767,8 +81224,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, - "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" + "popularity": -0.556, + "topicSearchString": "picker dropdown drop-down menu item multiple single theme localization customizable placeholder categorizable category search searchable sub-item context component rtl rtl-support reactnative android ios javascript select" }, { "githubUrl": "https://github.com/serenity-kit/react-native-libsodium", @@ -81778,6 +81235,7 @@ "ios": true, "android": true, "web": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/serenity-kit/react-native-libsodium", @@ -81792,10 +81250,10 @@ "updatedAt": "2024-10-24T22:06:18Z", "createdAt": "2022-12-01T07:56:48Z", "pushedAt": "2024-10-24T22:06:18Z", - "forks": 16, + "forks": 18, "issues": 4, "subscribers": 2, - "stars": 40, + "stars": 42, "dependencies": 5 }, "name": "react-native-libsodium", @@ -81804,7 +81262,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native bindings to Libsodium matching the libsodium-wrappers package API", "topics": [ - "react-native", "ios", "android", "libsodium", @@ -81821,12 +81278,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-libsodium", "npm": { - "downloads": 5536, - "weekDownloads": 818, + "downloads": 4493, + "weekDownloads": 1131, "size": 13596239, "latestRelease": "1.4.0", "latestReleaseDate": "2024-06-11T17:29:58.900Z" @@ -81836,8 +81294,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.126, - "topicSearchString": "react-native ios android libsodium sodium type" + "popularity": 0.214, + "topicSearchString": "ios android libsodium sodium type" }, { "githubUrl": "https://github.com/Karthik-B-06/react-native-segmented-control", @@ -81877,10 +81335,7 @@ "registry": "https://registry.npmjs.org/", "description": "🎉 React Native Segmented Control 🎮 for both iOS, Android and Web", "topics": [ - "react-native", - "react-component", "component", - "react", "mobile", "ios", "android", @@ -81898,12 +81353,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 1277, - "weekDownloads": 256, + "downloads": 1332, + "weekDownloads": 297, "size": 52394, "latestRelease": "1.1.2", "latestReleaseDate": "2022-01-16T06:53:01.961Z" @@ -81914,8 +81370,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.579, - "topicSearchString": "react-native react-component component react mobile ios android ui segmented-control typescript" + "popularity": -0.56, + "topicSearchString": "component mobile ios android ui segmented-control typescript" }, { "githubUrl": "https://github.com/killserver/react-native-screenshot-prevent", @@ -81946,7 +81402,6 @@ "isPrivate": false, "description": "This fork contains fully working blank screenshot on IOS13+ including screen recording", "topics": [ - "react-native", "ios", "android" ], @@ -81960,24 +81415,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-screenshot-prevent", "npm": { - "downloads": 41107, - "weekDownloads": 4790, + "downloads": 44151, + "weekDownloads": 9341, "size": 68966, "latestRelease": "1.2.1", "latestReleaseDate": "2024-06-02T20:47:09.480Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.099, - "topicSearchString": "react-native ios android" + "popularity": 0.18, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/andresribeiro/react-native-hyperlinks", @@ -82010,8 +81465,6 @@ "isPrivate": false, "description": "A simple and customizable library to display hyperlinks in React Native", "topics": [ - "react-native", - "react", "link", "links", "hyperlink", @@ -82035,12 +81488,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-hyperlinks", "npm": { - "downloads": 1130, - "weekDownloads": 74, + "downloads": 1424, + "weekDownloads": 267, "size": 35002, "latestRelease": "1.0.4", "latestReleaseDate": "2023-01-05T20:53:35.481Z" @@ -82050,8 +81504,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.056, - "topicSearchString": "react-native react link links hyperlink hyperlinks hyper-link hypertext rn typescript fuzzy-links hashtag mention url" + "popularity": 0.159, + "topicSearchString": "link links hyperlink hyperlinks hyper-link hypertext rn typescript fuzzy-links hashtag mention url" }, { "githubUrl": "https://github.com/andresribeiro/react-native-reanimated-image-viewer", @@ -82084,8 +81538,6 @@ "isPrivate": false, "description": "A image viewer for React Native created with Reanimated", "topics": [ - "react-native", - "react", "reanimated", "image", "image-viewer", @@ -82109,12 +81561,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-reanimated-image-viewer", "npm": { - "downloads": 1305, - "weekDownloads": 274, + "downloads": 1159, + "weekDownloads": 282, "size": 61616, "latestRelease": "1.0.2", "latestReleaseDate": "2023-01-05T17:30:40.752Z" @@ -82124,8 +81577,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.179, - "topicSearchString": "react-native react reanimated image image-viewer image-viewing viewer viewing pinch pan zoom double-tap rn typescript" + "popularity": 0.207, + "topicSearchString": "reanimated image image-viewer image-viewing viewer viewing pinch pan zoom double-tap rn typescript" }, { "githubUrl": "https://github.com/inferusvv/react-native-unicorn-modals", @@ -82166,12 +81619,9 @@ "registry": "https://registry.npmjs.org/", "description": "Custom modals with Imperative API 🦄", "topics": [ - "react-native", "expo", "modal", "popup", - "react", - "native", "ios", "android", "reanimated", @@ -82191,13 +81641,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-unicorn-modals", "npm": { - "downloads": 12, - "weekDownloads": 4, + "downloads": 128, + "weekDownloads": 6, "size": 164454, "latestRelease": "0.5.1", "latestReleaseDate": "2023-03-03T14:46:06.912Z" @@ -82207,8 +81658,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.1, - "topicSearchString": "react-native expo modal popup react native ios android reanimated alert typescript dialog menu reanimated2" + "popularity": -1.46, + "topicSearchString": "expo modal popup ios android reanimated alert typescript dialog menu reanimated2" }, { "githubUrl": "https://github.com/kanelloc/react-native-animated-header-scroll-view", @@ -82240,7 +81691,7 @@ "forks": 20, "issues": 6, "subscribers": 1, - "stars": 265, + "stars": 267, "dependencies": 0 }, "name": "@kanelloc/react-native-animated-header-scroll-view", @@ -82249,14 +81700,12 @@ "registry": "https://registry.npmjs.org/", "description": "React native animated header ScrollView & FlatList. Animates an image or a custom component into a navbar header.", "topics": [ - "react-native", "ios", "android", "animated", "scrollview", "expo", - "flatlist", - "react" + "flatlist" ], "license": { "key": "mit", @@ -82268,11 +81717,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2777, - "weekDownloads": 475, + "downloads": 2965, + "weekDownloads": 589, "size": 68022, "latestRelease": "1.0.0", "latestReleaseDate": "2023-09-02T15:55:00.078Z" @@ -82283,8 +81733,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "react-native ios android animated scrollview expo flatlist react" + "popularity": 0.169, + "topicSearchString": "ios android animated scrollview expo flatlist" }, { "githubUrl": "https://github.com/72days/react-native-appearance-control", @@ -82319,7 +81769,6 @@ "registry": "https://registry.npmjs.org/", "description": "Dark mode controls for react-native", "topics": [ - "react-native", "ios", "android", "dark-mode", @@ -82337,24 +81786,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-appearance-control", "npm": { - "downloads": 477, - "weekDownloads": 98, + "downloads": 2058, + "weekDownloads": 1434, "size": 52885, "latestRelease": "0.3.4", "latestReleaseDate": "2023-01-10T21:45:24.203Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1.575, - "topicSearchString": "react-native ios android dark-mode night-mode appearance user-interface-style" + "popularity": -0.407, + "topicSearchString": "ios android dark-mode night-mode appearance user-interface-style" }, { "githubUrl": "https://github.com/retyui/react-native-code-push-dev-menu", @@ -82380,7 +81829,7 @@ "pushedAt": "2023-01-15T20:37:00Z", "forks": 1, "issues": 0, - "subscribers": 3, + "subscribers": 2, "stars": 7, "dependencies": 0 }, @@ -82402,13 +81851,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-code-push-dev-menu", "npm": { - "downloads": 12, - "weekDownloads": 1, + "downloads": 60, + "weekDownloads": 7, "size": 17917, "latestRelease": "1.0.1", "latestReleaseDate": "2023-01-15T20:37:16.970Z" @@ -82440,13 +81890,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-20T21:37:36Z", + "updatedAt": "2025-10-02T17:00:12Z", "createdAt": "2022-08-27T13:38:37Z", - "pushedAt": "2025-07-20T21:37:36Z", - "forks": 27, - "issues": 3, - "subscribers": 4, - "stars": 731, + "pushedAt": "2025-10-02T17:00:12Z", + "forks": 29, + "issues": 4, + "subscribers": 3, + "stars": 743, "dependencies": 0 }, "name": "react-native-android-widget", @@ -82455,10 +81905,7 @@ "registry": "https://registry.npmjs.org/", "description": "Build Android Widgets with React Native", "topics": [ - "react-native", "android", - "native", - "react", "widget" ], "license": { @@ -82471,23 +81918,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-android-widget", "npm": { - "downloads": 10589, - "weekDownloads": 1172, - "size": 389330, - "latestRelease": "0.17.1", - "latestReleaseDate": "2025-07-20T21:37:10.240Z" + "downloads": 13429, + "weekDownloads": 3246, + "size": 389553, + "latestRelease": "0.17.2", + "latestReleaseDate": "2025-10-02T17:00:09.950Z" }, - "score": 51, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.094, - "topicSearchString": "react-native android native react widget" + "popularity": 0.206, + "topicSearchString": "android widget" }, { "githubUrl": "https://github.com/Splicer97/react-native-apple-mapkit-directions", @@ -82521,7 +81969,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native wrapper for Apple MapKit Directions", "topics": [ - "react-native", "ios", "apple", "mapkit", @@ -82538,13 +81985,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-apple-mapkit-directions", "npm": { - "downloads": 36, - "weekDownloads": 0, + "downloads": 353, + "weekDownloads": 22, "size": 27294, "latestRelease": "1.2.1", "latestReleaseDate": "2023-01-30T15:49:09.909Z" @@ -82554,8 +82002,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native ios apple mapkit directions maps" + "popularity": -1.697, + "topicSearchString": "ios apple mapkit directions maps" }, { "githubUrl": "https://github.com/Novsochetra/react-native-circular-chart", @@ -82578,7 +82026,7 @@ "forks": 10, "issues": 1, "subscribers": 1, - "stars": 29, + "stars": 30, "dependencies": 0 }, "name": "react-native-circular-chart", @@ -82590,11 +82038,11 @@ "circle-chart", "circular-chart", "chart", - "react-native", "animation", "animation-library" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -82603,13 +82051,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-circular-chart", "npm": { - "downloads": 4064, - "weekDownloads": 605, + "downloads": 3784, + "weekDownloads": 1083, "size": 239516, "latestRelease": "1.0.9", "latestReleaseDate": "2023-01-25T01:42:28.064Z" @@ -82619,8 +82068,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.623, - "topicSearchString": "donut-chart circle-chart circular-chart chart react-native animation animation-library" + "popularity": -0.507, + "topicSearchString": "donut-chart circle-chart circular-chart chart animation animation-library" }, { "githubUrl": "https://github.com/reactive/data-client/tree/master/packages/react", @@ -82646,13 +82095,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-07T18:21:05Z", + "updatedAt": "2025-10-09T12:41:28Z", "createdAt": "2019-02-15T03:37:05Z", - "pushedAt": "2025-09-07T18:21:05Z", - "forks": 94, + "pushedAt": "2025-10-09T12:41:28Z", + "forks": 95, "issues": 3, - "subscribers": 18, - "stars": 2008, + "subscribers": 17, + "stars": 2013, "dependencies": 3 }, "name": "@data-client/react", @@ -82660,7 +82109,6 @@ "isPrivate": false, "description": "Async State Management without the Management. REST, GraphQL, SSE, Websockets, Fetch", "topics": [ - "react", "data", "cache", "flux", @@ -82683,7 +82131,6 @@ "query", "front-end", "mobile", - "react-native", "ios", "android", "web", @@ -82710,24 +82157,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4711, - "weekDownloads": 544, + "downloads": 4484, + "weekDownloads": 1131, "size": 1872886, "latestRelease": "0.14.25", "latestReleaseDate": "2025-03-12T17:52:13.394Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.098, - "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" + "popularity": 0.214, + "topicSearchString": "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 ios android web expo expogo nextjs middleware websocket rest graphql rpc sse declarative dynamic-data mutations" }, { "githubUrl": "https://github.com/Splicer97/react-native-mytracker", @@ -82763,10 +82210,7 @@ "registry": "https://registry.npmjs.org/", "description": "This is unofficial React Native wrapper for myTrackerSDK", "topics": [ - "react-native", "mytracker", - "react", - "native", "my.com" ], "license": { @@ -82779,21 +82223,21 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 496, - "weekDownloads": 175, + "downloads": 632, + "weekDownloads": 132, "size": 152857, "latestRelease": "2.1.0", "latestReleaseDate": "2025-07-31T16:42:51.059Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.698, - "topicSearchString": "react-native mytracker react native my.com" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.822, + "topicSearchString": "mytracker my.com" }, { "githubUrl": "https://github.com/Splicer97/react-native-osmdroid", @@ -82828,8 +82272,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native wrapper for osmdroid maps", "topics": [ - "react-native", - "react", "maps", "osmdroid", "open-street-maps", @@ -82846,11 +82288,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 164, - "weekDownloads": 22, + "downloads": 665, + "weekDownloads": 50, "size": 380856, "latestRelease": "0.14.1", "latestReleaseDate": "2024-09-03T14:26:51.416Z" @@ -82860,14 +82303,15 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.634, - "topicSearchString": "react-native react maps osmdroid open-street-maps osm android" + "popularity": -0.686, + "topicSearchString": "maps osmdroid open-street-maps osm android" }, { "githubUrl": "https://github.com/sparkfabrik/sparkfabrik-react-native-idfa-aaid", "npmPkg": "@sparkfabrik/react-native-idfa-aaid", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/sparkfabrik/sparkfabrik-react-native-idfa-aaid", @@ -82882,9 +82326,9 @@ "updatedAt": "2024-07-06T12:44:00Z", "createdAt": "2020-11-13T11:16:21Z", "pushedAt": "2024-07-06T12:44:00Z", - "forks": 22, + "forks": 21, "issues": 4, - "subscribers": 8, + "subscribers": 7, "stars": 90, "dependencies": 0 }, @@ -82893,7 +82337,6 @@ "isPrivate": false, "description": "React Native module for getting IDFA (iOS) or AAID (Android)", "topics": [ - "react-native", "ios", "android", "idfa", @@ -82910,11 +82353,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 111674, - "weekDownloads": 15500, + "downloads": 80333, + "weekDownloads": 19152, "size": 558161, "latestRelease": "1.2.0", "latestReleaseDate": "2024-07-06T12:43:53.805Z" @@ -82925,8 +82369,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.118, - "topicSearchString": "react-native ios android idfa aaid advertising" + "popularity": 0.203, + "topicSearchString": "ios android idfa aaid advertising" }, { "githubUrl": "https://github.com/matinzd/react-native-health-connect", @@ -82934,6 +82378,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", @@ -82948,10 +82393,10 @@ "updatedAt": "2025-09-07T17:04:19Z", "createdAt": "2023-01-07T02:59:05Z", "pushedAt": "2025-09-07T17:04:19Z", - "forks": 78, - "issues": 59, + "forks": 79, + "issues": 61, "subscribers": 10, - "stars": 327, + "stars": 339, "dependencies": 0 }, "name": "react-native-health-connect", @@ -82960,7 +82405,6 @@ "registry": "https://registry.npmjs.org/", "description": "React native library for health connect (Android only)", "topics": [ - "react-native", "health-connect", "health-sdk", "android", @@ -82976,24 +82420,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-health-connect", "npm": { - "downloads": 45086, - "weekDownloads": 8439, + "downloads": 50937, + "weekDownloads": 10279, "size": 435448, "latestRelease": "3.4.0", "latestReleaseDate": "2025-09-07T15:14:26.097Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.159, - "topicSearchString": "react-native health-connect health-sdk android fitness" + "popularity": 0.172, + "topicSearchString": "health-connect health-sdk android fitness" }, { "githubUrl": "https://github.com/Malaa-tech/react-native-simple-line-chart", @@ -83013,13 +82457,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-29T09:53:58Z", + "updatedAt": "2025-10-07T08:08:02Z", "createdAt": "2023-01-14T13:12:08Z", - "pushedAt": "2025-07-29T09:53:58Z", + "pushedAt": "2025-10-07T08:08:02Z", "forks": 4, - "issues": 2, + "issues": 4, "subscribers": 3, - "stars": 85, + "stars": 87, "dependencies": 1 }, "name": "react-native-simple-line-chart", @@ -83028,7 +82472,6 @@ "registry": "https://registry.npmjs.org/", "description": "A fast, interactive and simple line chart component for React Native 📈", "topics": [ - "react-native", "line-chart", "charts", "chart-library", @@ -83051,22 +82494,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-simple-line-chart", "npm": { - "downloads": 4309, - "weekDownloads": 838, - "size": 406061, - "latestRelease": "0.39.0", - "latestReleaseDate": "2025-07-29T09:53:54.830Z" + "downloads": 3548, + "weekDownloads": 601, + "size": 406533, + "latestRelease": "0.39.1", + "latestReleaseDate": "2025-10-07T08:07:02.743Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.165, - "topicSearchString": "react-native line-chart charts chart-library ui-component graphs android chart ios line reanimated reanimated3" + "popularity": 0.144, + "topicSearchString": "line-chart charts chart-library ui-component graphs android chart ios line reanimated reanimated3" }, { "githubUrl": "https://github.com/tokkozhin/react-native-qrcode-styled", @@ -83094,10 +82539,10 @@ "updatedAt": "2025-08-27T23:53:43Z", "createdAt": "2023-02-06T16:36:24Z", "pushedAt": "2025-08-27T23:53:43Z", - "forks": 10, + "forks": 11, "issues": 7, "subscribers": 2, - "stars": 200, + "stars": 208, "dependencies": 3 }, "name": "react-native-qrcode-styled", @@ -83106,7 +82551,6 @@ "registry": "https://registry.npmjs.org/", "description": "Fully customizable QR Codes generator for React Native", "topics": [ - "react-native", "qrcode", "svg", "qrcode-svg", @@ -83124,24 +82568,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-qrcode-styled", "npm": { - "downloads": 128718, - "weekDownloads": 18800, + "downloads": 85587, + "weekDownloads": 20590, "size": 259634, "latestRelease": "0.4.0", "latestReleaseDate": "2025-08-27T23:53:42.745Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.124, - "topicSearchString": "react-native qrcode svg qrcode-svg qrcode-styled qr-generator rn-qr-generator" + "popularity": 0.204, + "topicSearchString": "qrcode svg qrcode-svg qrcode-styled qr-generator rn-qr-generator" }, { "githubUrl": "https://github.com/dotnet/aspnetcore/tree/main/src/SignalR/clients/ts/signalr", @@ -83164,10 +82608,10 @@ "updatedAt": "2025-08-15T23:19:06Z", "createdAt": "2014-03-11T06:09:42Z", "pushedAt": "2025-08-15T23:19:06Z", - "forks": 10302, - "issues": 3302, - "subscribers": 1432, - "stars": 37078, + "forks": 10321, + "issues": 3330, + "subscribers": 1431, + "stars": 37288, "dependencies": 5 }, "name": "@microsoft/signalr", @@ -83188,11 +82632,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3529764, - "weekDownloads": 587203, + "downloads": 3518466, + "weekDownloads": 815023, "size": 2831580, "latestRelease": "9.0.6", "latestReleaseDate": "2025-07-31T21:32:33.010Z" @@ -83205,7 +82650,7 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.197, "topicSearchString": "signalr aspnetcore" }, { @@ -83237,7 +82682,7 @@ "forks": 48, "issues": 6, "subscribers": 2, - "stars": 251, + "stars": 261, "dependencies": 0 }, "name": "rn-vertical-slider", @@ -83246,7 +82691,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Vertical Slider", "topics": [ - "react-native", "ios", "android", "vertical-slider", @@ -83266,12 +82710,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-vertical-slider", "npm": { - "downloads": 3814, - "weekDownloads": 546, + "downloads": 3396, + "weekDownloads": 818, "size": 40664, "latestRelease": "4.4.1", "latestReleaseDate": "2025-07-12T23:20:45.660Z" @@ -83281,8 +82726,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.122, - "topicSearchString": "react-native ios android vertical-slider column-slider rn rn-vertical-slider slider vertical" + "popularity": 0.205, + "topicSearchString": "ios android vertical-slider column-slider rn rn-vertical-slider slider vertical" }, { "githubUrl": "https://github.com/showtime-xyz/showtime-tab-view", @@ -83307,9 +82752,9 @@ "updatedAt": "2025-02-18T10:06:03Z", "createdAt": "2023-01-13T18:03:26Z", "pushedAt": "2025-02-18T10:06:03Z", - "forks": 26, + "forks": 27, "issues": 8, - "subscribers": 5, + "subscribers": 4, "stars": 282, "dependencies": 0 }, @@ -83319,7 +82764,6 @@ "registry": "https://registry.npmjs.org/", "description": "A react native TabView component that support collapse header and custom refresh control, powered by Reanimated & GestureHandler. Join Showtime:", "topics": [ - "react-native", "ios", "android" ], @@ -83333,11 +82777,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2819, - "weekDownloads": 486, + "downloads": 2300, + "weekDownloads": 729, "size": 278045, "latestRelease": "0.2.1", "latestReleaseDate": "2024-02-20T09:54:28.673Z" @@ -83348,8 +82793,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.147, - "topicSearchString": "react-native ios android" + "popularity": 0.27, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/rgommezz/react-native-chatgpt", @@ -83375,8 +82820,8 @@ "pushedAt": "2023-01-31T11:51:32Z", "forks": 80, "issues": 5, - "subscribers": 13, - "stars": 577, + "subscribers": 12, + "stars": 580, "dependencies": 3 }, "name": "react-native-chatgpt", @@ -83385,12 +82830,10 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native wrapper around ChatGPT to seamlessly integrate it with your applications. It handles authentication, streamed responses, and keeping track of conversations. 100% client-side :robot:", "topics": [ - "react-native", "ios", "android", "chatbot", - "chatgpt", - "react" + "chatgpt" ], "license": { "key": "mit", @@ -83402,13 +82845,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-chatgpt", "npm": { - "downloads": 98, - "weekDownloads": 6, + "downloads": 1571, + "weekDownloads": 12, "size": 176379, "latestRelease": "0.9.0", "latestReleaseDate": "2023-01-29T21:21:45.615Z" @@ -83419,8 +82863,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.448, - "topicSearchString": "react-native ios android chatbot chatgpt react" + "popularity": -0.743, + "topicSearchString": "ios android chatbot chatgpt" }, { "githubUrl": "https://github.com/ggunti/react-native-amazing-cropper", @@ -83451,7 +82895,7 @@ "forks": 60, "issues": 6, "subscribers": 3, - "stars": 162, + "stars": 163, "dependencies": 0 }, "name": "react-native-amazing-cropper", @@ -83459,8 +82903,6 @@ "isPrivate": false, "description": "Image cropper for react native using Animated API", "topics": [ - "react-native", - "react", "crop", "rotate", "image", @@ -83479,23 +82921,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-amazing-cropper", "npm": { - "downloads": 277, - "weekDownloads": 59, + "downloads": 248, + "weekDownloads": 34, "size": 207892, "latestRelease": "0.2.8", "latestReleaseDate": "2025-03-30T15:15:47.096Z" }, - "score": 51, + "score": 41, "matchingScoreModifiers": [ "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.568, - "topicSearchString": "react-native react crop rotate image cropper rotation ios android" + "popularity": -0.633, + "topicSearchString": "crop rotate image cropper rotation ios android" }, { "githubUrl": "https://github.com/draftbit/react-native-jigsaw/tree/master/packages/ui", @@ -83515,10 +82959,10 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-05-29T16:13:40Z", + "updatedAt": "2025-09-24T15:53:33Z", "createdAt": "2020-04-01T21:32:42Z", - "pushedAt": "2025-05-29T16:13:40Z", - "forks": 28, + "pushedAt": "2025-09-24T15:53:33Z", + "forks": 27, "issues": 2, "subscribers": 4, "stars": 118, @@ -83529,7 +82973,6 @@ "isPrivate": false, "description": "Draftbit UI Library", "topics": [ - "react-native", "ios", "android" ], @@ -83543,21 +82986,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4415, - "weekDownloads": 1070, - "size": 279424, - "latestRelease": "52.1.9", - "latestReleaseDate": "2025-05-29T16:16:39.801Z" + "downloads": 46785, + "weekDownloads": 936, + "size": 281094, + "latestRelease": "53.0.2", + "latestReleaseDate": "2025-09-24T15:56:14.623Z" }, - "score": 43, + "score": 57, "matchingScoreModifiers": [ + "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.206, - "topicSearchString": "react-native ios android" + "popularity": 0.017, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/styled-components/css-to-react-native", @@ -83581,10 +83027,10 @@ "updatedAt": "2025-05-16T14:06:03Z", "createdAt": "2016-11-09T16:34:37Z", "pushedAt": "2025-05-16T14:06:03Z", - "forks": 82, + "forks": 83, "issues": 7, - "subscribers": 38, - "stars": 1160, + "subscribers": 37, + "stars": 1163, "dependencies": 3 }, "name": "css-to-react-native", @@ -83593,7 +83039,6 @@ "description": "Convert CSS text to a React Native stylesheet object", "topics": [ "styled-components", - "react", "reactnative", "styles", "css" @@ -83608,12 +83053,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "css-to-react-native", "npm": { - "downloads": 31373377, - "weekDownloads": 5224412, + "downloads": 30553844, + "weekDownloads": 6800970, "size": 90021, "latestRelease": "3.2.0", "latestReleaseDate": "2023-02-14T22:20:46.436Z" @@ -83625,8 +83071,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "styled-components react reactnative styles css" + "popularity": 0.189, + "topicSearchString": "styled-components reactnative styles css" }, { "githubUrl": "https://github.com/necolas/react-native-web/tree/master/packages/babel-plugin-react-native-web", @@ -83644,13 +83090,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-08-20T20:40:01Z", + "updatedAt": "2025-10-16T15:08:40Z", "createdAt": "2015-06-09T19:25:38Z", - "pushedAt": "2025-08-20T20:40:01Z", - "forks": 1764, - "issues": 115, + "pushedAt": "2025-10-16T15:08:40Z", + "forks": 1765, + "issues": 118, "subscribers": 329, - "stars": 21998, + "stars": 22028, "dependencies": 0 }, "name": "babel-plugin-react-native-web", @@ -83669,26 +83115,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "babel-plugin-react-native-web", "npm": { - "downloads": 7179215, - "weekDownloads": 1173052, + "downloads": 7795234, + "weekDownloads": 1675241, "size": 17221, - "latestRelease": "0.21.1", - "latestReleaseDate": "2025-08-20T20:41:10.300Z" + "latestRelease": "0.21.2", + "latestReleaseDate": "2025-10-16T15:09:50.060Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.139, + "popularity": 0.183, "topicSearchString": "" }, { @@ -83719,7 +83165,7 @@ "pushedAt": "2024-03-07T22:59:14Z", "forks": 15, "issues": 3, - "subscribers": 2, + "subscribers": 1, "stars": 25, "dependencies": 0 }, @@ -83728,7 +83174,6 @@ "isPrivate": false, "description": "📆 React Native Month Component", "topics": [ - "react-native", "month", "component" ], @@ -83742,12 +83187,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-month", "npm": { - "downloads": 10097, - "weekDownloads": 1594, + "downloads": 11485, + "weekDownloads": 2895, "size": 510510, "latestRelease": "1.7.0", "latestReleaseDate": "2024-03-07T23:01:25.087Z" @@ -83757,8 +83203,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.134, - "topicSearchString": "react-native month component" + "popularity": 0.214, + "topicSearchString": "month component" }, { "githubUrl": "https://github.com/a-tokyo/react-native-flex-grid", @@ -83785,8 +83231,8 @@ "pushedAt": "2025-05-31T14:00:32Z", "forks": 5, "issues": 1, - "subscribers": 3, - "stars": 52, + "subscribers": 2, + "stars": 53, "dependencies": 0 }, "name": "react-native-flex-grid", @@ -83794,8 +83240,6 @@ "isPrivate": false, "description": "🎨 A react-native flexbox grid similar to bootstap's web grid.", "topics": [ - "react", - "react-native", "web", "grid", "layout", @@ -83826,12 +83270,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-flex-grid", "npm": { - "downloads": 29245, - "weekDownloads": 719, + "downloads": 35706, + "weekDownloads": 10447, "size": 142879, "latestRelease": "1.0.6", "latestReleaseDate": "2025-05-31T14:03:13.864Z" @@ -83840,8 +83285,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.021, - "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" + "popularity": 0.249, + "topicSearchString": "web grid layout flex flexbox design style bootstrap 12-columns n-columns demo storybook typescript flowtype expo framework customizable configurable zero-dependency" }, { "githubUrl": "https://github.com/qiuxiang/react-native-amap3d", @@ -83870,10 +83315,10 @@ "updatedAt": "2023-07-10T03:45:37Z", "createdAt": "2017-05-26T06:48:38Z", "pushedAt": "2023-07-10T03:45:37Z", - "forks": 321, + "forks": 323, "issues": 286, - "subscribers": 24, - "stars": 1320, + "subscribers": 23, + "stars": 1325, "dependencies": 1 }, "name": "react-native-amap3d", @@ -83881,7 +83326,6 @@ "isPrivate": false, "description": "react-native 高德地图组件,使用最新 3D SDK,支持 Android + iOS", "topics": [ - "react-native", "amap", "maps", "mapview" @@ -83896,13 +83340,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-amap3d", "npm": { - "downloads": 1244, - "weekDownloads": 190, + "downloads": 1877, + "weekDownloads": 261, "size": 84469, "latestRelease": "3.2.4", "latestReleaseDate": "2023-07-10T03:46:54.253Z" @@ -83915,8 +83360,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.62, - "topicSearchString": "react-native amap maps mapview" + "popularity": -0.632, + "topicSearchString": "amap maps mapview" }, { "githubUrl": "https://github.com/mixpanel/mixpanel-react-native", @@ -83942,10 +83387,10 @@ "updatedAt": "2025-07-17T23:01:27Z", "createdAt": "2020-02-06T08:11:13Z", "pushedAt": "2025-07-17T23:01:27Z", - "forks": 51, - "issues": 20, + "forks": 53, + "issues": 21, "subscribers": 40, - "stars": 119, + "stars": 123, "dependencies": 3 }, "name": "mixpanel-react-native", @@ -83954,14 +83399,11 @@ "description": "Official React Native Tracking Library for Mixpanel Analytics", "topics": [ "mixpanel", - "react", - "native", "ios", "android", "analytics", "tracking", "sdk", - "react-native", "analytics-tracking", "mixpanel-sdk" ], @@ -83975,23 +83417,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "mixpanel-react-native", "npm": { - "downloads": 452244, - "weekDownloads": 76923, + "downloads": 380531, + "weekDownloads": 90984, "size": 40243541, "latestRelease": "3.1.2", "latestReleaseDate": "2025-06-05T17:13:47.708Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.145, - "topicSearchString": "mixpanel react native ios android analytics tracking sdk react-native analytics-tracking mixpanel-sdk" + "popularity": 0.203, + "topicSearchString": "mixpanel ios android analytics tracking sdk analytics-tracking mixpanel-sdk" }, { "githubUrl": "https://github.com/matinzd/react-native-block-store", @@ -84025,7 +83467,6 @@ "registry": "https://registry.npmjs.org/", "description": "test", "topics": [ - "react-native", "ios", "android" ], @@ -84039,24 +83480,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-block-store", "npm": { - "downloads": 109, - "weekDownloads": 1, + "downloads": 63, + "weekDownloads": 12, "size": 20287, "latestRelease": "0.1.1", "latestReleaseDate": "2023-03-03T11:29:55.262Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1.742, - "topicSearchString": "react-native ios android" + "popularity": -1.579, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/pushpender-singh-ap/react-native-scanner", @@ -84077,28 +83518,30 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-03T13:56:53Z", + "updatedAt": "2025-10-17T19:59:18Z", "createdAt": "2023-03-04T13:46:43Z", - "pushedAt": "2025-07-03T13:56:53Z", - "forks": 13, - "issues": 2, + "pushedAt": "2025-10-17T19:59:18Z", + "forks": 14, + "issues": 0, "subscribers": 5, - "stars": 86, + "stars": 89, "dependencies": 0 }, "name": "@pushpendersingh/react-native-scanner", "fullName": "pushpender-singh-ap/react-native-scanner", "isPrivate": false, "registry": "https://registry.npmjs.org/", - "description": "A QR code & Barcode Scanner for React Native Projects. It supports React Native's new Fabric Native architecture and was created in Kotlin and Objective-C.", + "description": "A QR code & Barcode Scanner for React Native Projects. It supports React Native's new Turbo + Fabric Native architecture and was created in Kotlin (Android) and Swift (iOS) with Objective-C++ bridges.", "topics": [ - "react-native", "ios", "android", "barcode", "barcode-scanner", "qrcode", - "qrcode-scanner" + "qrcode-scanner", + "bar", + "qr", + "scanner" ], "license": { "key": "mit", @@ -84110,21 +83553,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 558, - "weekDownloads": 45, - "size": 83971, - "latestRelease": "1.5.0", - "latestReleaseDate": "2025-02-02T14:02:22.325Z" + "downloads": 1079, + "weekDownloads": 86, + "size": 101319, + "latestRelease": "2.0.0", + "latestReleaseDate": "2025-10-17T19:29:03.243Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.681, - "topicSearchString": "react-native ios android barcode barcode-scanner qrcode qrcode-scanner" + "popularity": 0.068, + "topicSearchString": "ios android barcode barcode-scanner qrcode qrcode-scanner bar qr scanner" }, { "githubUrl": "https://github.com/frw/react-native-ssl-public-key-pinning", @@ -84150,7 +83595,7 @@ "forks": 15, "issues": 4, "subscribers": 1, - "stars": 235, + "stars": 239, "dependencies": 0 }, "name": "react-native-ssl-public-key-pinning", @@ -84159,7 +83604,6 @@ "registry": "https://registry.npmjs.org/", "description": "Simple and secure SSL public key pinning for React Native. No native configuration needed, set up in <5 minutes.", "topics": [ - "react-native", "ios", "android", "ssl", @@ -84177,24 +83621,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-ssl-public-key-pinning", "npm": { - "downloads": 69359, - "weekDownloads": 11216, + "downloads": 78232, + "weekDownloads": 16854, "size": 59538, "latestRelease": "1.2.6", "latestReleaseDate": "2025-07-05T13:50:23.821Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.137, - "topicSearchString": "react-native ios android ssl ssl-pinning network pki" + "popularity": 0.183, + "topicSearchString": "ios android ssl ssl-pinning network pki" }, { "githubUrl": "https://github.com/jgillick/react-native-a11y-slider", @@ -84224,7 +83667,7 @@ "createdAt": "2022-10-12T19:07:02Z", "pushedAt": "2023-10-26T20:48:18Z", "forks": 1, - "issues": 1, + "issues": 0, "subscribers": 1, "stars": 14, "dependencies": 0 @@ -84236,7 +83679,6 @@ "topics": [ "a11y", "accessibility", - "react-native", "slider" ], "license": { @@ -84249,23 +83691,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-a11y-slider", "npm": { - "downloads": 4839, - "weekDownloads": 721, + "downloads": 5124, + "weekDownloads": 1193, "size": 68265, "latestRelease": "1.3.2", "latestReleaseDate": "2023-10-26T20:40:56.688Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.123, - "topicSearchString": "a11y accessibility react-native slider" + "popularity": -0.052, + "topicSearchString": "a11y accessibility slider" }, { "githubUrl": "https://github.com/jgillick/react-fancy-qrcode", @@ -84298,8 +83740,8 @@ "pushedAt": "2024-10-11T19:36:29Z", "forks": 2, "issues": 0, - "subscribers": 1, - "stars": 22, + "subscribers": 2, + "stars": 25, "dependencies": 2 }, "name": "react-fancy-qrcode", @@ -84307,9 +83749,7 @@ "isPrivate": false, "description": "Customizable QR code generated for React & React Native", "topics": [ - "qrcode", - "react", - "react-native" + "qrcode" ], "license": { "key": "mit", @@ -84321,23 +83761,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-fancy-qrcode", "npm": { - "downloads": 3675, - "weekDownloads": 399, + "downloads": 6514, + "weekDownloads": 2504, "size": 38561, "latestRelease": "1.0.4", "latestReleaseDate": "2024-10-11T19:36:44.268Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.158, - "topicSearchString": "qrcode react react-native" + "popularity": 0.327, + "topicSearchString": "qrcode" }, { "githubUrl": "https://github.com/mutualmobile/react-native-barricade", @@ -84366,7 +83806,7 @@ "pushedAt": "2024-01-10T11:30:38Z", "forks": 0, "issues": 0, - "subscribers": 3, + "subscribers": 2, "stars": 9, "dependencies": 2 }, @@ -84375,8 +83815,6 @@ "isPrivate": false, "description": "A local server configurable at runtime to develop, test, and prototype your React Native app.", "topics": [ - "react-native", - "react", "mobile", "ios", "android", @@ -84402,10 +83840,11 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 10, + "downloads": 15, "weekDownloads": 0, "size": 236973, "latestRelease": "1.0.0", @@ -84417,7 +83856,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native react mobile ios android http interceptor mock-api mock network pretender prototype server testing mockapi typescipt" + "topicSearchString": "mobile ios android http interceptor mock-api mock network pretender prototype server testing mockapi typescipt" }, { "githubUrl": "https://github.com/azeezat/react-native-select", @@ -84445,14 +83884,14 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-24T06:43:41Z", + "updatedAt": "2025-10-20T06:07:48Z", "createdAt": "2022-01-04T07:33:01Z", - "pushedAt": "2025-08-24T06:43:41Z", - "forks": 27, - "issues": 3, + "pushedAt": "2025-10-20T06:07:48Z", + "forks": 28, + "issues": 6, "subscribers": 2, - "stars": 158, - "dependencies": 0 + "stars": 164, + "dependencies": 1 }, "name": "react-native-input-select", "fullName": "azeezat/react-native-select", @@ -84460,7 +83899,6 @@ "registry": "https://registry.npmjs.org/", "description": "A customizable dropdown selection package for react-native android, iOS and web with multiple select and search capabilities. Look is consistent across platforms. Compatible with Expo.", "topics": [ - "react-native", "ios", "android", "dropdown", @@ -84471,7 +83909,6 @@ "pull-down-menu", "combo-box", "list-box", - "react", "select", "multi-select", "multipleselection", @@ -84487,22 +83924,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 13513, - "weekDownloads": 1841, + "downloads": 14973, + "weekDownloads": 3073, "size": 347835, "latestRelease": "2.1.8", "latestReleaseDate": "2025-08-24T06:43:40.828Z" }, - "score": 49, + "score": 57, "matchingScoreModifiers": [ + "Known", "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.116, - "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" + "popularity": 0.174, + "topicSearchString": "ios android dropdown selection dropdown-menu multiple-select picker pull-down-menu combo-box list-box select multi-select multipleselection search" }, { "githubUrl": "https://github.com/AtharvaDeolalikar/react-native-animated-bottom-drawer", @@ -84533,15 +83972,14 @@ "isPrivate": false, "description": "A lightweight and animated bottom drawer for react native 🚀", "topics": [ - "react-native", "bottom-drawer", "bottom-sheet", - "react", "bottom-modal", "modal", "typescript" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -84550,13 +83988,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-animated-bottom-drawer", "npm": { - "downloads": 2403, - "weekDownloads": 429, + "downloads": 2460, + "weekDownloads": 534, "size": 22114, "latestRelease": "0.0.23", "latestReleaseDate": "2023-08-11T08:03:52.877Z" @@ -84566,8 +84005,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.598, - "topicSearchString": "react-native bottom-drawer bottom-sheet react bottom-modal modal typescript" + "popularity": -0.565, + "topicSearchString": "bottom-drawer bottom-sheet bottom-modal modal typescript" }, { "githubUrl": "https://github.com/jpudysz/react-native-is-maestro", @@ -84594,7 +84033,7 @@ "forks": 5, "issues": 1, "subscribers": 1, - "stars": 38, + "stars": 40, "dependencies": 0 }, "name": "react-native-is-maestro", @@ -84603,7 +84042,6 @@ "registry": "https://registry.npmjs.org/", "description": "Detect synchronously if your app is currently running in an E2E test environment with Maestro", "topics": [ - "react-native", "ios", "android", "web", @@ -84619,12 +84057,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-is-maestro", "npm": { - "downloads": 11404, - "weekDownloads": 442, + "downloads": 1502, + "weekDownloads": 333, "size": 43348, "latestRelease": "3.0.1", "latestReleaseDate": "2024-06-27T12:13:40.428Z" @@ -84634,8 +84073,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.033, - "topicSearchString": "react-native ios android web maestro" + "popularity": 0.189, + "topicSearchString": "ios android web maestro" }, { "githubUrl": "https://github.com/douglasjunior/react-native-pdf-renderer", @@ -84663,9 +84102,9 @@ "createdAt": "2023-03-09T11:19:24Z", "pushedAt": "2025-08-12T20:31:44Z", "forks": 9, - "issues": 3, + "issues": 2, "subscribers": 3, - "stars": 244, + "stars": 257, "dependencies": 0 }, "name": "react-native-pdf-renderer", @@ -84674,7 +84113,6 @@ "registry": "https://registry.npmjs.org/", "description": "⚛ A zoomable, blazing fast, zero dependencies, pure native, typed PDF Renderer for Android and iOS.", "topics": [ - "react-native", "android", "ios", "pdf", @@ -84691,23 +84129,24 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-pdf-renderer", "npm": { - "downloads": 37490, - "weekDownloads": 6889, + "downloads": 58776, + "weekDownloads": 11949, "size": 174403, "latestRelease": "2.3.0", "latestReleaseDate": "2025-08-12T20:32:04.137Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.156, - "topicSearchString": "react-native android ios pdf pdfrenderer pdfkit" + "popularity": 0.173, + "topicSearchString": "android ios pdf pdfrenderer pdfkit" }, { "githubUrl": "https://github.com/dozsolti/react-native-use-list", @@ -84744,7 +84183,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native library of easy solutions for common List use cases.", "topics": [ - "react-native", "ios", "android", "flatlist", @@ -84761,13 +84199,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-use-list", "npm": { - "downloads": 77, - "weekDownloads": 12, + "downloads": 134, + "weekDownloads": 10, "size": 55355, "latestRelease": "0.2.1", "latestReleaseDate": "2023-04-28T10:44:29.336Z" @@ -84777,8 +84216,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.367, - "topicSearchString": "react-native ios android flatlist sectionlist virtualizedlist" + "popularity": -1.435, + "topicSearchString": "ios android flatlist sectionlist virtualizedlist" }, { "githubUrl": "https://github.com/ahmedrowaihi/react-native-i18n-storage", @@ -84814,7 +84253,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native I18n Storage is a simple library to manage your app's I18nManager settings and language by keeping them in sync with local storage from the initial native app launch!.", "topics": [ - "react-native", "ios", "android" ], @@ -84828,11 +84266,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 12, - "weekDownloads": 0, + "downloads": 118, + "weekDownloads": 8, "size": 73561, "latestRelease": "2.0.5", "latestReleaseDate": "2023-05-07T10:51:18.033Z" @@ -84842,8 +84281,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native ios android" + "popularity": -0.941, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/gmsgowtham/react-native-code-highlighter", @@ -84871,7 +84310,7 @@ "pushedAt": "2025-07-02T13:26:55Z", "forks": 8, "issues": 5, - "subscribers": 3, + "subscribers": 2, "stars": 66, "dependencies": 3 }, @@ -84881,7 +84320,6 @@ "registry": "https://registry.npmjs.org/", "description": "Syntax highlighter for React Native powered by react-syntax-highlighter", "topics": [ - "react-native", "ios", "android", "web", @@ -84889,8 +84327,7 @@ "syntax-highlighter", "code-highlight", "syntax-highlighting", - "typescript", - "react" + "typescript" ], "license": { "key": "mit", @@ -84902,12 +84339,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-code-highlighter", "npm": { - "downloads": 7445, - "weekDownloads": 1032, + "downloads": 12363, + "weekDownloads": 2221, "size": 32860, "latestRelease": "1.3.0", "latestReleaseDate": "2025-07-01T15:00:49.859Z" @@ -84916,8 +84354,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.118, - "topicSearchString": "react-native ios android web code-hightlighter syntax-highlighter code-highlight syntax-highlighting typescript react" + "popularity": 0.153, + "topicSearchString": "ios android web code-hightlighter syntax-highlighter code-highlight syntax-highlighting typescript" }, { "githubUrl": "https://github.com/gbumps/react-native-screenguard", @@ -84934,13 +84372,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-07-21T07:30:28Z", + "updatedAt": "2025-10-20T14:02:34Z", "createdAt": "2023-06-02T12:05:48Z", - "pushedAt": "2025-07-21T07:30:28Z", - "forks": 30, - "issues": 3, + "pushedAt": "2025-10-20T14:02:34Z", + "forks": 31, + "issues": 1, "subscribers": 3, - "stars": 289, + "stars": 294, "dependencies": 0 }, "name": "react-native-screenguard", @@ -84969,8 +84407,6 @@ "screenshot-block-android", "screenshot-blocker-ios", "screenshot-blocker-android", - "react", - "native", "ios", "android" ], @@ -84984,23 +84420,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-screenguard", "npm": { - "downloads": 34045, - "weekDownloads": 6215, + "downloads": 33915, + "weekDownloads": 8549, "size": 292591, "latestRelease": "1.1.0", "latestReleaseDate": "2025-07-09T16:37:42.032Z" }, - "score": 51, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.155, - "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" + "popularity": 0.214, + "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 ios android" }, { "githubUrl": "https://github.com/4cc3ssX/react-native-totp-utils", @@ -85025,9 +84463,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2024-12-09T09:46:33Z", + "updatedAt": "2025-09-23T15:09:14Z", "createdAt": "2023-06-08T12:14:28Z", - "pushedAt": "2024-12-09T09:46:33Z", + "pushedAt": "2025-09-23T15:09:14Z", "forks": 2, "issues": 3, "subscribers": 2, @@ -85040,7 +84478,6 @@ "registry": "https://registry.npmjs.org/", "description": "A full-featured Time-Based One-Time Password (TOTP) library for React Native witten in C++", "topics": [ - "react-native", "ios", "android", "totp", @@ -85055,23 +84492,24 @@ }, "hasTypes": true, "newArchitecture": true, - "isArchived": false, - "hasNativeCode": true + "isArchived": true, + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-totp-utils", "npm": { - "downloads": 23, - "weekDownloads": 6, - "size": 74203, - "latestRelease": "1.0.5", - "latestReleaseDate": "2023-06-22T08:05:20.987Z" + "downloads": 129, + "weekDownloads": 98, + "size": 74309, + "latestRelease": "1.0.6", + "latestReleaseDate": "2025-09-23T15:09:09.666Z" }, - "score": 35, + "score": 51, "matchingScoreModifiers": [ - "Not updated recently" + "Recently updated" ], - "popularity": -1.51, - "topicSearchString": "react-native ios android totp totp-utils" + "popularity": -1.097, + "topicSearchString": "ios android totp totp-utils" }, { "githubUrl": "https://github.com/JedrzejMajko/react-native-hardwired", @@ -85115,13 +84553,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-hardwired", "npm": { - "downloads": 1, - "weekDownloads": 0, + "downloads": 12, + "weekDownloads": 1, "size": 702204, "latestRelease": "0.10.2", "latestReleaseDate": "2023-07-26T12:42:25.101Z" @@ -85131,7 +84570,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -1.65, "topicSearchString": "" }, { @@ -85150,13 +84589,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-13T13:12:15Z", + "updatedAt": "2025-10-21T00:47:05Z", "createdAt": "2023-06-09T10:46:18Z", - "pushedAt": "2025-09-13T13:12:15Z", + "pushedAt": "2025-10-21T00:47:05Z", "forks": 10, - "issues": 3, + "issues": 2, "subscribers": 1, - "stars": 167, + "stars": 177, "dependencies": 1 }, "name": "react-native-maps-routes", @@ -85164,7 +84603,6 @@ "isPrivate": false, "description": "Component for react-native-maps to draw a route between two coordinates", "topics": [ - "react-native", "maps", "ios", "android" @@ -85179,23 +84617,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-maps-routes", "npm": { - "downloads": 1552, - "weekDownloads": 230, - "size": 21930, - "latestRelease": "1.3.4", - "latestReleaseDate": "2025-09-12T18:04:21.131Z" + "downloads": 2139, + "weekDownloads": 430, + "size": 21933, + "latestRelease": "1.3.6", + "latestReleaseDate": "2025-10-20T20:38:14.757Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.126, - "topicSearchString": "react-native maps ios android" + "popularity": 0.171, + "topicSearchString": "maps ios android" }, { "githubUrl": "https://github.com/monkin77/react-native-esper-sdk", @@ -85229,7 +84668,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Module that interacts with the Esper SDK", "topics": [ - "react-native", "ios", "android" ], @@ -85243,12 +84681,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-esper-sdk", "npm": { - "downloads": 7, + "downloads": 28, "weekDownloads": 0, "size": 32692, "latestRelease": "0.2.2", @@ -85260,7 +84699,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/vonovak/react-native-theme-control", @@ -85270,6 +84709,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/vonovak/react-native-theme-control", @@ -85287,7 +84727,7 @@ "forks": 2, "issues": 1, "subscribers": 3, - "stars": 171, + "stars": 170, "dependencies": 2 }, "name": "@vonovak/react-native-theme-control", @@ -85296,7 +84736,6 @@ "registry": "https://registry.npmjs.org/", "description": "Natively control react native application theme at runtime and persist it for the next app start.", "topics": [ - "react-native", "ios", "android", "theme", @@ -85315,21 +84754,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 3024, - "weekDownloads": 497, + "downloads": 3361, + "weekDownloads": 516, "size": 117704, "latestRelease": "7.0.2", "latestReleaseDate": "2025-07-06T17:52:16.885Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": 0.14, - "topicSearchString": "react-native ios android theme dark dark-mode apearance hacktoberfest" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.131, + "topicSearchString": "ios android theme dark dark-mode apearance hacktoberfest" }, { "githubUrl": "https://github.com/movio/react-native-rsa-signer", @@ -85351,7 +84790,7 @@ "pushedAt": "2023-07-28T00:42:58Z", "forks": 0, "issues": 2, - "subscribers": 11, + "subscribers": 10, "stars": 6, "dependencies": 0 }, @@ -85360,7 +84799,6 @@ "isPrivate": false, "description": "RSA signer for JWS Tokens", "topics": [ - "react-native", "rsa", "jwt", "encryption", @@ -85377,13 +84815,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-rsa-signer", "npm": { - "downloads": 2, - "weekDownloads": 1, + "downloads": 10, + "weekDownloads": 3, "size": 80881, "latestRelease": "1.5.1", "latestReleaseDate": "2023-07-28T00:44:37.843Z" @@ -85393,8 +84832,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native rsa jwt encryption security numero" + "popularity": -1.45, + "topicSearchString": "rsa jwt encryption security numero" }, { "githubUrl": "https://github.com/aidin36/react-native-pie-chart", @@ -85432,8 +84871,6 @@ "isPrivate": true, "description": "Simple pie chart module for your React Native app", "topics": [ - "react", - "react-native", "chart", "pie-chart", "visualization" @@ -85448,23 +84885,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-pie-chart", "npm": { - "downloads": 44154, - "weekDownloads": 7096, + "downloads": 38872, + "weekDownloads": 8666, "size": 337223, "latestRelease": "4.0.1", "latestReleaseDate": "2025-02-06T22:54:12.919Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.137, - "topicSearchString": "react react-native chart pie-chart visualization" + "popularity": 0.19, + "topicSearchString": "chart pie-chart visualization" }, { "githubUrl": "https://github.com/fracht/react-native-input-autofocus/tree/main/lib", @@ -85503,7 +84940,6 @@ "isPrivate": false, "description": "Support for next input focusing functionality", "topics": [ - "react-native", "autofocus", "next-field", "enter", @@ -85521,12 +84957,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 166, - "weekDownloads": 16, + "downloads": 474, + "weekDownloads": 124, "size": 52463, "latestRelease": "0.0.2", "latestReleaseDate": "2023-06-23T12:07:18.324Z" @@ -85536,8 +84973,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.668, - "topicSearchString": "react-native autofocus next-field enter onenter input textfield" + "popularity": -1.527, + "topicSearchString": "autofocus next-field enter onenter input textfield" }, { "githubUrl": "https://github.com/CareLuLu/react-native-web-jsonschema-form", @@ -85555,10 +84992,10 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-14T21:42:24Z", + "updatedAt": "2025-09-16T16:28:43Z", "createdAt": "2019-04-03T21:57:31Z", - "pushedAt": "2025-08-14T21:42:24Z", - "forks": 3, + "pushedAt": "2025-09-16T16:28:43Z", + "forks": 4, "issues": 7, "subscribers": 4, "stars": 40, @@ -85569,13 +85006,11 @@ "isPrivate": false, "topics": [ "expo", - "react", - "react-native", "web", - "react-component", + "component", "ui-components", "json-schema", - "react-form" + "form" ], "license": { "name": "MIT License", @@ -85587,12 +85022,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-web-jsonschema-form", "npm": { - "downloads": 174, - "weekDownloads": 3, + "downloads": 517, + "weekDownloads": 20, "size": 191929, "latestRelease": "4.0.0", "latestReleaseDate": "2022-04-20T14:55:23.902Z" @@ -85601,8 +85037,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.735, - "topicSearchString": "expo react react-native web react-component ui-components json-schema react-form" + "popularity": -0.717, + "topicSearchString": "expo web component ui-components json-schema form" }, { "githubUrl": "https://github.com/Lemonadd-UG/react-native-apple-music", @@ -85633,7 +85069,6 @@ "isPrivate": false, "description": "A react native module for the Apple Music SDK. Works only with iOS.", "topics": [ - "react-native", "ios", "apple-music", "apple-music-api", @@ -85650,12 +85085,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 99, - "weekDownloads": 25, + "downloads": 163, + "weekDownloads": 38, "size": 2390368, "latestRelease": "1.0.3", "latestReleaseDate": "2020-03-25T13:41:20.987Z" @@ -85665,8 +85101,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.533, - "topicSearchString": "react-native ios apple-music apple-music-api music apple" + "popularity": -1.55, + "topicSearchString": "ios apple-music apple-music-api music apple" }, { "githubUrl": "https://github.com/numandev1/react-native-keys", @@ -85675,6 +85111,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/numandev1/react-native-keys", @@ -85690,9 +85127,9 @@ "createdAt": "2021-03-09T09:27:12Z", "pushedAt": "2025-08-01T00:24:15Z", "forks": 30, - "issues": 20, + "issues": 19, "subscribers": 7, - "stars": 379, + "stars": 381, "dependencies": 5 }, "name": "react-native-keys", @@ -85701,7 +85138,6 @@ "registry": "https://registry.npmjs.org/", "description": "🔐 Protected .ENVs variables in React Native 🚀✨", "topics": [ - "react-native", "ios", "android", "config", @@ -85731,23 +85167,23 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-keys", "npm": { - "downloads": 14362, - "weekDownloads": 2276, + "downloads": 15371, + "weekDownloads": 4026, "size": 45454803, "latestRelease": "0.7.13", "latestReleaseDate": "2025-09-07T15:48:03.636Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.135, - "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" + "popularity": 0.223, + "topicSearchString": "ios android config environment environment-variables secure env jsi jni keys jni-android jni-ios dotenv config-var 12factor protected undecryptable envs" }, { "githubUrl": "https://github.com/Sharcoux/slider", @@ -85778,10 +85214,10 @@ "updatedAt": "2025-08-27T22:36:41Z", "createdAt": "2020-05-06T14:14:41Z", "pushedAt": "2025-08-27T22:36:41Z", - "forks": 32, + "forks": 33, "issues": 1, "subscribers": 1, - "stars": 183, + "stars": 186, "dependencies": 0 }, "name": "@react-native-assets/slider", @@ -85789,9 +85225,6 @@ "isPrivate": false, "description": "React-Native and React-Native-Web compatible slider", "topics": [ - "react-native", - "react", - "native", "web", "slider", "range" @@ -85806,23 +85239,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 68083, - "weekDownloads": 12865, + "downloads": 75261, + "weekDownloads": 16200, "size": 103674, "latestRelease": "11.0.11", "latestReleaseDate": "2025-08-27T22:34:39.778Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.161, - "topicSearchString": "react-native react native web slider range" + "popularity": 0.183, + "topicSearchString": "web slider range" }, { "githubUrl": "https://github.com/lingui/js-lingui/tree/main/packages/react", @@ -85845,13 +85277,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T08:44:01Z", + "updatedAt": "2025-10-10T09:08:19Z", "createdAt": "2017-01-17T17:26:46Z", - "pushedAt": "2025-09-12T08:44:01Z", - "forks": 414, - "issues": 35, + "pushedAt": "2025-10-10T09:08:19Z", + "forks": 416, + "issues": 40, "subscribers": 32, - "stars": 5366, + "stars": 5427, "dependencies": 2 }, "name": "@lingui/react", @@ -85859,10 +85291,8 @@ "isPrivate": false, "description": "React components for translations", "topics": [ - "react", "component", - "react-component", - "react-native", + "component", "i18n", "internationalization", "i9n", @@ -85883,14 +85313,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1256866, - "weekDownloads": 211986, - "size": 35602, - "latestRelease": "5.5.0", - "latestReleaseDate": "2025-09-12T09:17:50.031Z" + "downloads": 1291116, + "weekDownloads": 305724, + "size": 36126, + "latestRelease": "5.5.1", + "latestReleaseDate": "2025-10-10T09:43:52.512Z" }, "score": 97, "matchingScoreModifiers": [ @@ -85900,8 +85331,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.143, - "topicSearchString": "react component react-component react-native i18n internationalization i9n translation icu messageformat multilingual localization l10n" + "popularity": 0.201, + "topicSearchString": "component component i18n internationalization i9n translation icu messageformat multilingual localization l10n" }, { "githubUrl": "https://github.com/pcamarajr/react-native-ultimate-icons", @@ -85937,7 +85368,6 @@ "registry": "https://registry.npmjs.org/", "description": "🤙 The only React Native icon library you would need", "topics": [ - "react-native", "ios", "android", "svg-icons", @@ -85953,13 +85383,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-ultimate-icons", "npm": { - "downloads": 0, - "weekDownloads": 0, + "downloads": 4, + "weekDownloads": 1, "size": 24333, "latestRelease": "0.2.0", "latestReleaseDate": "2023-07-15T11:36:55.862Z" @@ -85970,7 +85401,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android svg-icons typescript" + "topicSearchString": "ios android svg-icons typescript" }, { "githubUrl": "https://github.com/jakex7/react-native-click-outside", @@ -85998,7 +85429,7 @@ "forks": 6, "issues": 5, "subscribers": 2, - "stars": 71, + "stars": 72, "dependencies": 0 }, "name": "react-native-click-outside", @@ -86007,7 +85438,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native library to detect clicks outside the component 👆", "topics": [ - "react-native", "ios", "android", "click-outside", @@ -86024,12 +85454,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-click-outside", "npm": { - "downloads": 21215, - "weekDownloads": 3749, + "downloads": 24714, + "weekDownloads": 5276, "size": 39515, "latestRelease": "0.1.1", "latestReleaseDate": "2023-07-21T20:00:49.916Z" @@ -86039,8 +85471,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.15, - "topicSearchString": "react-native ios android click-outside open-source hacktoberfest" + "popularity": -0.569, + "topicSearchString": "ios android click-outside open-source hacktoberfest" }, { "githubUrl": "https://github.com/jakex7/react-native-localization-settings", @@ -86049,6 +85481,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/jakex7/react-native-localization-settings", @@ -86066,7 +85499,7 @@ "forks": 11, "issues": 5, "subscribers": 1, - "stars": 107, + "stars": 108, "dependencies": 0 }, "name": "react-native-localization-settings", @@ -86075,12 +85508,10 @@ "registry": "https://registry.npmjs.org/", "description": "React Native module to expose per-app language preferences API on iOS and Android.", "topics": [ - "react-native", "ios", "android", "i18n", "i18next", - "i18n-react", "l10n", "language", "per-app", @@ -86096,23 +85527,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-localization-settings", "npm": { - "downloads": 65775, - "weekDownloads": 13035, + "downloads": 35678, + "weekDownloads": 7863, "size": 63171, "latestRelease": "1.2.0", "latestReleaseDate": "2024-11-12T17:47:50.621Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.168, - "topicSearchString": "react-native ios android i18n i18next i18n-react l10n language per-app hacktoberfest" + "popularity": 0.187, + "topicSearchString": "ios android i18n i18next l10n language per-app hacktoberfest" }, { "githubUrl": "https://github.com/rnw-community/rnw-community/tree/master/packages/react-native-payments", @@ -86149,8 +85581,6 @@ "isPrivate": false, "description": "Accept Payments with Apple Pay and Android Pay using the Payment Request API.", "topics": [ - "react", - "react-native", "apple-pay", "google-pay", "payment-request", @@ -86175,21 +85605,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 26577, - "weekDownloads": 4584, + "downloads": 33246, + "weekDownloads": 6408, "size": 475635, "latestRelease": "1.6.2", "latestReleaseDate": "2025-08-01T16:13:58.249Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": 0.147, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.164, + "topicSearchString": "apple-pay google-pay payment-request payments android ios android-pay apple-pay payment-intents cross-platform payments expo expo-plugin" }, { "githubUrl": "https://github.com/retyui/react-native-detect-maestro", @@ -86212,7 +85642,7 @@ "pushedAt": "2024-02-26T07:24:08Z", "forks": 1, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 13, "dependencies": 0 }, @@ -86221,8 +85651,6 @@ "isPrivate": false, "description": "Detect Maestro in your React Native App", "topics": [ - "react", - "react-native", "component", "android", "ios", @@ -86241,23 +85669,24 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-detect-maestro", "npm": { - "downloads": 339, - "weekDownloads": 48, + "downloads": 379, + "weekDownloads": 71, "size": 18277, "latestRelease": "1.0.7", "latestReleaseDate": "2023-11-14T22:27:25.844Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.878, - "topicSearchString": "react react-native component android ios maestro e2e is-e2e is-maestro" + "popularity": -0.84, + "topicSearchString": "component android ios maestro e2e is-e2e is-maestro" }, { "githubUrl": "https://github.com/retyui/react-native-widget-picker", @@ -86273,13 +85702,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-01T07:45:36Z", + "updatedAt": "2025-10-21T09:11:12Z", "createdAt": "2023-07-31T22:03:20Z", - "pushedAt": "2025-08-01T07:45:36Z", + "pushedAt": "2025-10-21T09:11:12Z", "forks": 0, "issues": 0, - "subscribers": 2, - "stars": 18, + "subscribers": 1, + "stars": 21, "dependencies": 0 }, "name": "react-native-widget-picker", @@ -86287,8 +85716,6 @@ "isPrivate": false, "description": "Request to pin an app widget on the current launcher", "topics": [ - "react", - "react-native", "component", "android", "android-widget", @@ -86297,31 +85724,33 @@ "home-screen-widget" ], "license": { - "key": "mit", "name": "MIT License", - "spdxId": "MIT", "url": "http://choosealicense.com/licenses/mit/", - "id": "MDc6TGljZW5zZTEz" + "id": "MDc6TGljZW5zZTEz", + "key": "mit", + "spdxId": "MIT" }, "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-widget-picker", "npm": { - "downloads": 1340, - "weekDownloads": 331, - "size": 20301, - "latestRelease": "1.1.0", - "latestReleaseDate": "2025-08-01T09:31:00.302Z" + "downloads": 1570, + "weekDownloads": 340, + "size": 19227, + "latestRelease": "1.1.1", + "latestReleaseDate": "2025-10-21T09:13:36.644Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.04, - "topicSearchString": "react react-native component android android-widget widget home-screen home-screen-widget" + "popularity": -0.066, + "topicSearchString": "component android android-widget widget home-screen home-screen-widget" }, { "githubUrl": "https://github.com/kesha-antonov/react-native-zoom-reanimated", @@ -86348,8 +85777,8 @@ "pushedAt": "2025-08-29T08:24:41Z", "forks": 21, "issues": 5, - "subscribers": 4, - "stars": 242, + "subscribers": 3, + "stars": 248, "dependencies": 0 }, "name": "react-native-zoom-reanimated", @@ -86358,7 +85787,6 @@ "description": "Zoom component on react-native + react-native-reanimated + react-native-gesture-handler", "topics": [ "zoom", - "react-native", "reanimated", "gesture-handler" ], @@ -86372,24 +85800,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-zoom-reanimated", "npm": { - "downloads": 16147, - "weekDownloads": 3072, + "downloads": 24105, + "weekDownloads": 4248, "size": 26705, "latestRelease": "1.4.10", "latestReleaseDate": "2025-08-13T08:48:47.191Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.162, - "topicSearchString": "zoom react-native reanimated gesture-handler" + "popularity": 0.15, + "topicSearchString": "zoom reanimated gesture-handler" }, { "githubUrl": "https://github.com/Mhp23/react-native-fast-base", @@ -86430,10 +85857,7 @@ "android", "ios", "web", - "react-native", "reactjs", - "native", - "react", "ui-library", "responsive-ui", "bootstrap", @@ -86453,11 +85877,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 60, - "weekDownloads": 5, + "downloads": 254, + "weekDownloads": 18, "size": 499557, "latestRelease": "2.1.0", "latestReleaseDate": "2023-11-10T17:25:29.232Z" @@ -86467,8 +85892,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.929, - "topicSearchString": "android ios web react-native reactjs native react ui-library responsive-ui bootstrap dark-mode mergerefs ui kit component" + "popularity": -0.939, + "topicSearchString": "android ios web reactjs ui-library responsive-ui bootstrap dark-mode mergerefs ui kit component" }, { "githubUrl": "https://github.com/situmtech/react-native/tree/master/plugin", @@ -86477,7 +85902,7 @@ "https://github.com/situmtech/react-native/tree/master/example" ], "images": [ - "https://github.com/situmtech/react-native/blob/master/docs/assets/preview.png" + "https://raw.githubusercontent.com/situmtech/react-native/master/plugin/docs/assets/preview.png" ], "ios": true, "android": true, @@ -86492,13 +85917,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-09T10:45:30Z", + "updatedAt": "2025-10-14T16:41:14Z", "createdAt": "2020-05-19T12:55:18Z", - "pushedAt": "2025-09-09T10:45:30Z", + "pushedAt": "2025-10-14T16:41:14Z", "forks": 6, "issues": 0, "subscribers": 5, - "stars": 37, + "stars": 39, "dependencies": 0 }, "name": "@situm/react-native", @@ -86507,7 +85932,6 @@ "registry": "https://registry.npmjs.org/", "description": "Situm Wayfinding for React Native. Integrate plug&play navigation experience with indoor maps, routes and turn-by-turn directions in no time. With the power of Situm.", "topics": [ - "react-native", "situm", "indoor-positioning", "indoor-maps", @@ -86525,22 +85949,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 1655, - "weekDownloads": 260, - "size": 844129, - "latestRelease": "3.15.17", - "latestReleaseDate": "2025-09-09T10:46:55.255Z" + "downloads": 2312, + "weekDownloads": 362, + "size": 862741, + "latestRelease": "3.16.0", + "latestReleaseDate": "2025-10-15T07:56:06.477Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.134, - "topicSearchString": "react-native situm indoor-positioning indoor-maps wayfinding ios android" + "popularity": 0.133, + "topicSearchString": "situm indoor-positioning indoor-maps wayfinding ios android" }, { "githubUrl": "https://github.com/ory/kratos-selfservice-ui-react-native", @@ -86567,13 +85992,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-08T14:22:12Z", + "updatedAt": "2025-10-01T10:21:00Z", "createdAt": "2020-08-03T09:32:56Z", - "pushedAt": "2025-09-08T14:22:12Z", - "forks": 31, + "pushedAt": "2025-10-01T10:21:00Z", + "forks": 32, "issues": 2, - "subscribers": 11, - "stars": 100, + "subscribers": 10, + "stars": 101, "dependencies": 40 }, "name": "@ory/expo-login-registration-template", @@ -86586,8 +86011,7 @@ "login", "authentication", "auth", - "ory", - "react-native" + "ory" ], "license": { "key": "apache-2.0", @@ -86599,7 +86023,8 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "kratos-selfservice-ui-react-native", "npm": {}, @@ -86609,7 +86034,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "ory-kratos registration login authentication auth ory react-native" + "topicSearchString": "ory-kratos registration login authentication auth ory" }, { "githubUrl": "https://github.com/mrpmohiburrahman/react-native-cone-slider", @@ -86646,7 +86071,6 @@ "registry": "https://registry.npmjs.org/", "description": "Cone shape slider in react-native", "topics": [ - "react-native", "ios", "android" ], @@ -86660,13 +86084,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-cone-slider", "npm": { - "downloads": 0, - "weekDownloads": 0, + "downloads": 25, + "weekDownloads": 2, "size": 30067, "latestRelease": "0.2.0", "latestReleaseDate": "2023-08-16T15:30:22.040Z" @@ -86676,8 +86101,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native ios android" + "popularity": -1.67, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/Adarshshanbhag5/react-native-palette-picker", @@ -86715,9 +86140,7 @@ "registry": "https://registry.npmjs.org/", "description": "Android's Color Palette API implementation for React Native Apps", "topics": [ - "react-native", "android", - "react", "palette", "image-colors", "dominant", @@ -86735,24 +86158,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "unmaintained": true, "npmPkg": "react-native-palette-picker", "npm": { - "downloads": 120, - "weekDownloads": 13, + "downloads": 39, + "weekDownloads": 14, "size": 42415, "latestRelease": "0.2.1", "latestReleaseDate": "2023-08-19T09:04:25.836Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1.657, - "topicSearchString": "react-native android react palette image-colors dominant image color palette-api" + "popularity": -1.439, + "topicSearchString": "android palette image-colors dominant image color palette-api" }, { "githubUrl": "https://github.com/MetaLabs-inc/react-native-vimeo-iframe", @@ -86789,7 +86213,6 @@ "topics": [ "android", "ios", - "react-native", "component-library", "vimeo", "videos", @@ -86808,12 +86231,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-vimeo-iframe", "npm": { - "downloads": 24924, - "weekDownloads": 4078, + "downloads": 29966, + "weekDownloads": 6832, "size": 41476, "latestRelease": "1.2.1", "latestReleaseDate": "2023-01-02T20:12:10.641Z" @@ -86823,8 +86247,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.139, - "topicSearchString": "android ios react-native component-library vimeo videos hacktoberfest video-player javascript video" + "popularity": 0.194, + "topicSearchString": "android ios component-library vimeo videos hacktoberfest video-player javascript video" }, { "githubUrl": "https://github.com/MetaLabs-inc/react-native-components-tracking", @@ -86859,7 +86283,6 @@ "isPrivate": false, "description": "React Native library to automatically track events on several componentes", "topics": [ - "react-native", "ios", "android" ], @@ -86873,13 +86296,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-components-tracking", "npm": { - "downloads": 69, - "weekDownloads": 29, + "downloads": 61, + "weekDownloads": 7, "size": 63148, "latestRelease": "1.1.2", "latestReleaseDate": "2023-03-25T17:33:46.735Z" @@ -86889,8 +86313,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.387, - "topicSearchString": "react-native ios android" + "popularity": -1.65, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/mrpmohiburrahman/react-native-squish-button", @@ -86927,7 +86351,6 @@ "registry": "https://registry.npmjs.org/", "description": "Button with elastic border", "topics": [ - "react-native", "ios", "android" ], @@ -86941,13 +86364,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-squish-button", "npm": { - "downloads": 42, - "weekDownloads": 9, + "downloads": 12, + "weekDownloads": 1, "size": 27945, "latestRelease": "0.3.0", "latestReleaseDate": "2023-08-24T07:08:27.679Z" @@ -86957,8 +86381,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, - "topicSearchString": "react-native ios android" + "popularity": -1.65, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/troberts-28/react-native-timer-picker", @@ -86987,13 +86411,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-05-19T13:44:03Z", + "updatedAt": "2025-10-19T15:18:02Z", "createdAt": "2023-08-10T10:55:24Z", - "pushedAt": "2025-05-19T13:44:03Z", + "pushedAt": "2025-10-19T15:18:02Z", "forks": 22, "issues": 1, "subscribers": 1, - "stars": 193, + "stars": 203, "dependencies": 0 }, "name": "react-native-timer-picker", @@ -87002,8 +86426,6 @@ "registry": "https://registry.npmjs.org/", "description": "A simple, flexible, performant duration picker for React Native apps (Expo & Bare Workflow). Great for timers, alarms and duration inputs. Includes iOS-style haptic and audio feedback.", "topics": [ - "react", - "react-native", "expo", "duration", "picker", @@ -87039,23 +86461,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-timer-picker", "npm": { - "downloads": 19775, - "weekDownloads": 3168, - "size": 771411, - "latestRelease": "2.2.0", - "latestReleaseDate": "2025-05-19T13:44:40.010Z" + "downloads": 23053, + "weekDownloads": 4691, + "size": 1266770, + "latestRelease": "2.2.3", + "latestReleaseDate": "2025-10-19T15:22:27.949Z" }, - "score": 51, + "score": 57, "matchingScoreModifiers": [ "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.136, - "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" + "popularity": 0.173, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/Malaa-tech/react-native-simple-keypad", @@ -87081,7 +86505,7 @@ "forks": 2, "issues": 0, "subscribers": 1, - "stars": 25, + "stars": 27, "dependencies": 0 }, "name": "react-native-simple-keypad", @@ -87090,7 +86514,6 @@ "registry": "https://registry.npmjs.org/", "description": "A simple, easy to use, and beautiful keypad component for react native ⌨️", "topics": [ - "react-native", "ios", "android" ], @@ -87104,23 +86527,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-simple-keypad", "npm": { - "downloads": 1152, - "weekDownloads": 129, + "downloads": 508, + "weekDownloads": 135, "size": 77129, "latestRelease": "0.5.2", "latestReleaseDate": "2025-09-07T18:53:14.298Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.095, - "topicSearchString": "react-native ios android" + "popularity": -0.523, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/chsdwn/react-native-responsive-scalability", @@ -87159,7 +86582,6 @@ "registry": "https://registry.npmjs.org/", "description": "The package provides utility hooks that help React Native developers create responsive, cross-platform applications that are aware of orientation changes. ", "topics": [ - "react-native", "ios", "android", "package", @@ -87176,13 +86598,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-responsive-scalability", "npm": { - "downloads": 13, - "weekDownloads": 3, + "downloads": 26, + "weekDownloads": 1, "size": 68546, "latestRelease": "1.2.0", "latestReleaseDate": "2023-09-09T14:58:29.863Z" @@ -87192,8 +86615,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.55, - "topicSearchString": "react-native ios android package responsive expo" + "popularity": -1.717, + "topicSearchString": "ios android package responsive expo" }, { "githubUrl": "https://github.com/Alwinator/react-native-http-bridge-refurbished", @@ -87213,10 +86636,10 @@ "updatedAt": "2023-12-01T14:48:39Z", "createdAt": "2023-01-28T16:37:02Z", "pushedAt": "2023-12-01T14:48:39Z", - "forks": 24, + "forks": 25, "issues": 6, - "subscribers": 3, - "stars": 70, + "subscribers": 2, + "stars": 72, "dependencies": 1 }, "name": "react-native-http-bridge-refurbished", @@ -87224,8 +86647,7 @@ "isPrivate": false, "description": "A simple HTTP server for React Native based on react-native-http-bridge.", "topics": [ - "react-component", - "react-native", + "component", "nanohttpd", "gcdhttpserver", "http", @@ -87246,12 +86668,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-http-bridge-refurbished", "npm": { - "downloads": 1494, - "weekDownloads": 246, + "downloads": 1565, + "weekDownloads": 327, "size": 69452, "latestRelease": "1.2.9", "latestReleaseDate": "2023-09-22T14:55:05.401Z" @@ -87261,8 +86684,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.14, - "topicSearchString": "react-component react-native nanohttpd gcdhttpserver http server bridge webserver http-server rest-api typescript" + "popularity": 0.178, + "topicSearchString": "component nanohttpd gcdhttpserver http server bridge webserver http-server rest-api typescript" }, { "githubUrl": "https://github.com/Malaa-tech/react-native-simple-bcrypt", @@ -87297,9 +86720,7 @@ "registry": "https://registry.npmjs.org/", "description": "Simple/Fast/Native Bcrypt bindings for react native #️⃣", "topics": [ - "react-native", "bcrypt", - "native", "hash", "ios", "android" @@ -87314,13 +86735,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-simple-bcrypt", "npm": { - "downloads": 85, - "weekDownloads": 5, + "downloads": 55, + "weekDownloads": 25, "size": 47929, "latestRelease": "0.3.0", "latestReleaseDate": "2023-08-31T20:28:53.716Z" @@ -87330,8 +86752,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.7, - "topicSearchString": "react-native bcrypt native hash ios android" + "popularity": -1.333, + "topicSearchString": "bcrypt hash ios android" }, { "githubUrl": "https://github.com/animate-react-native/stagger", @@ -87363,7 +86785,7 @@ "forks": 8, "issues": 0, "subscribers": 3, - "stars": 184, + "stars": 187, "dependencies": 0 }, "name": "@animatereactnative/stagger", @@ -87372,7 +86794,6 @@ "registry": "https://registry.npmjs.org/", "description": "A cross-platform React Native Stagger component, powered by Reanimated", "topics": [ - "react-native", "ios", "android", "stagger", @@ -87395,11 +86816,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8292, - "weekDownloads": 1098, + "downloads": 8258, + "weekDownloads": 1856, "size": 30875, "latestRelease": "0.3.0", "latestReleaseDate": "2024-02-12T09:46:16.358Z" @@ -87409,8 +86831,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.113, - "topicSearchString": "react-native ios android stagger exit-animation enter-animation animation stagger-view reanimated2 reanimated3 layout-animation stagger-animation" + "popularity": 0.191, + "topicSearchString": "ios android stagger exit-animation enter-animation animation stagger-view reanimated2 reanimated3 layout-animation stagger-animation" }, { "githubUrl": "https://github.com/animate-react-native/marquee", @@ -87437,9 +86859,9 @@ "createdAt": "2023-08-25T20:40:34Z", "pushedAt": "2025-02-11T13:45:02Z", "forks": 24, - "issues": 9, + "issues": 10, "subscribers": 5, - "stars": 324, + "stars": 334, "dependencies": 0 }, "name": "@animatereactnative/marquee", @@ -87448,7 +86870,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native Marquee component.", "topics": [ - "react-native", "ios", "android", "marquee", @@ -87473,11 +86894,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 56379, - "weekDownloads": 9751, + "downloads": 52628, + "weekDownloads": 12504, "size": 42746, "latestRelease": "0.5.2", "latestReleaseDate": "2025-02-11T13:09:25.360Z" @@ -87488,8 +86910,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.147, - "topicSearchString": "react-native ios android marquee carousel slider ticker horizontal-scrolling-carousels infinite-ticker expo news-ticker typescript reanimated reanimated3" + "popularity": 0.202, + "topicSearchString": "ios android marquee carousel slider ticker horizontal-scrolling-carousels infinite-ticker expo news-ticker typescript reanimated reanimated3" }, { "githubUrl": "https://github.com/AlirezaHadjar/expo-drag-drop-content-view/tree/main/packages/expo-drag-drop-content-view", @@ -87523,7 +86945,7 @@ "forks": 4, "issues": 0, "subscribers": 5, - "stars": 389, + "stars": 397, "dependencies": 0 }, "name": "expo-drag-drop-content-view", @@ -87531,7 +86953,6 @@ "isPrivate": false, "description": "A Superset of View which listens for dragged contents", "topics": [ - "react-native", "expo", "expo-drag-drop-content-view", "expodragdropcontentview" @@ -87546,23 +86967,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-drag-drop-content-view", "npm": { - "downloads": 12244, - "weekDownloads": 1886, + "downloads": 13690, + "weekDownloads": 4267, "size": 139828, "latestRelease": "0.9.0", "latestReleaseDate": "2025-06-29T16:51:37.012Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.131, - "topicSearchString": "react-native expo expo-drag-drop-content-view expodragdropcontentview" + "popularity": 0.265, + "topicSearchString": "expo expo-drag-drop-content-view expodragdropcontentview" }, { "githubUrl": "https://github.com/Jm-Zion/rn-wave-bottom-bar", @@ -87590,7 +87012,7 @@ "pushedAt": "2023-05-11T02:38:09Z", "forks": 26, "issues": 5, - "subscribers": 3, + "subscribers": 2, "stars": 335, "dependencies": 1 }, @@ -87600,8 +87022,7 @@ "registry": "https://registry.npmjs.org/", "description": "🌊 Animated Tab Bottom Bar for react-navigation", "topics": [ - "react-native", - "react-navigation", + "navigation", "bottom-bar", "tab-bar", "animation", @@ -87619,13 +87040,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "rn-wave-bottom-bar", "npm": { - "downloads": 642, - "weekDownloads": 80, + "downloads": 927, + "weekDownloads": 166, "size": 214359, "latestRelease": "2.2.36", "latestReleaseDate": "2023-04-17T18:12:22.056Z" @@ -87636,8 +87058,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.394, - "topicSearchString": "react-native react-navigation bottom-bar tab-bar animation bottom-tabs curved wave" + "popularity": -1.348, + "topicSearchString": "navigation bottom-bar tab-bar animation bottom-tabs curved wave" }, { "githubUrl": "https://github.com/maplibre/maplibre-react-native", @@ -87654,6 +87076,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", @@ -87665,13 +87088,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:24:37Z", + "updatedAt": "2025-09-24T06:20:17Z", "createdAt": "2022-11-03T10:37:07Z", - "pushedAt": "2025-09-11T20:24:37Z", - "forks": 84, - "issues": 54, - "subscribers": 10, - "stars": 418, + "pushedAt": "2025-09-24T06:20:17Z", + "forks": 88, + "issues": 61, + "subscribers": 9, + "stars": 433, "dependencies": 5 }, "name": "@maplibre/maplibre-react-native", @@ -87683,9 +87106,7 @@ "ios", "android", "maplibre", - "react-native", - "mapbox", - "react" + "mapbox" ], "license": { "key": "mit", @@ -87697,23 +87118,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 32667, - "weekDownloads": 5001, + "downloads": 36491, + "weekDownloads": 7792, "size": 1963845, "latestRelease": "10.2.1", "latestReleaseDate": "2025-08-15T17:35:43.511Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.13, - "topicSearchString": "maps ios android maplibre react-native mapbox react" + "popularity": 0.182, + "topicSearchString": "maps ios android maplibre mapbox" }, { "githubUrl": "https://github.com/3DJakob/react-tinder-card", @@ -87744,10 +87166,10 @@ "updatedAt": "2023-11-07T07:42:30Z", "createdAt": "2019-12-04T17:02:24Z", "pushedAt": "2023-11-07T07:42:30Z", - "forks": 113, + "forks": 114, "issues": 29, "subscribers": 8, - "stars": 390, + "stars": 395, "dependencies": 1 }, "name": "react-tinder-card", @@ -87757,12 +87179,9 @@ "topics": [ "tinder", "card", - "react-native", - "native", "ios", "android", "web", - "react", "swipeable", "swipe", "physics", @@ -87782,12 +87201,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-tinder-card", "npm": { - "downloads": 28606, - "weekDownloads": 5139, + "downloads": 29354, + "weekDownloads": 5468, "size": 30606, "latestRelease": "1.6.4", "latestReleaseDate": "2023-11-07T07:43:18.210Z" @@ -87798,8 +87218,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.153, - "topicSearchString": "tinder card react-native native ios android web react swipeable swipe physics deck drag draggable swipeable-elements hacktoberfest" + "popularity": 0.158, + "topicSearchString": "tinder card ios android web swipeable swipe physics deck drag draggable swipeable-elements hacktoberfest" }, { "githubUrl": "https://github.com/stackbuilders/react-native-spotlight-tour/tree/main/package", @@ -87828,10 +87248,10 @@ "updatedAt": "2025-06-23T21:57:07Z", "createdAt": "2020-08-06T16:06:02Z", "pushedAt": "2025-06-23T21:57:07Z", - "forks": 36, - "issues": 20, - "subscribers": 21, - "stars": 439, + "forks": 37, + "issues": 21, + "subscribers": 20, + "stars": 455, "dependencies": 3 }, "name": "react-native-spotlight-tour", @@ -87843,7 +87263,6 @@ "android", "customizable", "ios", - "react-native", "step-by-step", "spotlight", "spotlight-tour", @@ -87860,11 +87279,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 6465, - "weekDownloads": 1085, + "downloads": 7595, + "weekDownloads": 1723, "size": 142400, "latestRelease": "4.0.0", "latestReleaseDate": "2025-06-23T22:01:05.813Z" @@ -87874,8 +87294,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.143, - "topicSearchString": "app-tour android customizable ios react-native step-by-step spotlight spotlight-tour tour user-guide" + "popularity": 0.193, + "topicSearchString": "app-tour android customizable ios step-by-step spotlight spotlight-tour tour user-guide" }, { "githubUrl": "https://github.com/AstrOOnauta/react-native-international-phone-number", @@ -87900,28 +87320,27 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-13T11:21:53Z", + "updatedAt": "2025-10-01T10:00:47Z", "createdAt": "2022-11-22T11:55:26Z", - "pushedAt": "2025-08-13T11:21:53Z", - "forks": 67, + "pushedAt": "2025-10-01T10:00:47Z", + "forks": 69, "issues": 2, - "subscribers": 5, - "stars": 344, + "subscribers": 4, + "stars": 353, "dependencies": 2 }, "name": "react-native-international-phone-number", "fullName": "AstrOOnauta/react-native-international-phone-number", "isPrivate": false, - "description": "⚛️ International mobile phone number input component for React Native 📱", + "description": "⚛️ React Native phone number input component 📱", "topics": [ "mobile", "ios", "android", - "react-native", "expo", "components", "typescript", - "react-hook-form", + "hook-form", "mask-input", "phone-input", "international-number-phone", @@ -87946,23 +87365,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-international-phone-number", "npm": { - "downloads": 69847, - "weekDownloads": 11662, - "size": 109764, - "latestRelease": "0.10.5", - "latestReleaseDate": "2025-08-14T10:07:10.108Z" + "downloads": 62589, + "weekDownloads": 15091, + "size": 108953, + "latestRelease": "0.11.0", + "latestReleaseDate": "2025-10-01T10:19:21.858Z" }, - "score": 51, + "score": 57, "matchingScoreModifiers": [ "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.142, - "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" + "popularity": 0.205, + "topicSearchString": "mobile ios android expo components typescript hook-form mask-input phone-input international-number-phone picker country-picker country flag custom-lib codes search animated input flags" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-image", @@ -87986,23 +87407,21 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": true, - "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "hasTopics": false, + "updatedAt": "2025-10-21T09:31:51Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-21T09:31:51Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-image", "fullName": "expo/expo", "isPrivate": false, "description": "A cross-platform, performant image component for React Native and Expo with Web support", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -88013,27 +87432,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-image", "npm": { - "downloads": 3006111, - "weekDownloads": 552141, - "size": 837150, - "latestRelease": "3.0.8", - "latestReleaseDate": "2025-09-11T20:25:03.676Z" + "downloads": 3247181, + "weekDownloads": 704520, + "size": 839691, + "latestRelease": "3.0.10", + "latestReleaseDate": "2025-10-20T23:27:24.202Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.156, - "topicSearchString": "react-native" + "popularity": 0.184, + "topicSearchString": "" }, { "githubUrl": "https://github.com/ekreative/react-native-braintree", @@ -88059,7 +87479,7 @@ "pushedAt": "2024-09-17T07:46:35Z", "forks": 23, "issues": 4, - "subscribers": 5, + "subscribers": 4, "stars": 44, "dependencies": 0 }, @@ -88068,7 +87488,6 @@ "isPrivate": false, "description": "A react native interface for integrating payments using Braintree", "topics": [ - "react-native", "android", "braintree", "hacktoberfest", @@ -88084,12 +87503,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 341, - "weekDownloads": 39, + "downloads": 827, + "weekDownloads": 119, "size": 387379, "latestRelease": "2.6.1", "latestReleaseDate": "2024-08-16T11:52:33.020Z" @@ -88099,8 +87519,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.402, - "topicSearchString": "react-native android braintree hacktoberfest ios" + "popularity": -1.377, + "topicSearchString": "android braintree hacktoberfest ios" }, { "githubUrl": "https://github.com/okwasniewski/react-native-menubar-extra", @@ -88127,8 +87547,8 @@ "pushedAt": "2023-11-04T16:26:14Z", "forks": 1, "issues": 2, - "subscribers": 4, - "stars": 283, + "subscribers": 3, + "stars": 285, "dependencies": 0 }, "name": "react-native-menubar-extra", @@ -88137,7 +87557,6 @@ "registry": "https://registry.npmjs.org/", "description": "Add MenuBar to your React Native MacOS Application ", "topics": [ - "react-native", "macos", "library", "menubar", @@ -88154,24 +87573,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-menubar-extra", "npm": { - "downloads": 16, - "weekDownloads": 2, + "downloads": 37, + "weekDownloads": 4, "size": 61232, "latestRelease": "0.3.1", "latestReleaseDate": "2023-11-04T16:26:08.826Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.617, - "topicSearchString": "react-native macos library menubar menubar-app hacktoberfest" + "popularity": -0.65, + "topicSearchString": "macos library menubar menubar-app hacktoberfest" }, { "npmPkg": "@react-native-ml-kit/text-recognition", @@ -88188,23 +87608,21 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2025-09-06T17:24:50Z", "createdAt": "2021-10-16T15:20:52Z", "pushedAt": "2025-09-06T17:24:50Z", - "forks": 78, - "issues": 12, - "subscribers": 10, - "stars": 515, + "forks": 79, + "issues": 13, + "subscribers": 11, + "stars": 527, "dependencies": 0 }, "name": "@react-native-ml-kit/text-recognition", "fullName": "a7medev/react-native-ml-kit", "isPrivate": false, "description": "React Native On-Device Text Recognition w/ Google ML Kit", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -88215,23 +87633,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 14357, - "weekDownloads": 2407, + "downloads": 21273, + "weekDownloads": 3751, "size": 32527, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-01T22:08:45.303Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.143, - "topicSearchString": "react-native" + "popularity": 0.15, + "topicSearchString": "" }, { "npmPkg": "@react-native-ml-kit/face-detection", @@ -88248,23 +87666,21 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2025-09-01T22:35:23Z", "createdAt": "2021-10-16T15:20:52Z", "pushedAt": "2025-09-01T22:35:23Z", - "forks": 78, - "issues": 12, - "subscribers": 10, - "stars": 515, + "forks": 79, + "issues": 13, + "subscribers": 11, + "stars": 527, "dependencies": 0 }, "name": "@react-native-ml-kit/face-detection", "fullName": "a7medev/react-native-ml-kit", "isPrivate": false, "description": "React Native On-Device Face Detection w/ Google ML Kit", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -88275,23 +87691,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 6153, - "weekDownloads": 927, + "downloads": 5606, + "weekDownloads": 1442, "size": 42493, "latestRelease": "2.0.1", "latestReleaseDate": "2025-09-01T22:34:38.556Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.128, - "topicSearchString": "react-native" + "popularity": 0.219, + "topicSearchString": "" }, { "npmPkg": "@react-native-ml-kit/image-labeling", @@ -88308,23 +87724,21 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2025-09-01T22:12:30Z", "createdAt": "2021-10-16T15:20:52Z", "pushedAt": "2025-09-01T22:12:30Z", - "forks": 78, - "issues": 12, - "subscribers": 10, - "stars": 515, + "forks": 79, + "issues": 13, + "subscribers": 11, + "stars": 527, "dependencies": 0 }, "name": "@react-native-ml-kit/image-labeling", "fullName": "a7medev/react-native-ml-kit", "isPrivate": false, "description": "React Native On-Device Image Labeling w/ Google ML Kit", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -88335,23 +87749,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 613, - "weekDownloads": 63, + "downloads": 520, + "weekDownloads": 116, "size": 22870, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-01T22:09:46.327Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.662, - "topicSearchString": "react-native" + "popularity": -0.56, + "topicSearchString": "" }, { "npmPkg": "@react-native-ml-kit/barcode-scanning", @@ -88368,23 +87782,21 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2025-09-06T12:35:46Z", "createdAt": "2021-10-16T15:20:52Z", "pushedAt": "2025-09-06T12:35:46Z", - "forks": 78, - "issues": 12, - "subscribers": 10, - "stars": 515, + "forks": 79, + "issues": 13, + "subscribers": 11, + "stars": 527, "dependencies": 0 }, "name": "@react-native-ml-kit/barcode-scanning", "fullName": "a7medev/react-native-ml-kit", "isPrivate": false, "description": "React Native On-Device Barcode Scanning w/ Google ML Kit", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -88395,23 +87807,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 8482, - "weekDownloads": 1033, + "downloads": 7195, + "weekDownloads": 1483, "size": 48399, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-01T22:09:27.943Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.104, - "topicSearchString": "react-native" + "popularity": 0.175, + "topicSearchString": "" }, { "npmPkg": "@react-native-ml-kit/identify-languages", @@ -88428,23 +87840,21 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2025-09-01T22:12:30Z", "createdAt": "2021-10-16T15:20:52Z", "pushedAt": "2025-09-01T22:12:30Z", - "forks": 78, - "issues": 12, - "subscribers": 10, - "stars": 515, + "forks": 79, + "issues": 13, + "subscribers": 11, + "stars": 527, "dependencies": 0 }, "name": "@react-native-ml-kit/identify-languages", "fullName": "a7medev/react-native-ml-kit", "isPrivate": false, "description": "React Native On-Device Language Identification w/ Google ML Kit", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -88455,23 +87865,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2212, - "weekDownloads": 481, + "downloads": 1232, + "weekDownloads": 372, "size": 22758, "latestRelease": "2.0.0", "latestReleaseDate": "2025-09-01T22:10:08.433Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.185, - "topicSearchString": "react-native" + "popularity": 0.257, + "topicSearchString": "" }, { "npmPkg": "@react-native-ml-kit/translate-text", @@ -88487,23 +87897,21 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, + "hasTopics": false, "updatedAt": "2025-09-01T22:12:30Z", "createdAt": "2021-10-16T15:20:52Z", "pushedAt": "2025-09-01T22:12:30Z", - "forks": 78, - "issues": 12, - "subscribers": 10, - "stars": 515, + "forks": 79, + "issues": 13, + "subscribers": 11, + "stars": 527, "dependencies": 0 }, "name": "@react-native-ml-kit/translate-text", "fullName": "a7medev/react-native-ml-kit", "isPrivate": false, "description": "React Native On-Device Text Translation w/ Google ML Kit", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -88514,23 +87922,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 236, - "weekDownloads": 46, + "downloads": 165, + "weekDownloads": 38, "size": 23994, "latestRelease": "0.5.0", "latestReleaseDate": "2025-09-01T22:10:31.791Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.583, - "topicSearchString": "react-native" + "popularity": -0.55, + "topicSearchString": "" }, { "githubUrl": "https://github.com/High5Apps/react-native-vis-network", @@ -88559,8 +87967,8 @@ "pushedAt": "2024-03-10T10:35:45Z", "forks": 0, "issues": 0, - "subscribers": 2, - "stars": 3, + "subscribers": 1, + "stars": 4, "dependencies": 0 }, "name": "react-native-vis-network", @@ -88569,7 +87977,6 @@ "registry": "https://registry.npmjs.org/", "description": "Use vis-network in your React Native projects", "topics": [ - "react-native", "ios", "android" ], @@ -88583,12 +87990,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-vis-network", "npm": { - "downloads": 325, - "weekDownloads": 14, + "downloads": 300, + "weekDownloads": 12, "size": 2985762, "latestRelease": "2.0.0", "latestReleaseDate": "2024-03-10T10:35:42.889Z" @@ -88598,8 +88006,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.963, - "topicSearchString": "react-native ios android" + "popularity": -0.966, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/anday013/react-native-otp-entry", @@ -88628,10 +88036,10 @@ "updatedAt": "2025-06-20T19:54:40Z", "createdAt": "2023-06-12T07:40:06Z", "pushedAt": "2025-06-20T19:54:40Z", - "forks": 42, - "issues": 6, + "forks": 43, + "issues": 7, "subscribers": 2, - "stars": 385, + "stars": 396, "dependencies": 0 }, "name": "react-native-otp-entry", @@ -88639,7 +88047,6 @@ "isPrivate": false, "description": "Simple and fully modifiable OTP Input Component for React Native", "topics": [ - "react-native", "app", "component", "input", @@ -88652,7 +88059,6 @@ "anday", "anday013", "anday2000", - "react", "entry", "android", "confirmation-code" @@ -88667,23 +88073,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-otp-entry", "npm": { - "downloads": 289621, - "weekDownloads": 48989, + "downloads": 214584, + "weekDownloads": 47875, "size": 28641, "latestRelease": "1.8.5", "latestReleaseDate": "2025-06-20T19:54:17.347Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.144, - "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" + "popularity": 0.19, + "topicSearchString": "app component input otp otp-verify otp-input otp-entry otp-text-input rn anday anday013 anday2000 entry android confirmation-code" }, { "githubUrl": "https://github.com/baronha/ting", @@ -88712,8 +88118,8 @@ "pushedAt": "2024-11-10T17:00:51Z", "forks": 26, "issues": 17, - "subscribers": 4, - "stars": 358, + "subscribers": 3, + "stars": 361, "dependencies": 0 }, "name": "@baronha/ting", @@ -88722,10 +88128,9 @@ "registry": "https://registry.npmjs.org/", "description": "🍞 Flexible and customizable React Native toast/alert notifications with support for positioning, custom rendering, click handlers, and duration control. Written in Swift and Kotlin", "topics": [ - "react-native", "ios", "android", - "native-module", + "module", "new-architecture", "toast", "alert", @@ -88741,23 +88146,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2544, - "weekDownloads": 403, + "downloads": 1557, + "weekDownloads": 466, "size": 151748, "latestRelease": "1.2.3", "latestReleaseDate": "2024-11-10T17:04:04.638Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.135, - "topicSearchString": "react-native ios android native-module new-architecture toast alert toast-notifications" + "popularity": 0.255, + "topicSearchString": "ios android module new-architecture toast alert toast-notifications" }, { "githubUrl": "https://github.com/baronha/react-native-photo-editor", @@ -88784,10 +88189,10 @@ "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": 7, - "stars": 525, + "subscribers": 6, + "stars": 528, "dependencies": 0 }, "name": "@baronha/react-native-photo-editor", @@ -88796,7 +88201,6 @@ "registry": "https://registry.npmjs.org/", "description": "🌄 Photo editor using native modules for iOS and Android. Inherit from 2 available libraries, ZLImageEditor (iOS) and PhotoEditor (Android)", "topics": [ - "react-native", "ios", "android", "photo", @@ -88814,11 +88218,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 3778, - "weekDownloads": 405, + "downloads": 3044, + "weekDownloads": 621, "size": 3918263, "latestRelease": "1.1.6", "latestReleaseDate": "2023-01-02T15:24:54.818Z" @@ -88829,8 +88234,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.091, - "topicSearchString": "react-native ios android photo photoeditor imageeditor photoedit" + "popularity": 0.173, + "topicSearchString": "ios android photo photoeditor imageeditor photoedit" }, { "githubUrl": "https://github.com/chsdwn/react-native-skia-shadow", @@ -88870,7 +88275,6 @@ "registry": "https://registry.npmjs.org/", "description": "Android and iOS compatible shadows with React Native Skia.", "topics": [ - "react-native", "ios", "android", "expo", @@ -88888,12 +88292,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-skia-shadow", "npm": { - "downloads": 725, - "weekDownloads": 111, + "downloads": 131, + "weekDownloads": 9, "size": 41904, "latestRelease": "1.2.0", "latestReleaseDate": "2024-05-15T17:26:58.741Z" @@ -88903,8 +88308,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.619, - "topicSearchString": "react-native ios android expo shadow skia package" + "popularity": -0.69, + "topicSearchString": "ios android expo shadow skia package" }, { "githubUrl": "https://github.com/KroosX4V/react-native-orientation-manager", @@ -88940,7 +88345,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native module to retrieve interface/device orientation, listen to orientation changes, and lock screen to a specific orientation.", "topics": [ - "react-native", "ios", "android", "windows", @@ -88956,12 +88360,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-orientation-manager", "npm": { - "downloads": 1264, - "weekDownloads": 181, + "downloads": 898, + "weekDownloads": 175, "size": 243088, "latestRelease": "1.1.2", "latestReleaseDate": "2023-11-12T11:15:15.657Z" @@ -88971,8 +88376,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.128, - "topicSearchString": "react-native ios android windows orientation" + "popularity": -0.834, + "topicSearchString": "ios android windows orientation" }, { "githubUrl": "https://github.com/stanleyugwu/react-native-bottom-sheet", @@ -89006,9 +88411,9 @@ "createdAt": "2023-09-29T19:29:16Z", "pushedAt": "2024-10-30T08:12:07Z", "forks": 14, - "issues": 17, + "issues": 18, "subscribers": 6, - "stars": 357, + "stars": 358, "dependencies": 0 }, "name": "@devvie/bottom-sheet", @@ -89017,7 +88422,6 @@ "registry": "https://registry.npmjs.org/", "description": "The tiny 📦, smart 😎, and flexible 🎗 bottom sheet your app craves", "topics": [ - "react-native", "ios", "android", "bottom-sheet", @@ -89043,11 +88447,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 11913, - "weekDownloads": 1830, + "downloads": 12041, + "weekDownloads": 3000, "size": 232673, "latestRelease": "0.4.3", "latestReleaseDate": "2024-10-29T17:24:31.757Z" @@ -89058,8 +88463,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.131, - "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" + "popularity": 0.212, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/farhoudshapouran/react-native-ui-datepicker", @@ -89090,10 +88495,10 @@ "updatedAt": "2025-03-21T18:14:32Z", "createdAt": "2023-03-22T16:24:04Z", "pushedAt": "2025-03-21T18:14:32Z", - "forks": 85, - "issues": 33, + "forks": 89, + "issues": 35, "subscribers": 5, - "stars": 744, + "stars": 772, "dependencies": 5 }, "name": "react-native-ui-datepicker", @@ -89102,7 +88507,6 @@ "registry": "https://registry.npmjs.org/", "description": "Customizable React Native 📅 Date Picker component for Android, iOS, and Web. It includes single, range, and multiple modes, supports different locales, including the Jalali (Persian) calendar, handles different timezones, and is fully compatible with NativeWind.", "topics": [ - "react-native", "ios", "android", "ui-datetpicker", @@ -89129,24 +88533,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ui-datepicker", "npm": { - "downloads": 127623, - "weekDownloads": 24210, + "downloads": 126845, + "weekDownloads": 26288, "size": 765502, "latestRelease": "3.1.2", "latestReleaseDate": "2025-03-20T15:20:46.804Z" }, - "score": 68, + "score": 57, "matchingScoreModifiers": [ "Popular", "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, - "topicSearchString": "react-native ios android ui-datetpicker datetime datetime-picker datetpicker datet-picker timepicker time-picker calendar daterange datepicker datetimepicker picker web" + "popularity": 0.176, + "topicSearchString": "ios android ui-datetpicker datetime datetime-picker datetpicker datet-picker timepicker time-picker calendar daterange datepicker datetimepicker picker web" }, { "githubUrl": "https://github.com/farhoudshapouran/react-native-highlighter", @@ -89177,7 +88583,7 @@ "forks": 3, "issues": 3, "subscribers": 3, - "stars": 66, + "stars": 70, "dependencies": 0 }, "name": "react-native-highlighter", @@ -89186,7 +88592,6 @@ "registry": "https://registry.npmjs.org/", "description": "A library for 🌈 highlighting specific contents and enabling interaction with them.", "topics": [ - "react-native", "ios", "android", "highlight", @@ -89203,12 +88608,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-highlighter", "npm": { - "downloads": 2870, - "weekDownloads": 508, + "downloads": 2120, + "weekDownloads": 603, "size": 60015, "latestRelease": "1.0.7", "latestReleaseDate": "2024-04-09T20:51:37.002Z" @@ -89218,8 +88624,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.151, - "topicSearchString": "react-native ios android highlight keywords web" + "popularity": 0.242, + "topicSearchString": "ios android highlight keywords web" }, { "githubUrl": "https://github.com/bidah/react-native-vercel-ai", @@ -89246,8 +88652,8 @@ "pushedAt": "2024-04-16T21:03:58Z", "forks": 14, "issues": 2, - "subscribers": 9, - "stars": 285, + "subscribers": 8, + "stars": 286, "dependencies": 3 }, "name": "react-native-vercel-ai", @@ -89256,7 +88662,6 @@ "registry": "https://registry.npmjs.org/", "description": "🤖 ⚛️ Run Vercel AI package on React Native and Expo universal native apps (Mobile and web)", "topics": [ - "react-native", "ios", "android" ], @@ -89270,12 +88675,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-vercel-ai", "npm": { - "downloads": 505, - "weekDownloads": 47, + "downloads": 918, + "weekDownloads": 187, "size": 155473, "latestRelease": "0.1.2", "latestReleaseDate": "2023-12-05T17:30:49.278Z" @@ -89286,8 +88692,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.67, - "topicSearchString": "react-native ios android" + "popularity": -0.577, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/gevgasparyan/react-native-animated-blur-view", @@ -89322,7 +88728,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Animated Blur component", "topics": [ - "react-native", "ios", "android", "blur", @@ -89342,12 +88747,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-blur-view", "npm": { - "downloads": 29, - "weekDownloads": 3, + "downloads": 129, + "weekDownloads": 14, "size": 10198, "latestRelease": "0.1.4", "latestReleaseDate": "2023-11-02T18:40:42.572Z" @@ -89357,8 +88763,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.9, - "topicSearchString": "react-native ios android blur blur-view animate animated animate-blur-view gradient" + "popularity": -0.907, + "topicSearchString": "ios android blur blur-view animate animated animate-blur-view gradient" }, { "githubUrl": "https://github.com/mrousavy/react-native-fast-tflite", @@ -89367,6 +88773,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/mrousavy/react-native-fast-tflite", @@ -89381,10 +88788,10 @@ "updatedAt": "2025-07-02T10:39:40Z", "createdAt": "2023-07-04T08:37:10Z", "pushedAt": "2025-07-02T10:39:40Z", - "forks": 61, - "issues": 28, - "subscribers": 15, - "stars": 986, + "forks": 69, + "issues": 31, + "subscribers": 14, + "stars": 1017, "dependencies": 0 }, "name": "react-native-fast-tflite", @@ -89393,7 +88800,6 @@ "registry": "https://registry.npmjs.org/", "description": "🧬 High-performance TensorFlow Lite library for React Native with GPU acceleration", "topics": [ - "react-native", "tensorflow", "vision-camera", "tflite", @@ -89411,9 +88817,7 @@ "facial-recognition", "fast", "ml", - "native", - "object-detection", - "react" + "object-detection" ], "license": { "key": "mit", @@ -89425,24 +88829,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-fast-tflite", "npm": { - "downloads": 13087, - "weekDownloads": 1998, + "downloads": 14752, + "weekDownloads": 2908, "size": 189018, "latestRelease": "1.6.1", "latestReleaseDate": "2025-04-08T08:31:24.369Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.13, - "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" + "popularity": 0.168, + "topicSearchString": "tensorflow vision-camera tflite lite tensorflowlite tensorflow-lite visioncamera vision camera ios android ai arraybuffer detection facial-recognition fast ml object-detection" }, { "githubUrl": "https://github.com/margelo/react-native-worklets-core", @@ -89462,13 +88866,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-06T15:32:00Z", + "updatedAt": "2025-10-13T09:33:14Z", "createdAt": "2021-11-11T18:24:15Z", - "pushedAt": "2025-08-06T15:32:00Z", - "forks": 47, - "issues": 47, - "subscribers": 10, - "stars": 726, + "pushedAt": "2025-10-13T09:33:14Z", + "forks": 51, + "issues": 51, + "subscribers": 9, + "stars": 742, "dependencies": 1 }, "name": "react-native-worklets-core", @@ -89477,14 +88881,11 @@ "registry": "https://registry.npmjs.org/", "description": "🧵 A library to run JS functions (\"Worklets\") on separate Threads", "topics": [ - "react-native", "ios", "android", "async", "background", "multithreading", - "native", - "react", "threads", "worklet", "worklets", @@ -89500,24 +88901,26 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-worklets-core", "npm": { - "downloads": 173847, - "weekDownloads": 26278, + "downloads": 274370, + "weekDownloads": 49522, "size": 401802, "latestRelease": "1.6.2", "latestReleaseDate": "2025-08-06T15:31:51.354Z" }, - "score": 68, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.128, - "topicSearchString": "react-native ios android async background multithreading native react threads worklet worklets hacktoberfest" + "popularity": 0.153, + "topicSearchString": "ios android async background multithreading threads worklet worklets hacktoberfest" }, { "githubUrl": "https://github.com/rodgomesc/vision-camera-face-detector", @@ -89540,10 +88943,10 @@ "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": 109, + "stars": 111, "dependencies": 0 }, "name": "vision-camera-face-detector", @@ -89552,7 +88955,6 @@ "registry": "https://registry.npmjs.org/", "description": "VisionCamera Frame Processor Plugin to detect faces using MLKit Vision Face Detector", "topics": [ - "react-native", "ios", "android" ], @@ -89566,13 +88968,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "vision-camera-face-detector", "npm": { - "downloads": 883, - "weekDownloads": 139, + "downloads": 877, + "weekDownloads": 170, "size": 105636, "latestRelease": "0.1.8", "latestReleaseDate": "2021-10-14T18:41:23.142Z" @@ -89583,8 +88986,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.366, - "topicSearchString": "react-native ios android" + "popularity": -1.335, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/alantoa/react-native-awesome-slider", @@ -89611,10 +89014,10 @@ "updatedAt": "2025-03-10T09:34:19Z", "createdAt": "2022-01-09T06:16:54Z", "pushedAt": "2025-03-10T09:34:19Z", - "forks": 39, + "forks": 40, "issues": 11, "subscribers": 3, - "stars": 393, + "stars": 397, "dependencies": 0 }, "name": "react-native-awesome-slider", @@ -89622,7 +89025,6 @@ "isPrivate": false, "description": "🎨 A versatile, responsive react native/web component.", "topics": [ - "react-native", "reanimted", "gesture-handle", "slider", @@ -89642,12 +89044,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-awesome-slider", "npm": { - "downloads": 193821, - "weekDownloads": 33207, + "downloads": 125341, + "weekDownloads": 29274, "size": 183923, "latestRelease": "2.9.0", "latestReleaseDate": "2024-12-30T13:17:41.647Z" @@ -89658,8 +89061,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.146, - "topicSearchString": "react-native reanimted gesture-handle slider scrubber slider-haptics-feedback component reanimated gesture-handler" + "popularity": 0.199, + "topicSearchString": "reanimted gesture-handle slider scrubber slider-haptics-feedback component reanimated gesture-handler" }, { "githubUrl": "https://github.com/jpudysz/react-native-unistyles", @@ -89682,13 +89085,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T08:48:16Z", + "updatedAt": "2025-10-12T06:30:18Z", "createdAt": "2023-10-03T10:27:27Z", - "pushedAt": "2025-09-10T08:48:16Z", - "forks": 86, - "issues": 5, - "subscribers": 9, - "stars": 2498, + "pushedAt": "2025-10-12T06:30:18Z", + "forks": 88, + "issues": 11, + "subscribers": 10, + "stars": 2559, "dependencies": 0 }, "name": "react-native-unistyles", @@ -89697,13 +89100,11 @@ "registry": "https://registry.npmjs.org/", "description": "Level up your React Native StyleSheet", "topics": [ - "react-native", "ios", "android", "web", "expo", "fabric", - "react", "typescript", "macos", "windows" @@ -89718,15 +89119,17 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-unistyles", "npm": { - "downloads": 201668, - "weekDownloads": 32040, - "size": 1392947, - "latestRelease": "3.0.12", - "latestReleaseDate": "2025-09-10T08:48:13.488Z" + "downloads": 223787, + "weekDownloads": 46952, + "size": 1396377, + "latestRelease": "3.0.15", + "latestReleaseDate": "2025-10-12T06:30:13.362Z" }, "score": 76, "matchingScoreModifiers": [ @@ -89734,8 +89137,8 @@ "Known", "Recently updated" ], - "popularity": 0.135, - "topicSearchString": "react-native ios android web expo fabric react typescript macos windows" + "popularity": 0.178, + "topicSearchString": "ios android web expo fabric typescript macos windows" }, { "githubUrl": "https://github.com/WadhahEssam/react-native-theme-switch-animation", @@ -89760,8 +89163,8 @@ "pushedAt": "2024-08-16T22:04:34Z", "forks": 26, "issues": 1, - "subscribers": 5, - "stars": 393, + "subscribers": 4, + "stars": 398, "dependencies": 0 }, "name": "react-native-theme-switch-animation", @@ -89770,7 +89173,6 @@ "registry": "https://registry.npmjs.org/", "description": "A Plug & Play Animations for Switching (Dark/Light) Themes. 🌖", "topics": [ - "react-native", "ios", "android", "animation", @@ -89789,24 +89191,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-theme-switch-animation", "npm": { - "downloads": 10054, - "weekDownloads": 1805, + "downloads": 5601, + "weekDownloads": 2069, "size": 75820, "latestRelease": "0.8.0", "latestReleaseDate": "2024-08-16T22:04:30.829Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.153, - "topicSearchString": "react-native ios android animation theme dark-mode darkmode lightmode" + "popularity": 0.314, + "topicSearchString": "ios android animation theme dark-mode darkmode lightmode" }, { "githubUrl": "https://github.com/hoanglam10499/react-native-drop-shadow", @@ -89835,7 +89238,7 @@ "forks": 9, "issues": 14, "subscribers": 2, - "stars": 255, + "stars": 256, "dependencies": 0 }, "name": "react-native-drop-shadow", @@ -89844,14 +89247,11 @@ "registry": "https://registry.npmjs.org/", "description": "https://www.npmjs.com/package/react-native-drop-shadow", "topics": [ - "react-native", "shadow", "android", "drop-shadow", "new", - "shadow-android-react-native", - "shadow-react-native", - "shadow-react" + "shadow-android" ], "license": { "key": "mit", @@ -89863,24 +89263,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-drop-shadow", "npm": { - "downloads": 83230, - "weekDownloads": 13410, + "downloads": 82548, + "weekDownloads": 20841, "size": 49455, "latestRelease": "1.0.3", "latestReleaseDate": "2025-02-12T04:07:28.064Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.137, - "topicSearchString": "react-native shadow android drop-shadow new shadow-android-react-native shadow-react-native shadow-react" + "popularity": 0.215, + "topicSearchString": "shadow android drop-shadow new shadow-android" }, { "githubUrl": "https://github.com/AppAndFlow/expo-camera-characteristics", @@ -89890,6 +89291,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/AppAndFlow/expo-camera-characteristics", @@ -89905,9 +89307,9 @@ "createdAt": "2023-04-14T21:34:53Z", "pushedAt": "2025-01-08T16:00:01Z", "forks": 2, - "issues": 1, + "issues": 2, "subscribers": 3, - "stars": 5, + "stars": 6, "dependencies": 0 }, "name": "@appandflow/expo-camera-characteristics", @@ -89915,7 +89317,6 @@ "isPrivate": false, "description": "This library exposes the rear camera's characteristics such as the sensor size, the focal length and the image resolution.", "topics": [ - "react-native", "expo", "expo-camera-characteristics", "expocameracharacteristics", @@ -89931,11 +89332,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 21, - "weekDownloads": 0, + "downloads": 143, + "weekDownloads": 12, "size": 43272, "latestRelease": "1.1.0", "latestReleaseDate": "2024-01-29T17:01:22.562Z" @@ -89945,8 +89348,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native expo expo-camera-characteristics expocameracharacteristics camera" + "popularity": -0.927, + "topicSearchString": "expo expo-camera-characteristics expocameracharacteristics camera" }, { "githubUrl": "https://github.com/PedroBern/react-native-collapsible-tab-view", @@ -89975,10 +89378,10 @@ "updatedAt": "2025-03-29T18:44:34Z", "createdAt": "2020-11-19T11:49:34Z", "pushedAt": "2025-03-29T18:44:34Z", - "forks": 199, - "issues": 179, + "forks": 201, + "issues": 182, "subscribers": 6, - "stars": 1008, + "stars": 1027, "dependencies": 1 }, "name": "react-native-collapsible-tab-view", @@ -89988,15 +89391,12 @@ "description": "A cross-platform Collapsible Tab View component for React Native", "topics": [ "component", - "react-component", - "react-native", "ios", "android", "tab", "swipe", "scrollable", "coverflow", - "react", "expo", "tabs", "tabview" @@ -90011,25 +89411,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-collapsible-tab-view", "npm": { - "downloads": 206189, - "weekDownloads": 34446, + "downloads": 159889, + "weekDownloads": 35852, "size": 417002, "latestRelease": "8.0.1", "latestReleaseDate": "2025-03-29T18:43:59.338Z" }, - "score": 57, + "score": 46, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "component react-component react-native ios android tab swipe scrollable coverflow react expo tabs tabview" + "popularity": 0.191, + "topicSearchString": "component ios android tab swipe scrollable coverflow expo tabs tabview" }, { "githubUrl": "https://github.com/phamfoo/react-native-easing-gradient", @@ -90059,7 +89461,7 @@ "forks": 5, "issues": 0, "subscribers": 4, - "stars": 237, + "stars": 241, "dependencies": 0 }, "name": "react-native-easing-gradient", @@ -90067,8 +89469,6 @@ "isPrivate": false, "description": "Create smooth gradients in React Native", "topics": [ - "react", - "react-native", "gradients", "easing", "smooth", @@ -90084,12 +89484,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-easing-gradient", "npm": { - "downloads": 35153, - "weekDownloads": 4219, + "downloads": 41487, + "weekDownloads": 7935, "size": 978254, "latestRelease": "1.1.1", "latestReleaseDate": "2024-02-27T09:35:28.020Z" @@ -90100,8 +89501,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.102, - "topicSearchString": "react react-native gradients easing smooth expo" + "popularity": 0.163, + "topicSearchString": "gradients easing smooth expo" }, { "githubUrl": "https://github.com/andrei-zgirvaci/expo-stable-diffusion", @@ -90129,7 +89530,7 @@ "forks": 6, "issues": 0, "subscribers": 3, - "stars": 206, + "stars": 208, "dependencies": 0 }, "name": "expo-stable-diffusion", @@ -90137,7 +89538,6 @@ "isPrivate": false, "description": "Run Stable Diffusion using Core ML on iOS within your Expo & React Native App", "topics": [ - "react-native", "expo", "expo-stable-diffusion", "expostablediffusion", @@ -90160,12 +89560,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-stable-diffusion", "npm": { - "downloads": 260, - "weekDownloads": 9, + "downloads": 58, + "weekDownloads": 10, "size": 147000, "latestRelease": "0.2.0", "latestReleaseDate": "2023-08-15T07:32:23.007Z" @@ -90175,8 +89577,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.72, - "topicSearchString": "react-native expo expo-stable-diffusion expostablediffusion ai ane coreml ios ipad ipados iphone stable-diffusion" + "popularity": -0.596, + "topicSearchString": "expo expo-stable-diffusion expostablediffusion ai ane coreml ios ipad ipados iphone stable-diffusion" }, { "githubUrl": "https://github.com/DevVibhor/react-native-bullet-graph", @@ -90211,7 +89613,6 @@ "isPrivate": false, "description": "Customizable Bullet Graph component for React Native apps.", "topics": [ - "react-native", "chart", "charts", "graph", @@ -90234,12 +89635,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-bullet-graph", "npm": { - "downloads": 36, - "weekDownloads": 1, + "downloads": 143, + "weekDownloads": 38, "size": 900516, "latestRelease": "1.0.3", "latestReleaseDate": "2023-11-23T11:04:11.290Z" @@ -90249,8 +89651,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.975, - "topicSearchString": "react-native chart charts graph graphs data-visualization bullet-graph bullet-chart stats analysis analytics visualization" + "popularity": -0.77, + "topicSearchString": "chart charts graph graphs data-visualization bullet-graph bullet-chart stats analysis analytics visualization" }, { "githubUrl": "https://github.com/dimaportenko/react-native-liquid-gauge", @@ -90289,7 +89691,6 @@ "registry": "https://registry.npmjs.org/", "description": "Unveiling the React Native Liquid Gauge, a charming and highly customizable UI component engineered to represent progress in a visually intuitive manner. This library is built on top of react-native-skia, ensuring smooth rendering and high performance across different platforms while making it easier to integrate within your React Native projects.", "topics": [ - "react-native", "ios", "android" ], @@ -90303,12 +89704,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-liquid-gauge", "npm": { - "downloads": 311, - "weekDownloads": 56, + "downloads": 290, + "weekDownloads": 68, "size": 225234, "latestRelease": "0.1.3", "latestReleaseDate": "2023-10-20T08:16:20.100Z" @@ -90318,14 +89720,15 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.597, - "topicSearchString": "react-native ios android" + "popularity": -0.55, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/azesmway/react-native-unity", "npmPkg": "@azesmway/react-native-unity", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/azesmway/react-native-unity", @@ -90340,10 +89743,10 @@ "updatedAt": "2024-12-12T16:33:45Z", "createdAt": "2022-03-29T14:44:25Z", "pushedAt": "2024-12-12T16:33:45Z", - "forks": 87, - "issues": 101, - "subscribers": 13, - "stars": 346, + "forks": 89, + "issues": 103, + "subscribers": 14, + "stars": 356, "dependencies": 0 }, "name": "@azesmway/react-native-unity", @@ -90352,7 +89755,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Unity", "topics": [ - "react-native", "ios", "android", "unity" @@ -90367,24 +89769,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 4487, - "weekDownloads": 605, + "downloads": 4932, + "weekDownloads": 1044, "size": 73930, "latestRelease": "1.0.11", "latestReleaseDate": "2024-12-12T16:33:43.257Z" }, - "score": 30, + "score": 32, "matchingScoreModifiers": [ "Known", "Lots of open issues", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.115, - "topicSearchString": "react-native ios android unity" + "popularity": 0.18, + "topicSearchString": "ios android unity" }, { "githubUrl": "https://github.com/nandorojo/zeego/tree/master/packages/zeego", @@ -90413,10 +89816,10 @@ "updatedAt": "2025-04-25T21:52:45Z", "createdAt": "2021-11-08T19:41:13Z", "pushedAt": "2025-04-25T21:52:45Z", - "forks": 60, - "issues": 31, - "subscribers": 11, - "stars": 2040, + "forks": 61, + "issues": 29, + "subscribers": 9, + "stars": 2079, "dependencies": 3 }, "name": "zeego", @@ -90425,7 +89828,6 @@ "registry": "https://registry.npmjs.org/", "description": "Logical UI primitives, made for screens.", "topics": [ - "react-native", "ios", "android" ], @@ -90439,12 +89841,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "zeego", "npm": { - "downloads": 137982, - "weekDownloads": 24515, + "downloads": 125733, + "weekDownloads": 27172, "size": 781298, "latestRelease": "3.0.6", "latestReleaseDate": "2025-03-21T16:38:57.917Z" @@ -90455,8 +89859,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.151, - "topicSearchString": "react-native ios android" + "popularity": 0.184, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/shyambhongle/react-native-video-duration", @@ -90491,7 +89895,6 @@ "registry": "https://registry.npmjs.org/", "description": "Retrieve the video duration on iOS and Android platforms by specifying the file path", "topics": [ - "react-native", "ios", "android" ], @@ -90505,12 +89908,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-video-duration", "npm": { - "downloads": 1673, - "weekDownloads": 272, + "downloads": 2101, + "weekDownloads": 533, "size": 16103, "latestRelease": "0.1.2", "latestReleaseDate": "2023-11-30T08:01:17.163Z" @@ -90520,8 +89925,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.112, - "topicSearchString": "react-native ios android" + "popularity": -0.034, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/orbital-systems/react-native-esp-idf-provisioning", @@ -90548,7 +89953,7 @@ "updatedAt": "2025-05-27T08:53:58Z", "createdAt": "2023-09-19T06:55:15Z", "pushedAt": "2025-05-27T08:53:58Z", - "forks": 13, + "forks": 15, "issues": 6, "subscribers": 7, "stars": 48, @@ -90560,7 +89965,6 @@ "registry": "https://registry.npmjs.org/", "description": "ESP IDF provisioning and custom data library for react-native", "topics": [ - "react-native", "ios", "android", "ble", @@ -90580,21 +89984,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 1841, - "weekDownloads": 241, + "downloads": 1704, + "weekDownloads": 333, "size": 148577, "latestRelease": "0.4.6", "latestReleaseDate": "2025-05-27T08:52:49.986Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": 0.111, - "topicSearchString": "react-native ios android ble esp32 esp32-idf provisioning softap wifi-configuration" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.167, + "topicSearchString": "ios android ble esp32 esp32-idf provisioning softap wifi-configuration" }, { "githubUrl": "https://github.com/OP-Engineering/op-sqlite", @@ -90616,13 +90020,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T10:08:53Z", + "updatedAt": "2025-10-11T06:15:17Z", "createdAt": "2023-11-06T12:03:30Z", - "pushedAt": "2025-09-10T10:08:53Z", - "forks": 68, + "pushedAt": "2025-10-11T06:15:17Z", + "forks": 70, "issues": 6, "subscribers": 11, - "stars": 828, + "stars": 849, "dependencies": 0 }, "name": "@op-engineering/op-sqlite", @@ -90631,7 +90035,6 @@ "registry": "https://registry.npmjs.org/", "description": "Fastest SQLite library for react-native by @ospfranco", "topics": [ - "react-native", "ios", "android", "sqlite", @@ -90647,14 +90050,16 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 83464, - "weekDownloads": 12216, - "size": 319307175, - "latestRelease": "15.0.3", - "latestReleaseDate": "2025-09-10T15:12:54.597Z" + "downloads": 102513, + "weekDownloads": 22616, + "size": 319518114, + "latestRelease": "15.0.7", + "latestReleaseDate": "2025-10-10T19:41:15.970Z" }, "score": 76, "matchingScoreModifiers": [ @@ -90662,8 +90067,8 @@ "Known", "Recently updated" ], - "popularity": 0.124, - "topicSearchString": "react-native ios android sqlite jsi" + "popularity": 0.188, + "topicSearchString": "ios android sqlite jsi" }, { "githubUrl": "https://github.com/Hector-Chong/native-wechat", @@ -90686,10 +90091,10 @@ "updatedAt": "2025-04-30T00:09:49Z", "createdAt": "2022-10-27T16:08:08Z", "pushedAt": "2025-04-30T00:09:49Z", - "forks": 21, - "issues": 21, + "forks": 22, + "issues": 22, "subscribers": 3, - "stars": 192, + "stars": 198, "dependencies": 1 }, "name": "native-wechat", @@ -90697,7 +90102,6 @@ "isPrivate": false, "description": "A React Native library for supporting Wechat APIs on Android and iOS", "topics": [ - "react-native", "ios", "android", "wechat" @@ -90712,23 +90116,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "native-wechat", "npm": { - "downloads": 82, - "weekDownloads": 0, + "downloads": 266, + "weekDownloads": 30, "size": 135276, "latestRelease": "1.0.21", "latestReleaseDate": "2025-01-05T15:45:15.682Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": -1, - "topicSearchString": "react-native ios android wechat" + "popularity": -0.653, + "topicSearchString": "ios android wechat" }, { "githubUrl": "https://github.com/mateoguzmana/react-native-zendesk-unified", @@ -90764,13 +90169,11 @@ "registry": "https://registry.npmjs.org/", "description": "React Native wrapper for the iOS and Android Zendesk SDKs (Chat, Support & Answer Bot)", "topics": [ - "react-native", "ios", "android", "expo", "library", - "native-module", - "react", + "module", "support", "unified", "zendesk", @@ -90786,12 +90189,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-zendesk-unified", "npm": { - "downloads": 33, - "weekDownloads": 13, + "downloads": 24, + "weekDownloads": 1, "size": 90388, "latestRelease": "0.0.1-alpha.0", "latestReleaseDate": "2023-12-14T16:19:44.479Z" @@ -90801,8 +90206,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.629, - "topicSearchString": "react-native ios android expo library native-module react support unified zendesk hacktoberfest" + "popularity": -0.96, + "topicSearchString": "ios android expo library module support unified zendesk hacktoberfest" }, { "githubUrl": "https://github.com/bugfender/rn-bugfender", @@ -90826,7 +90231,7 @@ "pushedAt": "2025-01-02T14:38:28Z", "forks": 7, "issues": 0, - "subscribers": 4, + "subscribers": 3, "stars": 30, "dependencies": 0 }, @@ -90841,7 +90246,6 @@ "debug", "android", "ios", - "react-native", "web" ], "license": { @@ -90854,22 +90258,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 3107, - "weekDownloads": 374, + "downloads": 4563, + "weekDownloads": 795, "size": 252656, "latestRelease": "4.0.0", "latestReleaseDate": "2025-01-02T14:42:01.056Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.102, - "topicSearchString": "bugfender logging debug android ios react-native web" + "popularity": 0.148, + "topicSearchString": "bugfender logging debug android ios web" }, { "githubUrl": "https://github.com/howljs/react-native-auto-route", @@ -90904,7 +90309,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Auto Route is a file-based router for React Native CLI", "topics": [ - "react-native", "ios", "android", "auto-route" @@ -90919,13 +90323,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-auto-route", "npm": { - "downloads": 115, - "weekDownloads": 17, + "downloads": 65, + "weekDownloads": 12, "size": 511657, "latestRelease": "0.3.3", "latestReleaseDate": "2024-04-06T19:57:55.829Z" @@ -90935,8 +90340,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.374, - "topicSearchString": "react-native ios android auto-route" + "popularity": -1.34, + "topicSearchString": "ios android auto-route" }, { "githubUrl": "https://github.com/neurio/react-native-local-network-permission", @@ -90971,7 +90376,6 @@ "isPrivate": false, "description": "A package to handle the local network permission after iOS 14", "topics": [ - "react-native", "local-network-permission", "expo", "reactnativelocalnetworkpermission", @@ -90990,22 +90394,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 4456, - "weekDownloads": 975, + "downloads": 5391, + "weekDownloads": 1445, "size": 23484, "latestRelease": "1.2.0", "latestReleaseDate": "2024-06-26T16:29:05.123Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.064, - "topicSearchString": "react-native local-network-permission expo reactnativelocalnetworkpermission ios local-network permissions swift" + "popularity": -0.022, + "topicSearchString": "local-network-permission expo reactnativelocalnetworkpermission ios local-network permissions swift" }, { "githubUrl": "https://github.com/flixyudh/react-native-flix-snackbar", @@ -91041,7 +90446,6 @@ "registry": "https://registry.npmjs.org/", "description": "Easy usage of snackbar without ref", "topics": [ - "react-native", "ios", "android" ], @@ -91055,12 +90459,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": true, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-flix-snackbar", "npm": { - "downloads": 3, - "weekDownloads": 1, + "downloads": 35, + "weekDownloads": 0, "size": 10190, "latestRelease": "1.0.2", "latestReleaseDate": "2024-01-02T17:36:43.125Z" @@ -91071,7 +90476,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/Splicer97/react-native-switch", @@ -91108,7 +90513,6 @@ "registry": "https://registry.npmjs.org/", "description": "Custom Switch component for React Native", "topics": [ - "react-native", "ios", "android", "switch", @@ -91127,11 +90531,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 500, - "weekDownloads": 196, + "downloads": 314, + "weekDownloads": 64, "size": 35031, "latestRelease": "1.0.0", "latestReleaseDate": "2023-12-24T11:52:46.704Z" @@ -91141,8 +90546,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.665, - "topicSearchString": "react-native ios android switch switcher toggle reanimated gesture-handler" + "popularity": -0.825, + "topicSearchString": "ios android switch switcher toggle reanimated gesture-handler" }, { "githubUrl": "https://github.com/bviebahn/react-native-star-rating-widget", @@ -91181,7 +90586,6 @@ "registry": "https://registry.npmjs.org/", "description": "A customizable, animated star rating component for React Native. Compatible with iOS, Android and Web. Written in Typescript.", "topics": [ - "react-native", "ios", "android" ], @@ -91195,12 +90599,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-star-rating-widget", "npm": { - "downloads": 47936, - "weekDownloads": 8285, + "downloads": 44434, + "weekDownloads": 10759, "size": 79738, "latestRelease": "1.9.2", "latestReleaseDate": "2024-11-27T20:38:43.683Z" @@ -91211,8 +90616,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.147, - "topicSearchString": "react-native ios android" + "popularity": 0.206, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/margelo/react-native-release-profiler", @@ -91233,13 +90638,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-15T09:37:59Z", + "updatedAt": "2025-10-16T10:50:14Z", "createdAt": "2023-11-30T18:00:11Z", - "pushedAt": "2025-07-15T09:37:59Z", - "forks": 7, + "pushedAt": "2025-10-16T10:50:14Z", + "forks": 9, "issues": 3, - "subscribers": 8, - "stars": 265, + "subscribers": 7, + "stars": 275, "dependencies": 2 }, "name": "react-native-release-profiler", @@ -91248,7 +90653,6 @@ "registry": "https://registry.npmjs.org/", "description": "📊 A fast and simple library to passively profile JS/Hermes performance in production and release builds.", "topics": [ - "react-native", "ios", "android", "debug", @@ -91272,23 +90676,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-release-profiler", "npm": { - "downloads": 199013, - "weekDownloads": 10558, - "size": 743884, - "latestRelease": "0.4.0", - "latestReleaseDate": "2025-02-07T20:57:41.817Z" + "downloads": 301717, + "weekDownloads": 75993, + "size": 745302, + "latestRelease": "0.4.2", + "latestReleaseDate": "2025-10-16T10:50:11.182Z" }, - "score": 51, + "score": 57, "matchingScoreModifiers": [ "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.045, - "topicSearchString": "react-native ios android debug debugger hermes jsi perf performance production profiler profiling release" + "popularity": 0.214, + "topicSearchString": "ios android debug debugger hermes jsi perf performance production profiler profiling release" }, { "githubUrl": "https://github.com/outsung/expo-dynamic-app-icon", @@ -91297,6 +90704,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/outsung/expo-dynamic-app-icon", @@ -91311,10 +90719,10 @@ "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": 187, + "stars": 188, "dependencies": 0 }, "name": "expo-dynamic-app-icon", @@ -91322,7 +90730,6 @@ "isPrivate": false, "description": "🤖 Programmatically change the app icon in Expo.", "topics": [ - "react-native", "expo", "expo-dynamic-app-icon", "expodynamicappicon" @@ -91337,13 +90744,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "unmaintained": true, "npmPkg": "expo-dynamic-app-icon", "npm": { - "downloads": 9155, - "weekDownloads": 1709, + "downloads": 6604, + "weekDownloads": 1218, "size": 39183, "latestRelease": "1.2.0", "latestReleaseDate": "2023-07-19T06:56:17.210Z" @@ -91354,8 +90763,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.591, - "topicSearchString": "react-native expo expo-dynamic-app-icon expodynamicappicon" + "popularity": -0.593, + "topicSearchString": "expo expo-dynamic-app-icon expodynamicappicon" }, { "githubUrl": "https://github.com/hirbod/expo-video-metadata", @@ -91391,7 +90800,6 @@ "isPrivate": false, "description": "Provides a function that let you get some metadata from video files, like the duration, width, height, fps, codec, hasAudio, orientation, audioChannels, audioCodec, audioSampleRate etc. Check the exported types for more information. This library has web support but is limited to platform APIs.", "topics": [ - "react-native", "expo", "expo-video-metadata", "expovideometadata", @@ -91410,23 +90818,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-video-metadata", "npm": { - "downloads": 4240, - "weekDownloads": 852, + "downloads": 4667, + "weekDownloads": 1013, "size": 70645, "latestRelease": "1.5.0", "latestReleaseDate": "2024-12-26T20:58:00.172Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.171, - "topicSearchString": "react-native expo expo-video-metadata expovideometadata video-module video-metadata video metadata" + "popularity": 0.185, + "topicSearchString": "expo expo-video-metadata expovideometadata video-module video-metadata video metadata" }, { "githubUrl": "https://github.com/sbaiahmed1/react-native-image-preview", @@ -91458,7 +90867,7 @@ "forks": 2, "issues": 0, "subscribers": 2, - "stars": 39, + "stars": 40, "dependencies": 0 }, "name": "react-native-image-preview-reanimated", @@ -91467,7 +90876,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Image Preview made with Reanimated 3 and RNGH ", "topics": [ - "react-native", "ios", "android" ], @@ -91481,21 +90889,20 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 60, - "weekDownloads": 3, + "downloads": 127, + "weekDownloads": 8, "size": 279032, "latestRelease": "0.5.6", "latestReleaseDate": "2025-04-25T00:32:13.308Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.707, - "topicSearchString": "react-native ios android" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.695, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/kesha-antonov/react-native-background-downloader", @@ -91516,13 +90923,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T10:00:50Z", + "updatedAt": "2025-10-20T19:12:51Z", "createdAt": "2024-02-16T07:31:38Z", - "pushedAt": "2025-09-12T10:00:50Z", - "forks": 22, - "issues": 21, + "pushedAt": "2025-10-20T19:12:51Z", + "forks": 30, + "issues": 25, "subscribers": 3, - "stars": 120, + "stars": 133, "dependencies": 0 }, "name": "@kesha-antonov/react-native-background-downloader", @@ -91530,7 +90937,6 @@ "isPrivate": false, "description": "A library for React-Native to help you download large files on iOS and Android both in the foreground and most importantly in the background.", "topics": [ - "react-native", "background", "download", "large-files", @@ -91546,24 +90952,24 @@ "spdxId": "Apache-2.0" }, "hasTypes": true, - "newArchitecture": false, + "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 14133, - "weekDownloads": 2423, + "downloads": 17033, + "weekDownloads": 3943, "size": 210613, "latestRelease": "3.2.6", "latestReleaseDate": "2025-01-11T05:16:49.301Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.146, - "topicSearchString": "react-native background download large-files new-architecture turbo-modules fabric" + "popularity": 0.197, + "topicSearchString": "background download large-files new-architecture turbo-modules fabric" }, { "githubUrl": "https://github.com/callstack/react-theme-provider", @@ -91587,7 +90993,7 @@ "pushedAt": "2023-08-01T12:10:12Z", "forks": 54, "issues": 16, - "subscribers": 11, + "subscribers": 10, "stars": 468, "dependencies": 2 }, @@ -91596,8 +91002,6 @@ "isPrivate": false, "description": "A set of utilities that help you create your own React theming system in few easy steps", "topics": [ - "react", - "react-native", "theme", "provider" ], @@ -91611,12 +91015,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 1597861, - "weekDownloads": 275724, + "downloads": 1558570, + "weekDownloads": 342356, "size": 32759, "latestRelease": "3.0.9", "latestReleaseDate": "2023-08-01T12:11:04.037Z" @@ -91628,8 +91033,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.603, - "topicSearchString": "react react-native theme provider" + "popularity": -0.563, + "topicSearchString": "theme provider" }, { "githubUrl": "https://github.com/sosog/react-native-dynamically-selected-picker", @@ -91659,7 +91064,7 @@ "forks": 20, "issues": 3, "subscribers": 1, - "stars": 164, + "stars": 166, "dependencies": 1 }, "name": "react-native-dynamically-selected-picker", @@ -91668,7 +91073,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Picker for Android and IOS with dynamically updating selected items on scroll.", "topics": [ - "react-native", "ios", "android", "swipe-picker", @@ -91694,12 +91098,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-dynamically-selected-picker", "npm": { - "downloads": 643, - "weekDownloads": 70, + "downloads": 1043, + "weekDownloads": 181, "size": 84020, "latestRelease": "3.3.0", "latestReleaseDate": "2023-11-26T06:18:14.535Z" @@ -91709,8 +91114,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.657, - "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" + "popularity": 0.148, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/steffeydev/react-native-popover-view", @@ -91738,10 +91143,10 @@ "updatedAt": "2025-01-15T10:13:41Z", "createdAt": "2017-05-30T18:02:19Z", "pushedAt": "2025-01-15T10:13:41Z", - "forks": 95, - "issues": 28, + "forks": 100, + "issues": 29, "subscribers": 5, - "stars": 682, + "stars": 688, "dependencies": 2 }, "name": "react-native-popover-view", @@ -91749,17 +91154,15 @@ "isPrivate": false, "description": "A well-tested, adaptable, lightweight component for react-native", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "ui", "popover", "modal", "view", - "component", "tablet", - "react-navigation" + "navigation" ], "license": { "key": "mit", @@ -91771,25 +91174,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-popover-view", "npm": { - "downloads": 216412, - "weekDownloads": 35806, + "downloads": 220116, + "weekDownloads": 51571, "size": 309659, "latestRelease": "6.1.0", "latestReleaseDate": "2025-01-15T10:14:34.820Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.141, - "topicSearchString": "react-component react-native ios android ui popover modal view component tablet react-navigation" + "popularity": 0.199, + "topicSearchString": "component ios android ui popover modal view tablet navigation" }, { "githubUrl": "https://github.com/ecklf/react-native-heroicons", @@ -91811,8 +91214,8 @@ "pushedAt": "2024-01-01T20:45:00Z", "forks": 14, "issues": 1, - "subscribers": 2, - "stars": 144, + "subscribers": 1, + "stars": 143, "dependencies": 0 }, "name": "react-native-heroicons", @@ -91820,8 +91223,6 @@ "isPrivate": false, "description": "React Native components for heroicons", "topics": [ - "react", - "react-native", "heroicons", "heroiconsui" ], @@ -91835,12 +91236,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-heroicons", "npm": { - "downloads": 77499, - "weekDownloads": 10752, + "downloads": 92324, + "weekDownloads": 22877, "size": 3181281, "latestRelease": "4.0.0", "latestReleaseDate": "2024-01-01T20:41:51.051Z" @@ -91851,8 +91253,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.118, - "topicSearchString": "react react-native heroicons heroiconsui" + "popularity": 0.211, + "topicSearchString": "heroicons heroiconsui" }, { "githubUrl": "https://github.com/unimonkiez/react-native-asset", @@ -91875,7 +91277,7 @@ "forks": 51, "issues": 19, "subscribers": 5, - "stars": 318, + "stars": 320, "dependencies": 6 }, "name": "react-native-asset", @@ -91883,15 +91285,13 @@ "isPrivate": false, "description": "Linking and unlinking of assets 🔥", "topics": [ - "react-native", - "react", - "native", "js", "asset", "assets", "link" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -91900,13 +91300,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-asset", "npm": { - "downloads": 163492, - "weekDownloads": 23141, + "downloads": 150565, + "weekDownloads": 33208, "size": 26258, "latestRelease": "2.1.1", "latestReleaseDate": "2023-04-27T13:17:51.197Z" @@ -91917,8 +91318,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.63, - "topicSearchString": "react-native react native js asset assets link" + "popularity": -0.563, + "topicSearchString": "js asset assets link" }, { "githubUrl": "https://github.com/Dean177/react-native-json-tree", @@ -91953,8 +91354,6 @@ "isPrivate": false, "description": "React Native JSON Viewer Component, based on react-json-tree", "topics": [ - "react", - "react-native", "json", "tree", "viewer", @@ -91972,12 +91371,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-json-tree", "npm": { - "downloads": 59529, - "weekDownloads": 11277, + "downloads": 53446, + "weekDownloads": 12096, "size": 31536, "latestRelease": "1.5.0", "latestReleaseDate": "2025-02-04T23:17:57.105Z" @@ -91988,8 +91388,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.161, - "topicSearchString": "react react-native json tree viewer json-viewer theme iterables" + "popularity": 0.192, + "topicSearchString": "json tree viewer json-viewer theme iterables" }, { "githubUrl": "https://github.com/kimxogus/react-native-version-check/tree/master/packages/react-native-version-check", @@ -92012,10 +91412,10 @@ "updatedAt": "2025-05-02T10:01:47Z", "createdAt": "2016-10-15T08:35:35Z", "pushedAt": "2025-05-02T10:01:47Z", - "forks": 182, + "forks": 183, "issues": 41, "subscribers": 17, - "stars": 780, + "stars": 786, "dependencies": 2 }, "name": "react-native-version-check", @@ -92023,7 +91423,6 @@ "isPrivate": false, "description": "A version checker for react-native applications", "topics": [ - "react-native", "android", "ios", "version-check", @@ -92042,12 +91441,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-version-check", "npm": { - "downloads": 206760, - "weekDownloads": 33641, + "downloads": 185181, + "weekDownloads": 43320, "size": 33756, "latestRelease": "3.5.0", "latestReleaseDate": "2025-05-02T10:06:21.963Z" @@ -92058,8 +91458,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.138, - "topicSearchString": "react-native android ios version-check version app-version market-version app-store-version" + "popularity": 0.199, + "topicSearchString": "android ios version-check version app-version market-version app-store-version" }, { "githubUrl": "https://github.com/kimxogus/react-native-version-check/tree/master/packages/react-native-version-check-expo", @@ -92081,10 +91481,10 @@ "updatedAt": "2025-05-02T10:01:47Z", "createdAt": "2016-10-15T08:35:35Z", "pushedAt": "2025-05-02T10:01:47Z", - "forks": 182, + "forks": 183, "issues": 41, "subscribers": 17, - "stars": 780, + "stars": 786, "dependencies": 3 }, "name": "react-native-version-check-expo", @@ -92092,7 +91492,6 @@ "isPrivate": false, "description": "A version checker for react-native expo applications", "topics": [ - "react-native", "expo", "android", "ios", @@ -92112,12 +91511,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-version-check-expo", "npm": { - "downloads": 36996, - "weekDownloads": 5368, + "downloads": 25058, + "weekDownloads": 6156, "size": 9633, "latestRelease": "3.5.0", "latestReleaseDate": "2025-05-02T10:06:23.734Z" @@ -92128,8 +91528,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.123, - "topicSearchString": "react-native expo android ios version-check version app-version market-version app-store-version" + "popularity": 0.209, + "topicSearchString": "expo android ios version-check version app-version market-version app-store-version" }, { "githubUrl": "https://github.com/kevinstumpf/react-native-signature-pad", @@ -92153,7 +91553,7 @@ "updatedAt": "2022-09-20T16:40:02Z", "createdAt": "2016-02-24T02:31:17Z", "pushedAt": "2022-09-20T16:40:02Z", - "forks": 144, + "forks": 143, "issues": 2, "subscribers": 14, "stars": 277, @@ -92164,8 +91564,7 @@ "isPrivate": false, "description": "React Native wrapper around szimek's Canvas based Signature Pad", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "signature", @@ -92183,13 +91582,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-signature-pad", "npm": { - "downloads": 2233, - "weekDownloads": 527, + "downloads": 1410, + "weekDownloads": 268, "size": 23386, "latestRelease": "0.1.2", "latestReleaseDate": "2022-09-20T16:40:45.676Z" @@ -92200,8 +91600,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.549, - "topicSearchString": "react-native react-component ios android signature pad signaturepad canvas" + "popularity": -0.588, + "topicSearchString": "component ios android signature pad signaturepad canvas" }, { "githubUrl": "https://github.com/Richou/react-native-android-location-enabler", @@ -92226,10 +91626,10 @@ "updatedAt": "2025-07-28T20:42:33Z", "createdAt": "2016-12-05T21:58:55Z", "pushedAt": "2025-07-28T20:42:33Z", - "forks": 47, - "issues": 27, + "forks": 48, + "issues": 28, "subscribers": 8, - "stars": 212, + "stars": 213, "dependencies": 0 }, "name": "react-native-android-location-enabler", @@ -92238,7 +91638,6 @@ "registry": "https://registry.npmjs.org/", "description": "Display a GoogleMap like android popup to ask for user to enable location services if disabled", "topics": [ - "react-native", "android" ], "license": { @@ -92251,23 +91650,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-android-location-enabler", "npm": { - "downloads": 121629, - "weekDownloads": 17181, + "downloads": 114554, + "weekDownloads": 23718, "size": 22104, "latestRelease": "3.0.1", "latestReleaseDate": "2025-07-28T20:44:23.473Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.12, - "topicSearchString": "react-native android" + "popularity": 0.176, + "topicSearchString": "android" }, { "githubUrl": "https://github.com/Mhp23/react-native-full-responsive", @@ -92314,7 +91714,6 @@ "registry": "https://registry.npmjs.org/", "description": "Create a fully responsive React Native app for all supported platforms", "topics": [ - "react-native", "responsive", "responsive-ui", "responsive-font", @@ -92326,7 +91725,6 @@ "media-query", "responsive-size", "responsiveness", - "responsiveness-react-native", "usestyle" ], "license": { @@ -92339,22 +91737,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-full-responsive", "npm": { - "downloads": 2853, - "weekDownloads": 468, + "downloads": 3068, + "weekDownloads": 538, "size": 142032, "latestRelease": "2.4.5", "latestReleaseDate": "2025-07-06T17:47:47.823Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": 0.139, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.149, + "topicSearchString": "responsive responsive-ui responsive-font full-responsive responsive-scale responsive-layout responsive-font-size responsive-dimensions media-query responsive-size responsiveness usestyle" }, { "githubUrl": "https://github.com/xmtp/xmtp-react-native", @@ -92367,7 +91764,7 @@ "github": { "urls": { "repo": "https://github.com/xmtp/xmtp-react-native", - "homepage": null + "homepage": "https://xmtp.github.io/xmtp-react-native/" }, "stats": { "hasIssues": true, @@ -92375,13 +91772,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-29T21:22:45Z", + "updatedAt": "2025-10-21T00:23:41Z", "createdAt": "2023-04-21T22:58:15Z", - "pushedAt": "2025-08-29T21:22:45Z", - "forks": 26, + "pushedAt": "2025-10-21T00:23:41Z", + "forks": 28, "issues": 43, - "subscribers": 19, - "stars": 54, + "subscribers": 17, + "stars": 55, "dependencies": 8 }, "name": "@xmtp/react-native-sdk", @@ -92389,7 +91786,6 @@ "isPrivate": false, "description": "A package you can use to build with XMTP in a React Native or Expo app.", "topics": [ - "react-native", "expo", "xmtp-sdk", "xmtp" @@ -92404,22 +91800,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 610, - "weekDownloads": 61, - "size": 1182918, - "latestRelease": "4.4.0", - "latestReleaseDate": "2025-08-26T01:12:35.386Z" + "downloads": 3872, + "weekDownloads": 236, + "size": 1188013, + "latestRelease": "5.0.5", + "latestReleaseDate": "2025-10-11T01:10:04.515Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.665, - "topicSearchString": "react-native expo xmtp-sdk xmtp" + "popularity": 0.052, + "topicSearchString": "expo xmtp-sdk xmtp" }, { "githubUrl": "https://github.com/powersync-ja/powersync-js/tree/main/packages/react-native", @@ -92442,13 +91840,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-04T11:10:37Z", + "updatedAt": "2025-10-03T09:36:34Z", "createdAt": "2023-10-03T15:17:51Z", - "pushedAt": "2025-09-04T11:10:37Z", - "forks": 55, - "issues": 31, + "pushedAt": "2025-10-03T09:36:34Z", + "forks": 58, + "issues": 28, "subscribers": 11, - "stars": 522, + "stars": 536, "dependencies": 2 }, "name": "@powersync/react-native", @@ -92473,14 +91871,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 15575, - "weekDownloads": 3103, - "size": 1313493, - "latestRelease": "1.24.2", - "latestReleaseDate": "2025-09-04T11:12:51.350Z" + "downloads": 20574, + "weekDownloads": 5138, + "size": 1313338, + "latestRelease": "1.25.1", + "latestReleaseDate": "2025-10-03T09:38:41.438Z" }, "score": 57, "matchingScoreModifiers": [ @@ -92488,7 +91887,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.169, + "popularity": 0.212, "topicSearchString": "data-sync offline-first sqlite real-time-data-stream live-data" }, { @@ -92519,7 +91918,7 @@ "forks": 29, "issues": 4, "subscribers": 9, - "stars": 877, + "stars": 880, "dependencies": 0 }, "name": "swiftui-react-native", @@ -92527,7 +91926,6 @@ "isPrivate": false, "description": "Bringing SwiftUI features to your React Native app. It's like if React Native and SwiftUI had a child.", "topics": [ - "react-native", "swiftui" ], "license": { @@ -92540,12 +91938,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "swiftui-react-native", "npm": { - "downloads": 1798, - "weekDownloads": 201, + "downloads": 1040, + "weekDownloads": 208, "size": 6657436, "latestRelease": "6.3.3", "latestReleaseDate": "2024-11-13T23:50:45.390Z" @@ -92556,8 +91956,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.095, - "topicSearchString": "react-native swiftui" + "popularity": 0.17, + "topicSearchString": "swiftui" }, { "githubUrl": "https://github.com/kuatsu/react-native-cloud-storage/tree/master/packages/react-native-cloud-storage", @@ -92568,6 +91968,7 @@ "android": true, "web": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/kuatsu/react-native-cloud-storage", @@ -92583,9 +91984,9 @@ "createdAt": "2023-04-03T20:47:52Z", "pushedAt": "2025-08-25T13:54:51Z", "forks": 17, - "issues": 5, + "issues": 4, "subscribers": 3, - "stars": 228, + "stars": 234, "dependencies": 0 }, "name": "react-native-cloud-storage", @@ -92594,7 +91995,6 @@ "registry": "https://registry.npmjs.org/", "description": "☁️ Save to & read from iCloud and Google Drive using React Native", "topics": [ - "react-native", "ios", "android", "icloud", @@ -92611,24 +92011,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-cloud-storage", "npm": { - "downloads": 8437, - "weekDownloads": 1464, + "downloads": 11287, + "weekDownloads": 1747, "size": 395217, "latestRelease": "2.3.0", "latestReleaseDate": "2025-06-14T14:10:46.382Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.148, - "topicSearchString": "react-native ios android icloud google-drive file-system" + "popularity": 0.132, + "topicSearchString": "ios android icloud google-drive file-system" }, { "githubUrl": "https://github.com/Malaa-tech/expo-squircle-view", @@ -92652,10 +92051,10 @@ "updatedAt": "2025-04-11T10:31:25Z", "createdAt": "2024-01-17T22:24:33Z", "pushedAt": "2025-04-11T10:31:25Z", - "forks": 4, + "forks": 7, "issues": 3, "subscribers": 2, - "stars": 83, + "stars": 87, "dependencies": 0 }, "name": "expo-squircle-view", @@ -92663,7 +92062,6 @@ "isPrivate": false, "description": "A native implementation for figma corner smoothing (Squircle Shape) for react native expo apps ⏹️", "topics": [ - "react-native", "expo", "expo-squircle-view", "exposquircleview" @@ -92678,22 +92076,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-squircle-view", "npm": { - "downloads": 3911, - "weekDownloads": 519, + "downloads": 4701, + "weekDownloads": 1014, "size": 74605, "latestRelease": "1.1.0", "latestReleaseDate": "2024-08-24T11:42:50.617Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.113, - "topicSearchString": "react-native expo expo-squircle-view exposquircleview" + "popularity": 0.183, + "topicSearchString": "expo expo-squircle-view exposquircleview" }, { "githubUrl": "https://github.com/AnkiPro/react-native-canvas-view", @@ -92731,7 +92131,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native canvas drawing view for iOS", "topics": [ - "react-native", "ios", "android" ], @@ -92745,11 +92144,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 40, - "weekDownloads": 22, + "downloads": 26, + "weekDownloads": 10, "size": 30334, "latestRelease": "1.0.0", "latestReleaseDate": "2024-01-11T10:23:17.415Z" @@ -92759,8 +92160,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.511, - "topicSearchString": "react-native ios android" + "popularity": -0.667, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/AnkiPro/react-native-file-open", @@ -92795,7 +92196,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native file opening listener for iOS", "topics": [ - "react-native", "ios", "android" ], @@ -92809,11 +92209,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 39, - "weekDownloads": 22, + "downloads": 26, + "weekDownloads": 11, "size": 16803, "latestRelease": "1.0.0", "latestReleaseDate": "2024-01-11T10:09:20.867Z" @@ -92823,8 +92225,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.511, - "topicSearchString": "react-native ios android" + "popularity": -0.633, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/AnkiPro/react-native-window-resize", @@ -92863,7 +92265,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native window resizer for iOS", "topics": [ - "react-native", "ios", "android" ], @@ -92877,11 +92278,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 71, - "weekDownloads": 22, + "downloads": 22, + "weekDownloads": 9, "size": 20939, "latestRelease": "1.0.0", "latestReleaseDate": "2024-01-11T10:19:40.289Z" @@ -92891,8 +92294,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.725, - "topicSearchString": "react-native ios android" + "popularity": -0.64, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/iChengbo/react-native-imagemin-asset-plugin", @@ -92931,7 +92334,6 @@ "isPrivate": false, "description": "React Native plugin for compressing image assets in builds. 用于在项目构建阶段自动压缩图片资源的RN插件。", "topics": [ - "react-native", "metro", "compress", "image", @@ -92949,12 +92351,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-imagemin-asset-plugin", "npm": { - "downloads": 1326, - "weekDownloads": 427, + "downloads": 1104, + "weekDownloads": 250, "size": 16480, "latestRelease": "2.0.0", "latestReleaseDate": "2024-01-03T01:54:53.677Z" @@ -92964,8 +92367,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.024, - "topicSearchString": "react-native metro compress image assetplugin imagemin asset-plugin" + "popularity": -0.057, + "topicSearchString": "metro compress image assetplugin imagemin asset-plugin" }, { "githubUrl": "https://github.com/Malaa-tech/expo-custom-assets", @@ -92975,6 +92378,8 @@ "ios": true, "android": true, "dev": true, + "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Malaa-tech/expo-custom-assets", @@ -92986,11 +92391,11 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-05T07:47:07Z", + "updatedAt": "2025-10-02T07:09:28Z", "createdAt": "2024-01-24T20:20:28Z", - "pushedAt": "2025-08-05T07:47:07Z", + "pushedAt": "2025-10-02T07:09:28Z", "forks": 10, - "issues": 3, + "issues": 2, "subscribers": 4, "stars": 67, "dependencies": 1 @@ -93000,7 +92405,6 @@ "isPrivate": false, "description": "Expo plugin to add custom assets to native codebase", "topics": [ - "react", "expo", "config-plugins", "prebuild" @@ -93015,22 +92419,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-custom-assets", "npm": { - "downloads": 30235, - "weekDownloads": 5156, + "downloads": 33890, + "weekDownloads": 8043, "size": 10699, "latestRelease": "1.5.0", "latestReleaseDate": "2025-08-05T07:47:19.143Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.145, - "topicSearchString": "react expo config-plugins prebuild" + "popularity": 0.202, + "topicSearchString": "expo config-plugins prebuild" }, { "githubUrl": "https://github.com/ShivamRawat0l/react-native-loader-collection", @@ -93065,7 +92471,6 @@ "registry": "https://registry.npmjs.org/", "description": "Collection of loaders implemented in react native using reanimated library", "topics": [ - "react-native", "ios", "android" ], @@ -93079,13 +92484,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-loader-collection", "npm": { - "downloads": 567, - "weekDownloads": 100, + "downloads": 549, + "weekDownloads": 90, "size": 1463934, "latestRelease": "0.8.3", "latestReleaseDate": "2022-05-02T07:47:33.364Z" @@ -93095,8 +92501,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.6, - "topicSearchString": "react-native ios android" + "popularity": -1.61, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/rn-elementary/menu", @@ -93129,7 +92535,6 @@ "registry": "https://registry.npmjs.org/", "description": "Swift UI menu picker style in React Native ( Natively ) Only Support iOS 14+ ", "topics": [ - "react-native", "ios", "android" ], @@ -93143,11 +92548,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 99, - "weekDownloads": 11, + "downloads": 153, + "weekDownloads": 18, "size": 33117, "latestRelease": "0.1.3", "latestReleaseDate": "2024-02-09T10:24:03.168Z" @@ -93157,8 +92564,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.904, - "topicSearchString": "react-native ios android" + "popularity": -0.9, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/DevChanQ/react-native-svg-editor", @@ -93184,7 +92591,7 @@ "forks": 1, "issues": 0, "subscribers": 1, - "stars": 22, + "stars": 23, "dependencies": 6 }, "name": "react-native-svg-editor", @@ -93202,11 +92609,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-svg-editor", "npm": { - "downloads": 5, + "downloads": 161, "weekDownloads": 0, "size": 8076598, "latestRelease": "0.1.6", @@ -93244,13 +92652,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-05T08:31:13Z", + "updatedAt": "2025-10-16T21:41:46Z", "createdAt": "2023-11-20T08:24:03Z", - "pushedAt": "2025-09-05T08:31:13Z", - "forks": 91, - "issues": 46, + "pushedAt": "2025-10-16T21:41:46Z", + "forks": 94, + "issues": 45, "subscribers": 42, - "stars": 1176, + "stars": 1210, "dependencies": 0 }, "name": "@expensify/react-native-live-markdown", @@ -93259,7 +92667,6 @@ "registry": "https://registry.npmjs.org/", "description": "Drop-in replacement for React Native's TextInput component with Markdown formatting.", "topics": [ - "react-native", "ios", "android", "markdown", @@ -93275,24 +92682,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 82279, - "weekDownloads": 10175, - "size": 734945, - "latestRelease": "0.1.303", - "latestReleaseDate": "2025-09-05T08:31:27.965Z" + "downloads": 80545, + "weekDownloads": 15482, + "size": 756154, + "latestRelease": "0.1.309", + "latestReleaseDate": "2025-10-16T21:42:02.426Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.105, - "topicSearchString": "react-native ios android markdown textinput" + "popularity": 0.163, + "topicSearchString": "ios android markdown textinput" }, { "githubUrl": "https://github.com/oktaysenkan/monicon/tree/main/packages/native", @@ -93319,8 +92727,8 @@ "pushedAt": "2025-01-16T16:07:06Z", "forks": 12, "issues": 6, - "subscribers": 2, - "stars": 500, + "subscribers": 1, + "stars": 502, "dependencies": 3 }, "name": "@monicon/native", @@ -93330,11 +92738,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1754, - "weekDownloads": 173, + "downloads": 4712, + "weekDownloads": 776, "size": 9813, "latestRelease": "1.2.2", "latestReleaseDate": "2025-01-16T16:12:16.814Z" @@ -93345,7 +92754,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.084, + "popularity": 0.14, "topicSearchString": "" }, { @@ -93371,7 +92780,7 @@ "pushedAt": "2024-01-26T01:33:13Z", "forks": 0, "issues": 0, - "subscribers": 3, + "subscribers": 2, "stars": 42, "dependencies": 1 }, @@ -93381,7 +92790,6 @@ "registry": "https://registry.npmjs.org/", "description": "Fast trie implementation written in C++ using jsi", "topics": [ - "react-native", "ios", "android", "fast", @@ -93399,12 +92807,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-fast-trie", "npm": { - "downloads": 1257, - "weekDownloads": 135, + "downloads": 863, + "weekDownloads": 141, "size": 281741, "latestRelease": "0.2.1", "latestReleaseDate": "2024-01-23T21:12:15.499Z" @@ -93414,8 +92824,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.092, - "topicSearchString": "react-native ios android fast jsi search trie" + "popularity": -0.611, + "topicSearchString": "ios android fast jsi search trie" }, { "githubUrl": "https://github.com/zacharyfmarion/react-native-heap-profiler", @@ -93441,8 +92851,8 @@ "pushedAt": "2024-01-27T20:38:39Z", "forks": 0, "issues": 0, - "subscribers": 3, - "stars": 7, + "subscribers": 2, + "stars": 8, "dependencies": 2 }, "name": "react-native-heap-profiler", @@ -93451,7 +92861,6 @@ "registry": "https://registry.npmjs.org/", "description": "🔍 Heap profiling for hermes", "topics": [ - "react-native", "ios", "android", "debugging", @@ -93471,12 +92880,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-heap-profiler", "npm": { - "downloads": 44576, - "weekDownloads": 6519, + "downloads": 66, + "weekDownloads": 4, "size": 53074, "latestRelease": "0.2.2", "latestReleaseDate": "2024-01-27T20:38:37.466Z" @@ -93486,8 +92897,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.126, - "topicSearchString": "react-native ios android debugging heap jsi memory observability profiling" + "popularity": -0.947, + "topicSearchString": "ios android debugging heap jsi memory observability profiling" }, { "githubUrl": "https://github.com/ayonshafiul/react-native-reanimated-progress-steps", @@ -93518,7 +92929,7 @@ "pushedAt": "2024-07-11T17:12:49Z", "forks": 1, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 18, "dependencies": 0 }, @@ -93528,7 +92939,6 @@ "registry": "https://registry.npmjs.org/", "description": "Live progress tracking reanimated components for react native projects", "topics": [ - "react-native", "ios", "android" ], @@ -93542,12 +92952,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-reanimated-progress-steps", "npm": { - "downloads": 261, - "weekDownloads": 54, + "downloads": 286, + "weekDownloads": 31, "size": 142286, "latestRelease": "0.3.0", "latestReleaseDate": "2024-05-26T09:04:12.628Z" @@ -93557,8 +92968,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.823, - "topicSearchString": "react-native ios android" + "popularity": -0.907, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/simformSolutionsPvtLtd/react-native-story-view", @@ -93586,9 +92997,9 @@ "createdAt": "2022-05-03T03:11:14Z", "pushedAt": "2024-06-04T04:48:34Z", "forks": 36, - "issues": 13, - "subscribers": 9, - "stars": 248, + "issues": 14, + "subscribers": 8, + "stars": 249, "dependencies": 0 }, "name": "react-native-story-view", @@ -93596,8 +93007,6 @@ "isPrivate": false, "description": "A React Native component to show image and video stories ✨ 🎖", "topics": [ - "react", - "react-native", "typescript", "story-view", "status-view", @@ -93612,8 +93021,7 @@ "android", "ios", "animation", - "react-reaction", - "react-component", + "reaction", "instagram-stories", "library", "stories" @@ -93628,12 +93036,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-story-view", "npm": { - "downloads": 3011, - "weekDownloads": 477, + "downloads": 2830, + "weekDownloads": 580, "size": 230686, "latestRelease": "3.2.0", "latestReleaseDate": "2024-06-04T04:57:17.775Z" @@ -93644,8 +93053,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.135, - "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" + "popularity": 0.174, + "topicSearchString": "typescript story-view status-view rn rn-story-view story status animated-story animated-status gesture-story component android ios animation reaction instagram-stories library stories" }, { "githubUrl": "https://github.com/yaay/react-native-pintyper", @@ -93684,8 +93093,6 @@ "registry": "https://registry.npmjs.org/", "description": "Simple PIN input component for React Native apps.", "topics": [ - "react", - "react-native", "ios", "android", "pin", @@ -93703,12 +93110,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-pintyper", "npm": { - "downloads": 43, - "weekDownloads": 5, + "downloads": 55, + "weekDownloads": 2, "size": 28105, "latestRelease": "0.1.2", "latestReleaseDate": "2024-02-14T11:30:15.574Z" @@ -93718,8 +93126,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.9, - "topicSearchString": "react react-native ios android pin pincode javascript textinput" + "popularity": -0.967, + "topicSearchString": "ios android pin pincode javascript textinput" }, { "githubUrl": "https://github.com/shubhambathe1/react-native-countdown-timer-hooks", @@ -93757,10 +93165,7 @@ "isPrivate": false, "description": "A Countdown Timer Package for React Native Projects.", "topics": [ - "react-native", - "react-component", - "react", - "native", + "component", "mobile", "ios", "android", @@ -93780,12 +93185,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-countdown-timer-hooks", "npm": { - "downloads": 1900, - "weekDownloads": 454, + "downloads": 1558, + "weekDownloads": 279, "size": 311827, "latestRelease": "1.0.5", "latestReleaseDate": "2024-01-24T07:03:17.578Z" @@ -93795,8 +93201,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.203, - "topicSearchString": "react-native react-component react native mobile ios android countdown timer stopwatch reset hooks" + "popularity": 0.152, + "topicSearchString": "component mobile ios android countdown timer stopwatch reset hooks" }, { "githubUrl": "https://github.com/Temzasse/react-modal-sheet", @@ -93805,10 +93211,13 @@ "https://github.com/Temzasse/react-modal-sheet/tree/main/example-ssr" ], "images": [ - "https://raw.githubusercontent.com/Temzasse/react-modal-sheet/main/media/1.gif", - "https://raw.githubusercontent.com/Temzasse/react-modal-sheet/main/media/2.gif", - "https://raw.githubusercontent.com/Temzasse/react-modal-sheet/main/media/3.gif", - "https://raw.githubusercontent.com/Temzasse/react-modal-sheet/main/media/4.gif" + "https://raw.githubusercontent.com/Temzasse/react-modal-sheet/main/media/example-apple-maps.gif", + "https://raw.githubusercontent.com/Temzasse/react-modal-sheet/main/media/example-apple-music.gif", + "https://raw.githubusercontent.com/Temzasse/react-modal-sheet/main/media/example-custom-styles.gif", + "https://raw.githubusercontent.com/Temzasse/react-modal-sheet/main/media/example-keyboard.gif", + "https://raw.githubusercontent.com/Temzasse/react-modal-sheet/main/media/example-scrollable.gif", + "https://raw.githubusercontent.com/Temzasse/react-modal-sheet/main/media/example-slack.gif", + "https://raw.githubusercontent.com/Temzasse/react-modal-sheet/main/media/example-snap-points.gif" ], "ios": true, "android": true, @@ -93823,13 +93232,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T16:02:49Z", + "updatedAt": "2025-10-13T07:18:19Z", "createdAt": "2020-05-17T20:06:18Z", - "pushedAt": "2025-09-12T16:02:49Z", - "forks": 96, - "issues": 17, - "subscribers": 5, - "stars": 1023, + "pushedAt": "2025-10-13T07:18:19Z", + "forks": 97, + "issues": 18, + "subscribers": 4, + "stars": 1050, "dependencies": 1 }, "name": "react-modal-sheet", @@ -93837,7 +93246,6 @@ "isPrivate": false, "description": "Flexible bottom sheet component built with Motion to provide buttery smooth UX while keeping accessibility in mind 🪐", "topics": [ - "react", "modal", "motion", "bottom-sheet", @@ -93855,15 +93263,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-modal-sheet", "npm": { - "downloads": 266652, - "weekDownloads": 40001, - "size": 408733, - "latestRelease": "5.1.2", - "latestReleaseDate": "2025-09-12T16:03:00.759Z" + "downloads": 260713, + "weekDownloads": 60062, + "size": 435518, + "latestRelease": "5.2.1", + "latestReleaseDate": "2025-10-12T17:15:09.541Z" }, "score": 73, "matchingScoreModifiers": [ @@ -93872,8 +93281,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.128, - "topicSearchString": "react modal motion bottom-sheet accessibility framer-motion reactjs" + "popularity": 0.196, + "topicSearchString": "modal motion bottom-sheet accessibility framer-motion reactjs" }, { "githubUrl": "https://github.com/reown-com/appkit-react-native/tree/main/packages/wagmi", @@ -93896,14 +93305,14 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T15:41:27Z", + "updatedAt": "2025-10-08T18:20:53Z", "createdAt": "2023-03-28T14:54:13Z", - "pushedAt": "2025-09-10T15:41:27Z", - "forks": 27, - "issues": 6, - "subscribers": 6, - "stars": 104, - "dependencies": 4 + "pushedAt": "2025-10-08T18:20:53Z", + "forks": 34, + "issues": 3, + "subscribers": 5, + "stars": 111, + "dependencies": 2 }, "name": "@reown/appkit-wagmi-react-native", "fullName": "reown-com/appkit-react-native", @@ -93916,28 +93325,28 @@ "ethereum", "appkit", "walletconnect", - "react-native", "wagmi" ], "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 17145, - "weekDownloads": 3483, - "size": 217794, - "latestRelease": "1.3.2", - "latestReleaseDate": "2025-09-10T15:59:22.051Z" + "downloads": 15949, + "weekDownloads": 4167, + "size": 85769, + "latestRelease": "2.0.1", + "latestReleaseDate": "2025-10-08T18:47:23.215Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.173, - "topicSearchString": "web3 appkit crypto ethereum appkit walletconnect react-native wagmi" + "popularity": 0.222, + "topicSearchString": "web3 appkit crypto ethereum appkit walletconnect wagmi" }, { "githubUrl": "https://github.com/intellidev1991/react-native-image-slider-box", @@ -93967,7 +93376,7 @@ "forks": 93, "issues": 60, "subscribers": 4, - "stars": 310, + "stars": 312, "dependencies": 1 }, "name": "react-native-image-slider-box", @@ -93977,18 +93386,15 @@ "topics": [ "image-slider-box", "image-slider", - "react-native", "slider", "reactnative", - "react-component", "component", - "react", "mobile", "ios", "android", "ui", "image-paging-slider", - "react-components", + "components", "image", "library" ], @@ -94002,12 +93408,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-image-slider-box", "npm": { - "downloads": 10120, - "weekDownloads": 1487, + "downloads": 9139, + "weekDownloads": 2168, "size": 529818, "latestRelease": "2.0.7", "latestReleaseDate": "2022-10-14T05:52:37.363Z" @@ -94018,8 +93425,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.125, - "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" + "popularity": 0.202, + "topicSearchString": "image-slider-box image-slider slider reactnative component mobile ios android ui image-paging-slider components image library" }, { "githubUrl": "https://github.com/carsonwah/react-native-push-notification-popup", @@ -94054,9 +93461,6 @@ "isPrivate": false, "description": "A component for presenting your own push notification in react-native app", "topics": [ - "react", - "react-native", - "react-component", "component", "push-notification", "ios", @@ -94076,12 +93480,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-push-notification-popup", "npm": { - "downloads": 5464, - "weekDownloads": 1076, + "downloads": 5495, + "weekDownloads": 1161, "size": 24202, "latestRelease": "1.7.0", "latestReleaseDate": "2023-08-17T15:22:28.217Z" @@ -94092,8 +93498,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.167, - "topicSearchString": "react react-native react-component component push-notification ios android modal popup dialog javascript" + "popularity": -0.57, + "topicSearchString": "component push-notification ios android modal popup dialog javascript" }, { "githubUrl": "https://github.com/SHISME/react-native-draggable-grid", @@ -94116,10 +93522,10 @@ "updatedAt": "2025-06-15T14:13:39Z", "createdAt": "2018-09-12T12:12:48Z", "pushedAt": "2025-06-15T14:13:39Z", - "forks": 89, - "issues": 35, + "forks": 90, + "issues": 37, "subscribers": 6, - "stars": 346, + "stars": 348, "dependencies": 0 }, "name": "react-native-draggable-grid", @@ -94130,11 +93536,11 @@ "drag", "sortable", "grid", - "react-native", "component", "draggable" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -94143,12 +93549,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-draggable-grid", "npm": { - "downloads": 25971, - "weekDownloads": 4654, + "downloads": 24234, + "weekDownloads": 5726, "size": 61257, "latestRelease": "2.2.2", "latestReleaseDate": "2025-06-15T14:14:03.273Z" @@ -94158,8 +93565,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.152, - "topicSearchString": "drag sortable grid react-native component draggable" + "popularity": 0.201, + "topicSearchString": "drag sortable grid component draggable" }, { "githubUrl": "https://github.com/jkomyno/react-native-user-inactivity", @@ -94181,7 +93588,7 @@ "pushedAt": "2021-10-03T09:44:56Z", "forks": 52, "issues": 14, - "subscribers": 7, + "subscribers": 6, "stars": 217, "dependencies": 1 }, @@ -94190,8 +93597,6 @@ "isPrivate": false, "description": "Simple component that alerts when the user is inactive (i.e. when the App surface hasn't been touched for X ms)", "topics": [ - "react", - "react-native", "user", "typescript", "tracking", @@ -94209,13 +93614,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-user-inactivity", "npm": { - "downloads": 38979, - "weekDownloads": 7216, + "downloads": 33575, + "weekDownloads": 8104, "size": 17851, "latestRelease": "1.2.0", "latestReleaseDate": "2021-02-02T09:36:48.629Z" @@ -94226,8 +93632,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, - "topicSearchString": "react react-native user typescript tracking inactivity component hacktoberfest" + "popularity": -0.545, + "topicSearchString": "user typescript tracking inactivity component hacktoberfest" }, { "githubUrl": "https://github.com/tony-xlh/vision-camera-cropper", @@ -94250,10 +93656,10 @@ "updatedAt": "2024-09-05T02:07:01Z", "createdAt": "2024-02-21T02:05:44Z", "pushedAt": "2024-09-05T02:07:01Z", - "forks": 10, + "forks": 13, "issues": 5, - "subscribers": 5, - "stars": 47, + "subscribers": 4, + "stars": 48, "dependencies": 0 }, "name": "vision-camera-cropper", @@ -94262,7 +93668,6 @@ "registry": "https://registry.npmjs.org/", "description": "A vision camera frame processor plugin for cropping", "topics": [ - "react-native", "ios", "android", "cropper", @@ -94279,12 +93684,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "vision-camera-cropper", "npm": { - "downloads": 4194, - "weekDownloads": 446, + "downloads": 4193, + "weekDownloads": 914, "size": 79427, "latestRelease": "1.3.1", "latestReleaseDate": "2024-09-04T05:30:08.641Z" @@ -94294,8 +93701,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.09, - "topicSearchString": "react-native ios android cropper image-processing vision-camera" + "popularity": 0.185, + "topicSearchString": "ios android cropper image-processing vision-camera" }, { "githubUrl": "https://github.com/MarceloPrado/flash-calendar/tree/main/packages/flash-calendar", @@ -94324,9 +93731,9 @@ "createdAt": "2024-02-09T11:27:51Z", "pushedAt": "2024-12-04T15:56:20Z", "forks": 47, - "issues": 11, + "issues": 10, "subscribers": 7, - "stars": 1343, + "stars": 1362, "dependencies": 1 }, "name": "@marceloterreiro/flash-calendar", @@ -94344,11 +93751,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 61952, - "weekDownloads": 10091, + "downloads": 51126, + "weekDownloads": 12261, "size": 499107, "latestRelease": "1.3.0", "latestReleaseDate": "2024-12-04T15:57:00.605Z" @@ -94360,7 +93768,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.138, + "popularity": 0.204, "topicSearchString": "" }, { @@ -94397,7 +93805,6 @@ "registry": "https://registry.npmjs.org/", "description": "Package used rotate images from base64 or path", "topics": [ - "react-native", "ios", "android" ], @@ -94411,21 +93818,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 1721, - "weekDownloads": 264, + "downloads": 2029, + "weekDownloads": 453, "size": 27523, "latestRelease": "0.2.1", "latestReleaseDate": "2024-03-01T15:55:28.843Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.119, - "topicSearchString": "react-native ios android" + "popularity": -0.06, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/kesha-antonov/react-native-action-cable", @@ -94448,8 +93858,8 @@ "pushedAt": "2025-09-01T05:52:09Z", "forks": 24, "issues": 0, - "subscribers": 5, - "stars": 57, + "subscribers": 4, + "stars": 58, "dependencies": 1 }, "name": "@kesha-antonov/react-native-action-cable", @@ -94459,10 +93869,8 @@ "topics": [ "rails", "actioncable", - "react-native", "reactnative", "websockets", - "react", "action-cable", "rails5", "rails6", @@ -94478,22 +93886,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8434, - "weekDownloads": 1444, + "downloads": 10392, + "weekDownloads": 3346, "size": 33857, "latestRelease": "1.1.5", "latestReleaseDate": "2024-03-02T20:11:38.778Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.146, - "topicSearchString": "rails actioncable react-native reactnative websockets react action-cable rails5 rails6 realtime" + "popularity": 0.274, + "topicSearchString": "rails actioncable reactnative websockets action-cable rails5 rails6 realtime" }, { "githubUrl": "https://github.com/codeherence/react-native-header", @@ -94520,13 +93928,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-02-09T23:56:40Z", + "updatedAt": "2025-09-29T03:19:41Z", "createdAt": "2023-03-20T06:18:17Z", - "pushedAt": "2025-02-09T23:56:40Z", - "forks": 34, - "issues": 2, + "pushedAt": "2025-09-29T03:19:41Z", + "forks": 35, + "issues": 1, "subscribers": 2, - "stars": 398, + "stars": 437, "dependencies": 1 }, "name": "@codeherence/react-native-header", @@ -94535,7 +93943,6 @@ "registry": "https://registry.npmjs.org/", "description": "A high-performance, cross-platform animated header component for React Native applications.", "topics": [ - "react-native", "ios", "android" ], @@ -94549,23 +93956,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8401, - "weekDownloads": 1382, - "size": 316158, - "latestRelease": "0.14.0", - "latestReleaseDate": "2024-10-18T22:28:46.417Z" + "downloads": 7207, + "weekDownloads": 1687, + "size": 293002, + "latestRelease": "1.0.0", + "latestReleaseDate": "2025-09-29T03:19:40.016Z" }, - "score": 41, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.14, - "topicSearchString": "react-native ios android" + "popularity": 0.199, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/bluesky-social/react-native-uitextview", @@ -94584,13 +93991,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-06-23T17:10:38Z", + "updatedAt": "2025-10-02T08:24:14Z", "createdAt": "2024-03-03T22:14:04Z", - "pushedAt": "2025-06-23T17:10:38Z", + "pushedAt": "2025-10-02T08:24:14Z", "forks": 34, "issues": 7, - "subscribers": 10, - "stars": 363, + "subscribers": 9, + "stars": 370, "dependencies": 0 }, "name": "react-native-uitextview", @@ -94599,7 +94006,6 @@ "registry": "https://registry.npmjs.org/", "description": "A UITextView implementation for React Native that allows for full text highlighting/selection, native translations, etc.", "topics": [ - "react-native", "ios", "android", "expo", @@ -94616,23 +94022,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-uitextview", "npm": { - "downloads": 44023, - "weekDownloads": 7574, + "downloads": 44832, + "weekDownloads": 9739, "size": 137174, "latestRelease": "2.1.0-rc.0", "latestReleaseDate": "2025-06-20T04:41:04.514Z" }, - "score": 51, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.146, - "topicSearchString": "react-native ios android expo text uitextvi" + "popularity": 0.185, + "topicSearchString": "ios android expo text uitextvi" }, { "githubUrl": "https://github.com/binaryminds/react-native-sse", @@ -94653,10 +94061,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": 10, - "stars": 313, + "subscribers": 9, + "stars": 326, "dependencies": 0 }, "name": "react-native-sse", @@ -94664,7 +94072,6 @@ "isPrivate": false, "description": "Event Source implementation for React Native. Server-Sent Events (SSE) for iOS and Android 🚀", "topics": [ - "react-native", "expo", "event-source", "sse", @@ -94686,12 +94093,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sse", "npm": { - "downloads": 230694, - "weekDownloads": 46013, + "downloads": 246055, + "weekDownloads": 55851, "size": 24084, "latestRelease": "1.2.1", "latestReleaseDate": "2024-03-05T10:37:27.135Z" @@ -94701,8 +94109,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.17, - "topicSearchString": "react-native expo event-source sse server-sent-events chatgpt stream ios android eventsource typescript" + "popularity": 0.193, + "topicSearchString": "expo event-source sse server-sent-events chatgpt stream ios android eventsource typescript" }, { "githubUrl": "https://github.com/Acetyld/expo-foreground-actions", @@ -94725,7 +94133,7 @@ "updatedAt": "2024-03-06T19:53:50Z", "createdAt": "2023-10-19T07:08:45Z", "pushedAt": "2024-03-06T19:53:50Z", - "forks": 6, + "forks": 7, "issues": 3, "subscribers": 4, "stars": 60, @@ -94736,7 +94144,6 @@ "isPrivate": false, "description": "Start actions that continue to run in the grace period after the user switches apps.", "topics": [ - "react-native", "expo", "expo-modules-api", "expo-modules", @@ -94744,7 +94151,6 @@ "expoforegroundactions", "javascript", "kotlin", - "react", "swift", "typescript" ], @@ -94758,12 +94164,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-foreground-actions", "npm": { - "downloads": 73, - "weekDownloads": 10, + "downloads": 628, + "weekDownloads": 12, "size": 2883980, "latestRelease": "0.4.5", "latestReleaseDate": "2024-03-06T19:55:08.307Z" @@ -94773,8 +94181,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.632, - "topicSearchString": "react-native expo expo-modules-api expo-modules expo-foreground-actions expoforegroundactions javascript kotlin react swift typescript" + "popularity": -0.734, + "topicSearchString": "expo expo-modules-api expo-modules expo-foreground-actions expoforegroundactions javascript kotlin swift typescript" }, { "githubUrl": "https://github.com/FerRiv3ra/rn-custom-alert-prompt", @@ -94792,13 +94200,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-04-23T10:57:05Z", + "updatedAt": "2025-09-14T11:14:07Z", "createdAt": "2024-03-09T13:41:17Z", - "pushedAt": "2025-04-23T10:57:05Z", + "pushedAt": "2025-09-14T11:14:07Z", "forks": 1, "issues": 0, "subscribers": 1, - "stars": 17, + "stars": 21, "dependencies": 0 }, "name": "rn-custom-alert-prompt", @@ -94806,7 +94214,6 @@ "isPrivate": false, "description": "ReactNative Open Source library, includes customizable Alert and Prompt with no third party dependencies.", "topics": [ - "react-native", "alert", "prompt", "async", @@ -94828,22 +94235,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-custom-alert-prompt", "npm": { - "downloads": 181, - "weekDownloads": 15, - "size": 58486, - "latestRelease": "1.1.5", - "latestReleaseDate": "2025-04-23T10:58:01.616Z" + "downloads": 335, + "weekDownloads": 84, + "size": 60411, + "latestRelease": "1.1.6", + "latestReleaseDate": "2025-09-14T11:17:03.181Z" }, "score": 43, "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.929, - "topicSearchString": "react-native alert prompt async promise dialog modal ui-component user-interaction simple lightweight" + "popularity": -0.785, + "topicSearchString": "alert prompt async promise dialog modal ui-component user-interaction simple lightweight" }, { "githubUrl": "https://github.com/FerRiv3ra/rn-segmented-tab-controls", @@ -94861,9 +94269,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-04-22T17:10:43Z", + "updatedAt": "2025-09-14T12:10:14Z", "createdAt": "2024-01-26T13:39:32Z", - "pushedAt": "2025-04-22T17:10:43Z", + "pushedAt": "2025-09-14T12:10:14Z", "forks": 0, "issues": 0, "subscribers": 1, @@ -94875,7 +94283,6 @@ "isPrivate": false, "description": "ReactNative Open Source library, includes Segmented and Tab controls with no third party dependencies.", "topics": [ - "react-native", "segmented-control", "tab-control", "tabs", @@ -94898,22 +94305,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-segmented-tab-controls", "npm": { - "downloads": 19, - "weekDownloads": 10, - "size": 20643, - "latestRelease": "1.0.5", - "latestReleaseDate": "2025-04-22T17:13:15.562Z" + "downloads": 33, + "weekDownloads": 1, + "size": 20877, + "latestRelease": "1.0.6", + "latestReleaseDate": "2025-09-14T12:11:28.955Z" }, "score": 43, "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.5, - "topicSearchString": "react-native segmented-control tab-control tabs segmented-tabs ui-component navigation user-interface tabs-navigation segmented-navigation simple lightweight" + "popularity": -0.971, + "topicSearchString": "segmented-control tab-control tabs segmented-tabs ui-component navigation user-interface tabs-navigation segmented-navigation simple lightweight" }, { "githubUrl": "https://github.com/imnapo/react-native-cn-quill", @@ -94951,7 +94359,6 @@ "registry": "https://registry.npmjs.org/", "description": "Quill rich-text editor for react-native", "topics": [ - "react-native", "ios", "android", "rich-text", @@ -94969,12 +94376,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-cn-quill", "npm": { - "downloads": 18246, - "weekDownloads": 2873, + "downloads": 17372, + "weekDownloads": 4138, "size": 3465282, "latestRelease": "0.7.20", "latestReleaseDate": "2025-02-10T08:25:48.297Z" @@ -94985,8 +94393,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.134, - "topicSearchString": "react-native ios android rich-text wysiwyg-editor quill editor" + "popularity": 0.202, + "topicSearchString": "ios android rich-text wysiwyg-editor quill editor" }, { "githubUrl": "https://github.com/candlefinance/react-native-purchase-kit", @@ -95011,8 +94419,8 @@ "pushedAt": "2023-10-28T18:38:06Z", "forks": 0, "issues": 2, - "subscribers": 1, - "stars": 12, + "subscribers": 0, + "stars": 13, "dependencies": 0 }, "name": "react-native-purchase-kit", @@ -95021,7 +94429,6 @@ "registry": "https://registry.npmjs.org/", "description": "StoreKit 2 for React Native ", "topics": [ - "react-native", "ios", "android", "storekit2", @@ -95037,11 +94444,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-purchase-kit", "npm": { - "downloads": 0, + "downloads": 65, "weekDownloads": 0, "size": 156784, "latestRelease": "0.4.0", @@ -95053,7 +94462,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android storekit2 swift" + "topicSearchString": "ios android storekit2 swift" }, { "githubUrl": "https://github.com/candlefinance/faster-image", @@ -95077,10 +94486,10 @@ "updatedAt": "2025-03-25T07:32:22Z", "createdAt": "2023-03-25T21:09:34Z", "pushedAt": "2025-03-25T07:32:22Z", - "forks": 30, + "forks": 31, "issues": 19, - "subscribers": 7, - "stars": 667, + "subscribers": 6, + "stars": 672, "dependencies": 0 }, "name": "@candlefinance/faster-image", @@ -95089,7 +94498,6 @@ "registry": "https://registry.npmjs.org/", "description": "Fast image loading for React Native backed by performant native libraries.", "topics": [ - "react-native", "ios", "android", "image", @@ -95110,22 +94518,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 25506, - "weekDownloads": 4861, + "downloads": 22036, + "weekDownloads": 5377, "size": 562073, "latestRelease": "1.7.2", "latestReleaseDate": "2024-11-06T14:12:08.078Z" }, - "score": 51, + "score": 41, "matchingScoreModifiers": [ "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.162, - "topicSearchString": "react-native ios android image nuke activityindicator transition coil coil-kotlin cache" + "popularity": 0.207, + "topicSearchString": "ios android image nuke activityindicator transition coil coil-kotlin cache" }, { "githubUrl": "https://github.com/candlefinance/app-icon", @@ -95151,7 +94561,7 @@ "pushedAt": "2023-12-01T15:53:12Z", "forks": 3, "issues": 1, - "subscribers": 1, + "subscribers": 0, "stars": 77, "dependencies": 0 }, @@ -95161,7 +94571,6 @@ "registry": "https://registry.npmjs.org/", "description": "Update your apps icon with React Native using Apple's alternate icons API.", "topics": [ - "react-native", "ios", "android", "app-icon", @@ -95178,11 +94587,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 57, - "weekDownloads": 14, + "downloads": 58, + "weekDownloads": 4, "size": 36512, "latestRelease": "0.4.5", "latestReleaseDate": "2023-12-02T15:09:35.766Z" @@ -95192,8 +94602,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.535, - "topicSearchString": "react-native ios android app-icon new-architecture typescript" + "popularity": -0.688, + "topicSearchString": "ios android app-icon new-architecture typescript" }, { "githubUrl": "https://github.com/candlefinance/react-native-openai", @@ -95218,8 +94628,8 @@ "pushedAt": "2024-11-02T14:51:13Z", "forks": 9, "issues": 6, - "subscribers": 2, - "stars": 125, + "subscribers": 1, + "stars": 126, "dependencies": 0 }, "name": "react-native-openai", @@ -95228,7 +94638,6 @@ "registry": "https://registry.npmjs.org/", "description": "OpenAI API Native bindings for React Native", "topics": [ - "react-native", "ios", "android", "lightweight", @@ -95248,12 +94657,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-openai", "npm": { - "downloads": 839, - "weekDownloads": 124, + "downloads": 1204, + "weekDownloads": 214, "size": 257419, "latestRelease": "0.6.2", "latestReleaseDate": "2024-11-02T14:51:11.785Z" @@ -95263,8 +94673,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.624, - "topicSearchString": "react-native ios android lightweight openai urlsession kotlin ktor swift" + "popularity": 0.151, + "topicSearchString": "ios android lightweight openai urlsession kotlin ktor swift" }, { "githubUrl": "https://github.com/candlefinance/haptics", @@ -95290,8 +94700,8 @@ "pushedAt": "2024-11-02T21:01:06Z", "forks": 4, "issues": 1, - "subscribers": 4, - "stars": 111, + "subscribers": 3, + "stars": 112, "dependencies": 0 }, "name": "@candlefinance/haptics", @@ -95300,7 +94710,6 @@ "registry": "https://registry.npmjs.org/", "description": "Haptics for React Native with support for custom patterns and ahap files.", "topics": [ - "react-native", "ios", "android", "haptics", @@ -95319,11 +94728,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 361, - "weekDownloads": 31, + "downloads": 846, + "weekDownloads": 74, "size": 52237, "latestRelease": "0.3.3", "latestReleaseDate": "2024-04-20T18:31:14.842Z" @@ -95334,7 +94745,7 @@ "Not supporting New Architecture" ], "popularity": -0.676, - "topicSearchString": "react-native ios android haptics ahap corehaptics uifeedbackgenerator uikit" + "topicSearchString": "ios android haptics ahap corehaptics uifeedbackgenerator uikit" }, { "githubUrl": "https://github.com/margelo/react-native-skottie/tree/main/package", @@ -95360,8 +94771,8 @@ "pushedAt": "2025-01-20T09:57:52Z", "forks": 29, "issues": 22, - "subscribers": 10, - "stars": 976, + "subscribers": 9, + "stars": 984, "dependencies": 1 }, "name": "react-native-skottie", @@ -95370,7 +94781,6 @@ "registry": "https://registry.npmjs.org/", "description": "Efficient lottie animations in react native using Skia's Skottie module", "topics": [ - "react-native", "ios", "android" ], @@ -95384,11 +94794,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 127, - "weekDownloads": 20, + "downloads": 333, + "weekDownloads": 50, "size": 314151, "latestRelease": "2.1.4", "latestReleaseDate": "2024-05-06T09:09:02.472Z" @@ -95400,8 +94811,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, - "topicSearchString": "react-native ios android" + "popularity": -0.622, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/ysfzrn/react-native-gif-player", @@ -95440,7 +94851,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Gif View Component", "topics": [ - "react-native", "ios", "android", "gif", @@ -95464,23 +94874,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-gif-player", "npm": { - "downloads": 979, - "weekDownloads": 160, + "downloads": 631, + "weekDownloads": 135, "size": 67240, "latestRelease": "1.0.2", "latestReleaseDate": "2024-04-02T19:52:17.865Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.861, - "topicSearchString": "react-native ios android gif gifs gif-stop gif-loop-count animated-gif gifplayer webp giphy loop tenor" + "popularity": -0.818, + "topicSearchString": "ios android gif gifs gif-stop gif-loop-count animated-gif gifplayer webp giphy loop tenor" }, { "githubUrl": "https://github.com/ExtrieveTechnologies/QuickCapture_react_native", @@ -95516,7 +94927,6 @@ "registry": "https://registry.npmjs.org/", "description": "QuickCapture SDK port for react-native", "topics": [ - "react-native", "ios", "android" ], @@ -95530,11 +94940,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 11, - "weekDownloads": 11, + "downloads": 293, + "weekDownloads": 1, "size": 83252, "latestRelease": "0.0.14", "latestReleaseDate": "2024-08-09T11:07:21.739Z" @@ -95544,8 +94956,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.1, - "topicSearchString": "react-native ios android" + "popularity": -0.997, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/SectionTN/otp-input", @@ -95592,7 +95004,6 @@ "otp-input", "ios", "android", - "react-native", "otp", "input", "authentication", @@ -95622,11 +95033,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 83, - "weekDownloads": 14, + "downloads": 78, + "weekDownloads": 13, "size": 101488, "latestRelease": "0.3.7", "latestReleaseDate": "2024-04-06T22:26:44.687Z" @@ -95637,8 +95049,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.853, - "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" + "popularity": -0.856, + "topicSearchString": "otp-input ios android 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" }, { "githubUrl": "https://github.com/callstack/react-native-windows-hello", @@ -95662,7 +95074,7 @@ "pushedAt": "2024-05-09T18:23:55Z", "forks": 4, "issues": 5, - "subscribers": 10, + "subscribers": 9, "stars": 12, "dependencies": 0 }, @@ -95685,12 +95097,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-windows-hello", "npm": { - "downloads": 62, - "weekDownloads": 3, + "downloads": 315, + "weekDownloads": 40, "size": 54554, "latestRelease": "1.1.0", "latestReleaseDate": "2022-02-21T16:47:15.840Z" @@ -95700,7 +95113,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.957, + "popularity": -0.892, "topicSearchString": "windows hello windows-hello" }, { @@ -95734,10 +95147,7 @@ "isPrivate": false, "description": "React native template ", "topics": [ - "react", - "native", "boilerplate", - "react-native", "starter-kit", "template" ], @@ -95751,17 +95161,16 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false - }, - "npm": { - "size": 680802 + "hasNativeCode": false, + "configPlugin": false }, + "npm": {}, "score": 43, "matchingScoreModifiers": [ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react native boilerplate react-native starter-kit template" + "topicSearchString": "boilerplate starter-kit template" }, { "githubUrl": "https://github.com/lodev09/react-native-true-sheet", @@ -95790,10 +95199,10 @@ "updatedAt": "2025-07-10T22:53:51Z", "createdAt": "2024-03-23T03:42:14Z", "pushedAt": "2025-07-10T22:53:51Z", - "forks": 41, - "issues": 32, + "forks": 44, + "issues": 33, "subscribers": 6, - "stars": 1161, + "stars": 1195, "dependencies": 0 }, "name": "@lodev09/react-native-true-sheet", @@ -95802,11 +95211,9 @@ "registry": "https://registry.npmjs.org/", "description": "The true native bottom sheet experience 💩", "topics": [ - "react-native", "ios", "android", "bottom-sheet", - "native-sheet", "sheet", "modal-sheet" ], @@ -95820,23 +95227,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 53673, - "weekDownloads": 7479, + "downloads": 67923, + "weekDownloads": 17460, "size": 184900, "latestRelease": "2.0.6", "latestReleaseDate": "2025-07-10T18:40:47.533Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.118, - "topicSearchString": "react-native ios android bottom-sheet native-sheet sheet modal-sheet" + "popularity": 0.219, + "topicSearchString": "ios android bottom-sheet sheet modal-sheet" }, { "githubUrl": "https://github.com/dylankenneally/react-native-ssh-sftp", @@ -95860,7 +95268,7 @@ "forks": 10, "issues": 2, "subscribers": 1, - "stars": 19, + "stars": 20, "dependencies": 3 }, "name": "@dylankenneally/react-native-ssh-sftp", @@ -95868,7 +95276,6 @@ "isPrivate": false, "description": "SSH and SFTP client library for React Native", "topics": [ - "react-native", "ssh", "sftp", "sftp-client", @@ -95884,11 +95291,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 401, - "weekDownloads": 76, + "downloads": 734, + "weekDownloads": 44, "size": 117097, "latestRelease": "1.5.20", "latestReleaseDate": "2024-06-19T03:26:25.156Z" @@ -95898,8 +95306,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.838, - "topicSearchString": "react-native ssh sftp sftp-client ssh-client" + "popularity": -0.949, + "topicSearchString": "ssh sftp sftp-client ssh-client" }, { "githubUrl": "https://github.com/RichardRNStudio/react-native-slider-intro", @@ -95940,7 +95348,6 @@ "registry": "https://registry.npmjs.org/", "description": " A simple and full customizable React Native package which implements a unique slider", "topics": [ - "react-native", "ios", "android", "slider", @@ -95952,7 +95359,7 @@ "animation", "mobile", "ui", - "react-component", + "component", "customizable", "mobile-development" ], @@ -95966,12 +95373,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-slider-intro", "npm": { - "downloads": 373, - "weekDownloads": 47, + "downloads": 553, + "weekDownloads": 95, "size": 180062, "latestRelease": "3.0.1", "latestReleaseDate": "2025-02-14T19:34:28.805Z" @@ -95981,8 +95389,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.642, - "topicSearchString": "react-native ios android slider swiper intro carousel tutorial app animation mobile ui react-component customizable mobile-development" + "popularity": -0.604, + "topicSearchString": "ios android slider swiper intro carousel tutorial app animation mobile ui component customizable mobile-development" }, { "githubUrl": "https://github.com/RichardRNStudio/react-native-find-local-devices", @@ -96019,7 +95427,6 @@ "registry": "https://registry.npmjs.org/", "description": "This package loads all of the local devices for react native", "topics": [ - "react-native", "ios", "android", "local-network", @@ -96037,12 +95444,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-find-local-devices", "npm": { - "downloads": 94, - "weekDownloads": 25, + "downloads": 617, + "weekDownloads": 82, "size": 39052, "latestRelease": "2.0.9", "latestReleaseDate": "2024-04-14T08:32:46.746Z" @@ -96052,8 +95461,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.523, - "topicSearchString": "react-native ios android local-network network-discovery websocket-connection portscanning" + "popularity": -0.637, + "topicSearchString": "ios android local-network network-discovery websocket-connection portscanning" }, { "githubUrl": "https://github.com/Netizen-Teknologi/avatar-placeholder", @@ -96091,8 +95500,6 @@ "isPrivate": false, "description": "A package to generate avatar/initial name images using JavaScript", "topics": [ - "react-native", - "react", "javascript" ], "license": { @@ -96105,11 +95512,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 39, - "weekDownloads": 6, + "downloads": 63, + "weekDownloads": 4, "size": 4253, "latestRelease": "1.0.1", "latestReleaseDate": "2024-05-04T04:57:53.952Z" @@ -96119,8 +95527,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.867, - "topicSearchString": "react-native react javascript" + "popularity": -0.943, + "topicSearchString": "javascript" }, { "githubUrl": "https://github.com/margelo/react-native-quick-crypto/tree/main/packages/react-native-quick-crypto", @@ -96131,6 +95539,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", @@ -96146,9 +95555,9 @@ "createdAt": "2022-02-17T08:49:24Z", "pushedAt": "2025-09-11T03:27:47Z", "forks": 102, - "issues": 30, - "subscribers": 15, - "stars": 859, + "issues": 31, + "subscribers": 14, + "stars": 872, "dependencies": 6 }, "name": "react-native-quick-crypto", @@ -96157,7 +95566,6 @@ "registry": "https://registry.npmjs.org/", "description": "A fast implementation of Node's `crypto` module written in C/C++ JSI", "topics": [ - "react-native", "ios", "android", "jsi", @@ -96180,25 +95588,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "nitro" }, "npmPkg": "react-native-quick-crypto", "npm": { - "downloads": 345699, - "weekDownloads": 42934, + "downloads": 430737, + "weekDownloads": 106478, "size": 1118024, "latestRelease": "0.7.17", "latestReleaseDate": "2025-08-04T17:51:22.894Z" }, - "score": 73, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.106, - "topicSearchString": "react-native ios android jsi nitro crypto cryptography cryptocurrency c++ fast quick web3" + "popularity": 0.21, + "topicSearchString": "ios android jsi nitro crypto cryptography cryptocurrency c++ fast quick web3" }, { "githubUrl": "https://github.com/vokhuyetOz/react-native-messy", @@ -96238,7 +95646,6 @@ "registry": "https://registry.npmjs.org/", "description": "Chat ui for React Native", "topics": [ - "react-native", "ios", "android" ], @@ -96252,11 +95659,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 10, - "weekDownloads": 0, + "downloads": 620, + "weekDownloads": 2, "size": 665879, "latestRelease": "0.2.10", "latestReleaseDate": "2024-09-05T02:40:57.317Z" @@ -96266,8 +95674,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native ios android" + "popularity": -0.747, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/vokhuyetOz/react-native-concurrent-sound", @@ -96303,7 +95711,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native module for playing multiple local, remote sound at same time", "topics": [ - "react-native", "ios", "android" ], @@ -96317,22 +95724,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 52, - "weekDownloads": 14, + "downloads": 390, + "weekDownloads": 11, "size": 53567, "latestRelease": "0.1.2", "latestReleaseDate": "2025-01-23T04:03:19.287Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.517, - "topicSearchString": "react-native ios android" + "popularity": -0.726, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/FerRiv3ra/rn-inkpad", @@ -96350,13 +95758,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-04-23T11:08:33Z", + "updatedAt": "2025-09-14T11:54:27Z", "createdAt": "2024-03-24T20:41:07Z", - "pushedAt": "2025-04-23T11:08:33Z", + "pushedAt": "2025-09-14T11:54:27Z", "forks": 3, "issues": 0, "subscribers": 1, - "stars": 31, + "stars": 34, "dependencies": 1 }, "name": "rn-inkpad", @@ -96364,7 +95772,6 @@ "isPrivate": false, "description": "Open source React Native UI library, with a wide range of ready-to-use components.", "topics": [ - "react-native", "ui-library", "alert", "prompt", @@ -96406,22 +95813,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-inkpad", "npm": { - "downloads": 925, - "weekDownloads": 279, - "size": 358907, - "latestRelease": "1.0.6", - "latestReleaseDate": "2025-04-23T11:09:47.367Z" + "downloads": 261, + "weekDownloads": 38, + "size": 359214, + "latestRelease": "1.0.7", + "latestReleaseDate": "2025-09-14T11:55:32.585Z" }, "score": 43, "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.493, - "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" + "popularity": -0.625, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/lodev09/expo-recorder", @@ -96463,7 +95871,6 @@ "registry": "https://registry.npmjs.org/", "description": "Audio recorder for your React Native apps 🎙️", "topics": [ - "react-native", "ios", "android", "recorder", @@ -96481,22 +95888,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 174, - "weekDownloads": 23, + "downloads": 400, + "weekDownloads": 52, "size": 133983, "latestRelease": "0.3.2", "latestReleaseDate": "2025-01-24T19:43:02.527Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.635, - "topicSearchString": "react-native ios android recorder expo expo-av audio" + "popularity": -0.639, + "topicSearchString": "ios android recorder expo expo-av audio" }, { "githubUrl": "https://github.com/duguyihou/react-native-turbo-image", @@ -96521,13 +95928,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-19T10:03:35Z", + "updatedAt": "2025-10-11T05:55:30Z", "createdAt": "2023-07-22T10:57:24Z", - "pushedAt": "2025-08-19T10:03:35Z", - "forks": 128, + "pushedAt": "2025-10-11T05:55:30Z", + "forks": 130, "issues": 8, "subscribers": 64, - "stars": 901, + "stars": 909, "dependencies": 0 }, "name": "react-native-turbo-image", @@ -96536,7 +95943,6 @@ "registry": "https://registry.npmjs.org/", "description": "Fast image loading for React Native", "topics": [ - "react-native", "ios", "android", "image-caching", @@ -96552,94 +95958,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-turbo-image", "npm": { - "downloads": 126390, - "weekDownloads": 24100, + "downloads": 96704, + "weekDownloads": 20199, "size": 49370683, "latestRelease": "1.23.0", "latestReleaseDate": "2025-08-18T12:25:47.161Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": 0.162, - "topicSearchString": "react-native ios android image-caching image-loading" - }, - { - "githubUrl": "https://github.com/LovesWorking/react-native-react-query-devtools", - "examples": [ - "https://github.com/LovesWorking/RN-Dev-Tools-Example" - ], - "images": [ - "https://media0.giphy.com/media/v1.Y2lkPTc5MGI3NjExdGxmMHhhbXRicmEzbm44OGU5cW05ZmV6enQ0eTQ5MmJ3MWp2ZmhkdSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/ZWYRq7RgGeDqYYMoFS/giphy.gif" - ], - "ios": true, - "android": true, - "expoGo": true, - "tvos": true, - "dev": true, - "github": { - "urls": { - "repo": "https://github.com/LovesWorking/rn-better-dev-tools-internal", - "homepage": null - }, - "stats": { - "hasIssues": true, - "hasWiki": false, - "hasSponsorships": false, - "hasDiscussions": false, - "hasTopics": true, - "updatedAt": "2025-07-24T12:20:30Z", - "createdAt": "2024-02-19T16:22:39Z", - "pushedAt": "2025-07-24T12:20:30Z", - "forks": 10, - "issues": 2, - "subscribers": 4, - "stars": 156, - "dependencies": 1 - }, - "name": "react-native-react-query-devtools", - "fullName": "LovesWorking/rn-better-dev-tools-internal", - "isPrivate": false, - "description": "React Native Dev Tools for React Native", - "topics": [ - "react-query", - "tanstack", - "state-management", - "dev-tools", - "react-native", - "qa", - "debugging" - ], - "license": null, - "hasTypes": true, - "newArchitecture": false, - "isArchived": false, - "hasNativeCode": false - }, - "npmPkg": "react-native-react-query-devtools", - "npm": { - "downloads": 116598, - "weekDownloads": 18141, - "size": 137497, - "latestRelease": "1.5.1", - "latestReleaseDate": "2025-07-17T16:17:59.391Z" - }, - "score": 41, - "matchingScoreModifiers": [ - "Known", - "No license", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.132, - "topicSearchString": "react-query tanstack state-management dev-tools react-native qa debugging" + "popularity": 0.178, + "topicSearchString": "ios android image-caching image-loading" }, { "githubUrl": "https://github.com/calintamas/react-native-toast-message", @@ -96665,10 +96003,10 @@ "updatedAt": "2025-07-01T09:09:49Z", "createdAt": "2019-04-14T12:49:40Z", "pushedAt": "2025-07-01T09:09:49Z", - "forks": 270, - "issues": 78, + "forks": 273, + "issues": 82, "subscribers": 6, - "stars": 2009, + "stars": 2029, "dependencies": 0 }, "name": "react-native-toast-message", @@ -96676,7 +96014,6 @@ "isPrivate": false, "description": "Animated toast message component for React Native", "topics": [ - "react-native", "toast" ], "license": { @@ -96689,12 +96026,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-toast-message", "npm": { - "downloads": 1110569, - "weekDownloads": 186432, + "downloads": 1141166, + "weekDownloads": 264172, "size": 44640, "latestRelease": "2.3.3", "latestReleaseDate": "2025-07-01T09:11:24.146Z" @@ -96706,8 +96044,8 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.143, - "topicSearchString": "react-native toast" + "popularity": 0.197, + "topicSearchString": "toast" }, { "githubUrl": "https://github.com/gladiuscode/react-native-orientation-director", @@ -96716,6 +96054,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/gladiuscode/react-native-orientation-director", @@ -96727,13 +96066,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-27T15:31:34Z", + "updatedAt": "2025-10-20T21:02:03Z", "createdAt": "2024-05-20T22:20:03Z", - "pushedAt": "2025-07-27T15:31:34Z", + "pushedAt": "2025-10-20T21:02:03Z", "forks": 1, - "issues": 0, + "issues": 1, "subscribers": 2, - "stars": 82, + "stars": 84, "dependencies": 0 }, "name": "react-native-orientation-director", @@ -96742,7 +96081,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native library that allows you to detect device orientation changes, interface orientation changes and lock interface orientation.", "topics": [ - "react-native", "ios", "android", "device", @@ -96761,22 +96099,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-orientation-director", "npm": { - "downloads": 11599, - "weekDownloads": 2068, - "size": 191320, - "latestRelease": "2.6.1", - "latestReleaseDate": "2025-07-27T15:31:32.719Z" + "downloads": 8454, + "weekDownloads": 2624, + "size": 191714, + "latestRelease": "2.6.2", + "latestReleaseDate": "2025-10-20T21:01:55.558Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.152, - "topicSearchString": "react-native ios android device handler interface listener orientation" + "popularity": 0.264, + "topicSearchString": "ios android device handler interface listener orientation" }, { "githubUrl": "https://github.com/breeffy/react-native-monorepo/tree/main/packages/pickers", @@ -96806,7 +96146,7 @@ "pushedAt": "2021-12-11T19:16:20Z", "forks": 7, "issues": 20, - "subscribers": 3, + "subscribers": 1, "stars": 183, "dependencies": 4 }, @@ -96816,7 +96156,6 @@ "description": "Pickers UI components", "topics": [ "breeffy", - "react-native", "android", "picker", "component", @@ -96833,11 +96172,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 14, + "downloads": 198, "weekDownloads": 6, "size": 163132, "latestRelease": "0.9.0", @@ -96848,8 +96188,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.1, - "topicSearchString": "breeffy react-native android picker component reanimated ui" + "popularity": -1.474, + "topicSearchString": "breeffy android picker component reanimated ui" }, { "githubUrl": "https://github.com/dohooo/react-native-reanimated-table", @@ -96873,10 +96213,10 @@ "updatedAt": "2023-12-03T09:30:35Z", "createdAt": "2023-04-30T03:56:27Z", "pushedAt": "2023-12-03T09:30:35Z", - "forks": 6, + "forks": 8, "issues": 7, "subscribers": 5, - "stars": 204, + "stars": 208, "dependencies": 0 }, "name": "react-native-reanimated-table", @@ -96885,7 +96225,6 @@ "registry": "https://registry.npmjs.org/", "description": "📊 A React Native table component using react-native-reanimated and react-native-gesture-handler.", "topics": [ - "react-native", "ios", "android" ], @@ -96899,24 +96238,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-reanimated-table", "npm": { - "downloads": 81882, - "weekDownloads": 11774, + "downloads": 38410, + "weekDownloads": 9704, "size": 73237, "latestRelease": "0.0.2", "latestReleaseDate": "2023-04-27T06:01:57.356Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.122, - "topicSearchString": "react-native ios android" + "popularity": 0.215, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/Expensify/react-native-onyx", @@ -96933,13 +96272,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T12:22:23Z", + "updatedAt": "2025-10-10T17:38:33Z", "createdAt": "2020-11-03T23:55:52Z", - "pushedAt": "2025-09-10T12:22:23Z", - "forks": 76, + "pushedAt": "2025-10-10T17:38:33Z", + "forks": 77, "issues": 20, - "subscribers": 33, - "stars": 202, + "subscribers": 32, + "stars": 207, "dependencies": 7 }, "name": "react-native-onyx", @@ -96947,8 +96286,6 @@ "isPrivate": false, "description": "Persistent, offline-first state management solution for React Native. Easy to use with minimal config and boilerplate.", "topics": [ - "react-native", - "react", "persistent-storage", "pub/sub" ], @@ -96962,15 +96299,17 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-onyx", "npm": { - "downloads": 81780, - "weekDownloads": 10349, - "size": 377890, - "latestRelease": "2.0.140", - "latestReleaseDate": "2025-09-10T12:22:33.917Z" + "downloads": 82538, + "weekDownloads": 15796, + "size": 329328, + "latestRelease": "3.0.6", + "latestReleaseDate": "2025-10-10T17:38:45.008Z" }, "score": 57, "matchingScoreModifiers": [ @@ -96978,8 +96317,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.108, - "topicSearchString": "react-native react persistent-storage pub/sub" + "popularity": 0.163, + "topicSearchString": "persistent-storage pub/sub" }, { "githubUrl": "https://github.com/wxik/react-native-rich-editor", @@ -97003,7 +96342,7 @@ "forks": 318, "issues": 178, "subscribers": 10, - "stars": 915, + "stars": 926, "dependencies": 0 }, "name": "react-native-pell-rich-editor", @@ -97011,7 +96350,6 @@ "isPrivate": false, "description": "Lightweight React Native (JavaScript, H5) rich text editor", "topics": [ - "react-native", "editor", "rich-editor", "wysiwyg", @@ -97028,11 +96366,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 91394, - "weekDownloads": 14120, + "downloads": 92019, + "weekDownloads": 20858, "size": 641755, "latestRelease": "1.10.0", "latestReleaseDate": "2025-07-22T09:11:29.303Z" @@ -97044,8 +96383,8 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.131, - "topicSearchString": "react-native editor rich-editor wysiwyg wysiwyg-editors rn" + "popularity": 0.193, + "topicSearchString": "editor rich-editor wysiwyg wysiwyg-editors rn" }, { "githubUrl": "https://github.com/expo/atlas/tree/main/packages/expo-atlas", @@ -97068,10 +96407,10 @@ "updatedAt": "2025-08-14T07:57:43Z", "createdAt": "2024-03-12T15:37:39Z", "pushedAt": "2025-08-14T07:57:43Z", - "forks": 5, + "forks": 4, "issues": 3, "subscribers": 4, - "stars": 176, + "stars": 185, "dependencies": 12 }, "name": "expo-atlas", @@ -97079,12 +96418,10 @@ "isPrivate": false, "description": "Visualize React Native bundles to understand and optimize your app", "topics": [ - "react-native", "bundle", "visualizer", "explorer", "expo", - "react", "devtools" ], "license": { @@ -97097,12 +96434,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-atlas", "npm": { - "downloads": 268193, - "weekDownloads": 51200, + "downloads": 331382, + "weekDownloads": 70820, "size": 5136274, "latestRelease": "0.4.3", "latestReleaseDate": "2025-08-14T07:57:38.564Z" @@ -97112,8 +96451,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.162, - "topicSearchString": "react-native bundle visualizer explorer expo react devtools" + "popularity": 0.182, + "topicSearchString": "bundle visualizer explorer expo devtools" }, { "githubUrl": "https://github.com/chrizuuu/react-native-gallery-preview", @@ -97134,10 +96473,10 @@ "updatedAt": "2025-07-11T16:34:27Z", "createdAt": "2024-06-09T17:51:23Z", "pushedAt": "2025-07-11T16:34:27Z", - "forks": 6, + "forks": 7, "issues": 2, "subscribers": 3, - "stars": 117, + "stars": 121, "dependencies": 0 }, "name": "react-native-gallery-preview", @@ -97146,7 +96485,6 @@ "registry": "https://registry.npmjs.org/", "description": "Performant component for gallery previews with smooth gestures interactions and animations 🏞️ ", "topics": [ - "react-native", "ios", "android", "reanimated", @@ -97169,12 +96507,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gallery-preview", "npm": { - "downloads": 1202, - "weekDownloads": 226, + "downloads": 1298, + "weekDownloads": 182, "size": 262989, "latestRelease": "1.3.4", "latestReleaseDate": "2025-07-11T16:34:42.533Z" @@ -97183,8 +96522,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.16, - "topicSearchString": "react-native ios android reanimated photo-viewer image-viewer photo-preview photo-gallery gallery gesture-handler image-preview gallery-preview" + "popularity": 0.119, + "topicSearchString": "ios android reanimated photo-viewer image-viewer photo-preview photo-gallery gallery gesture-handler image-preview gallery-preview" }, { "githubUrl": "https://github.com/withpaceio/react-native-nacl-jsi", @@ -97209,9 +96548,9 @@ "createdAt": "2022-09-20T04:40:12Z", "pushedAt": "2024-07-02T06:43:48Z", "forks": 1, - "issues": 1, - "subscribers": 2, - "stars": 8, + "issues": 2, + "subscribers": 1, + "stars": 9, "dependencies": 0 }, "name": "react-native-nacl-jsi", @@ -97220,7 +96559,6 @@ "registry": "https://registry.npmjs.org/", "description": "Sodium library for React Native with JSI binding", "topics": [ - "react-native", "ios", "android", "crypto", @@ -97238,23 +96576,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-nacl-jsi", "npm": { - "downloads": 536, - "weekDownloads": 105, + "downloads": 798, + "weekDownloads": 145, "size": 14371257, "latestRelease": "0.8.0", "latestReleaseDate": "2024-07-02T06:43:44.254Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.833, - "topicSearchString": "react-native ios android crypto libsodium sodium nacl" + "popularity": -0.845, + "topicSearchString": "ios android crypto libsodium sodium nacl" }, { "githubUrl": "https://github.com/segmentio/analytics-react-native/tree/master/packages/core", @@ -97278,7 +96616,7 @@ "pushedAt": "2025-09-11T12:31:52Z", "forks": 193, "issues": 8, - "subscribers": 7, + "subscribers": 6, "stars": 382, "dependencies": 5 }, @@ -97288,7 +96626,6 @@ "description": "The hassle-free way to add Segment analytics to your React-Native app.", "topics": [ "segment", - "react-native", "ios", "android" ], @@ -97302,24 +96639,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 571116, - "weekDownloads": 83272, + "downloads": 628360, + "weekDownloads": 158109, "size": 1407484, "latestRelease": "2.21.3", "latestReleaseDate": "2025-09-11T12:43:49.928Z" }, - "score": 73, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.124, - "topicSearchString": "segment react-native ios android" + "popularity": 0.214, + "topicSearchString": "segment ios android" }, { "githubUrl": "https://github.com/segmentio/analytics-react-native/tree/master/packages/sovran", @@ -97343,7 +96679,7 @@ "pushedAt": "2025-05-19T15:48:25Z", "forks": 193, "issues": 8, - "subscribers": 7, + "subscribers": 6, "stars": 382, "dependencies": 5 }, @@ -97353,7 +96689,6 @@ "registry": "https://registry.npmjs.org/", "description": "A cross-platform state management system", "topics": [ - "react-native", "ios", "android", "segment" @@ -97368,23 +96703,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 560736, - "weekDownloads": 81449, + "downloads": 615949, + "weekDownloads": 155713, "size": 79157, "latestRelease": "1.1.3", "latestReleaseDate": "2024-11-13T15:09:08.069Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.123, - "topicSearchString": "react-native ios android segment" + "popularity": 0.215, + "topicSearchString": "ios android segment" }, { "githubUrl": "https://github.com/braze-inc/braze-react-native-sdk", @@ -97406,11 +96741,11 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T14:38:43Z", + "updatedAt": "2025-10-09T20:01:38Z", "createdAt": "2016-02-15T22:56:16Z", - "pushedAt": "2025-09-12T14:38:43Z", + "pushedAt": "2025-10-09T20:01:38Z", "forks": 88, - "issues": 9, + "issues": 7, "subscribers": 26, "stars": 71, "dependencies": 0 @@ -97422,9 +96757,6 @@ "topics": [ "braze", "appboy", - "react", - "native", - "react-native", "ios", "android", "push", @@ -97449,14 +96781,16 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 306110, - "weekDownloads": 53639, - "size": 392785, - "latestRelease": "16.1.0", - "latestReleaseDate": "2025-09-12T14:40:52.033Z" + "downloads": 323468, + "weekDownloads": 73793, + "size": 414108, + "latestRelease": "17.0.1", + "latestReleaseDate": "2025-10-09T20:10:21.241Z" }, "score": 49, "matchingScoreModifiers": [ @@ -97464,8 +96798,8 @@ "GPL license", "Recently updated" ], - "popularity": 0.149, - "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" + "popularity": 0.194, + "topicSearchString": "braze appboy ios android push in-app analytics segmentation feature-flags javascript sdk typescript marketing-automation customer-engagement in-app-messaging" }, { "githubUrl": "https://github.com/nandorojo/burnt", @@ -97490,10 +96824,10 @@ "updatedAt": "2025-03-10T15:43:52Z", "createdAt": "2022-11-16T19:03:13Z", "pushedAt": "2025-03-10T15:43:52Z", - "forks": 45, + "forks": 46, "issues": 17, - "subscribers": 4, - "stars": 1435, + "subscribers": 3, + "stars": 1447, "dependencies": 2 }, "name": "burnt", @@ -97501,7 +96835,6 @@ "isPrivate": false, "description": "Crunchy toasts for React Native. 🍞", "topics": [ - "react-native", "expo", "burnt" ], @@ -97515,25 +96848,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "burnt", "npm": { - "downloads": 171115, - "weekDownloads": 31500, + "downloads": 177710, + "weekDownloads": 38353, "size": 60059, "latestRelease": "0.13.0", "latestReleaseDate": "2025-03-10T16:09:39.968Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.156, - "topicSearchString": "react-native expo burnt" + "popularity": 0.183, + "topicSearchString": "expo burnt" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-tracking-transparency", @@ -97545,6 +96879,7 @@ "tvos": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -97556,21 +96891,20 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-13T09:29:44Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-13T09:29:44Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-tracking-transparency", "fullName": "expo/expo", "isPrivate": false, - "description": "An Expo library for requesting permission to track the users on devices using iOS 14.5 and higher.", + "description": "A library for tracking app users and managing tracking permissions", "topics": [ - "react-native", "expo", "expo-tracking-transparency" ], @@ -97584,27 +96918,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-tracking-transparency", "npm": { - "downloads": 458806, - "weekDownloads": 80040, + "downloads": 489081, + "weekDownloads": 108095, "size": 60143, "latestRelease": "6.0.7", "latestReleaseDate": "2025-09-11T20:23:04.256Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.148, - "topicSearchString": "react-native expo expo-tracking-transparency" + "popularity": 0.188, + "topicSearchString": "expo expo-tracking-transparency" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-insights", @@ -97625,10 +96960,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-insights", @@ -97636,7 +96971,6 @@ "isPrivate": false, "description": "Expo module that offers developers insight into the usage data of the app", "topics": [ - "react-native", "expo", "expo-insights", "expoinsights", @@ -97653,27 +96987,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-insights", "npm": { - "downloads": 248787, - "weekDownloads": 42945, + "downloads": 270309, + "weekDownloads": 61043, "size": 44871, "latestRelease": "0.10.7", "latestReleaseDate": "2025-09-11T20:24:42.393Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.147, - "topicSearchString": "react-native expo expo-insights expoinsights insights eas" + "popularity": 0.192, + "topicSearchString": "expo expo-insights expoinsights insights eas" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-clipboard", @@ -97697,13 +97031,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-16T13:53:14Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-16T13:53:14Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-clipboard", @@ -97711,7 +97045,6 @@ "isPrivate": false, "description": "Provides an interface for getting and setting Clipboard content on Android, iOS and Web.", "topics": [ - "react-native", "expo", "expo-clipboard" ], @@ -97725,33 +97058,35 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-clipboard", "npm": { - "downloads": 1966497, - "weekDownloads": 368155, + "downloads": 1927160, + "weekDownloads": 440419, "size": 279445, "latestRelease": "8.0.7", "latestReleaseDate": "2025-09-11T20:25:54.068Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.159, - "topicSearchString": "react-native expo expo-clipboard" + "popularity": 0.194, + "topicSearchString": "expo expo-clipboard" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-navigation-bar", "android": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -97763,13 +97098,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T18:37:51Z", + "updatedAt": "2025-10-09T00:03:40Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-10T18:37:51Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-09T00:03:40Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 3 }, "name": "expo-navigation-bar", @@ -97777,7 +97112,6 @@ "isPrivate": false, "description": "Modify and observe the native navigation bar on Android devices.", "topics": [ - "react-native", "expo", "expo-navigation-bar", "android" @@ -97792,27 +97126,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-navigation-bar", "npm": { - "downloads": 564882, - "weekDownloads": 86227, + "downloads": 582873, + "weekDownloads": 129478, "size": 180505, "latestRelease": "5.0.8", "latestReleaseDate": "2025-09-10T18:40:55.062Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.13, - "topicSearchString": "react-native expo expo-navigation-bar android" + "popularity": 0.189, + "topicSearchString": "expo expo-navigation-bar android" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-symbols", @@ -97834,13 +97169,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-02T09:33:29Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-02T09:33:29Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-symbols", @@ -97848,7 +97183,6 @@ "isPrivate": false, "description": "Provides access to the SF Symbols library on iOS for React Native and Expo apps.", "topics": [ - "react-native", "expo", "expo-symbols", "symbols", @@ -97865,27 +97199,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-symbols", "npm": { - "downloads": 1462045, - "weekDownloads": 253046, + "downloads": 1659103, + "weekDownloads": 351808, "size": 43906, "latestRelease": "1.0.7", "latestReleaseDate": "2025-09-11T20:23:12.274Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.147, - "topicSearchString": "react-native expo expo-symbols symbols sfsymbols ios" + "popularity": 0.18, + "topicSearchString": "expo expo-symbols symbols sfsymbols ios" }, { "githubUrl": "https://github.com/orcunorcun/react-native-native-language", @@ -97920,7 +97255,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native module for detecting and setting device language", "topics": [ - "react-native", "ios", "android" ], @@ -97934,12 +97268,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-native-language", "npm": { - "downloads": 50, - "weekDownloads": 17, + "downloads": 110, + "weekDownloads": 6, "size": 22105, "latestRelease": "1.1.1", "latestReleaseDate": "2024-06-14T13:42:31.064Z" @@ -97949,8 +97285,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.691, - "topicSearchString": "react-native ios android" + "popularity": -0.952, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/rive-app/rive-react-native", @@ -97972,13 +97308,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-13T14:01:37Z", + "updatedAt": "2025-09-24T22:43:35Z", "createdAt": "2021-05-05T16:18:35Z", - "pushedAt": "2025-08-13T14:01:37Z", + "pushedAt": "2025-09-24T22:43:35Z", "forks": 64, - "issues": 84, - "subscribers": 11, - "stars": 674, + "issues": 91, + "subscribers": 10, + "stars": 686, "dependencies": 0 }, "name": "rive-react-native", @@ -97987,7 +97323,6 @@ "registry": "https://registry.npmjs.org/", "description": "Rive React Native", "topics": [ - "react-native", "ios", "android" ], @@ -98001,25 +97336,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rive-react-native", "npm": { - "downloads": 336971, - "weekDownloads": 43336, - "size": 411260, - "latestRelease": "9.5.0", - "latestReleaseDate": "2025-08-13T09:26:03.623Z" + "downloads": 370396, + "weekDownloads": 93152, + "size": 411245, + "latestRelease": "9.6.1", + "latestReleaseDate": "2025-09-21T03:08:52.411Z" }, - "score": 57, + "score": 65, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.109, - "topicSearchString": "react-native ios android" + "popularity": 0.214, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/beaverfy/react-native-wear", @@ -98053,7 +97389,6 @@ "registry": "https://registry.npmjs.org/", "description": "Allow React Native apps to communicate with Wear OS", "topics": [ - "react-native", "ios", "android" ], @@ -98067,23 +97402,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-wear", "npm": { - "downloads": 20, - "weekDownloads": 7, + "downloads": 76, + "weekDownloads": 3, "size": 53738, "latestRelease": "1.1.0", "latestReleaseDate": "2024-03-06T17:42:30.363Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.65, - "topicSearchString": "react-native ios android" + "popularity": -0.965, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/riteshshukla04/kiosk-mode-react-native", @@ -98118,7 +97454,6 @@ "registry": "https://registry.npmjs.org/", "description": "A Library for setting up kiosk mode with react native", "topics": [ - "react-native", "ios", "android" ], @@ -98132,11 +97467,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 2227, - "weekDownloads": 477, + "downloads": 2208, + "weekDownloads": 550, "size": 20892, "latestRelease": "0.1.2", "latestReleaseDate": "2024-06-04T20:45:47.126Z" @@ -98146,8 +97483,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.068, - "topicSearchString": "react-native ios android" + "popularity": -0.038, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/cnmapos/react-native-mapa", @@ -98181,8 +97518,6 @@ "isPrivate": false, "description": "Implementation of react native mapsdk", "topics": [ - "react", - "react-native", "map", "mapview", "mapbox-maps" @@ -98197,12 +97532,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-mapa", "npm": { - "downloads": 12, - "weekDownloads": 8, + "downloads": 63, + "weekDownloads": 3, "size": 16447152, "latestRelease": "1.1.0", "latestReleaseDate": "2024-11-26T16:50:43.207Z" @@ -98212,14 +97548,15 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.2, - "topicSearchString": "react react-native map mapview mapbox-maps" + "popularity": -0.957, + "topicSearchString": "map mapview mapbox-maps" }, { "githubUrl": "https://github.com/adaptyteam/AdaptySDK-React-Native", "npmPkg": "react-native-adapty", "examples": [ - "https://github.com/adaptyteam/AdaptySDK-React-Native/tree/master/examples/SubscriptionsJS" + "https://github.com/adaptyteam/AdaptySDK-React-Native/tree/master/examples/AdaptyRnSdkExample", + "https://github.com/adaptyteam/AdaptySDK-React-Native/tree/master/examples/FocusJournalExpo" ], "android": true, "ios": true, @@ -98235,21 +97572,20 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T20:55:34Z", + "updatedAt": "2025-10-17T16:08:56Z", "createdAt": "2020-09-28T17:25:29Z", - "pushedAt": "2025-09-08T20:55:34Z", - "forks": 16, - "issues": 5, - "subscribers": 6, - "stars": 149, - "dependencies": 0 + "pushedAt": "2025-10-17T16:08:56Z", + "forks": 18, + "issues": 3, + "subscribers": 5, + "stars": 155, + "dependencies": 1 }, "name": "react-native-adapty", "fullName": "adaptyteam/AdaptySDK-React-Native", "isPrivate": false, "description": "React Native SDK for growing in-app subscriptions", "topics": [ - "react-native", "adapty", "purchases", "in-apps", @@ -98259,7 +97595,6 @@ "iap", "iap-verification", "in-app-receipt", - "react-plugin", "receipt-validation", "storekit" ], @@ -98273,27 +97608,28 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 23173, - "weekDownloads": 3313, - "size": 786846, - "latestRelease": "3.11.1", - "latestReleaseDate": "2025-09-08T21:00:11.877Z" + "downloads": 25951, + "weekDownloads": 5720, + "size": 784452, + "latestRelease": "3.11.3", + "latestReleaseDate": "2025-10-17T16:15:17.316Z" }, - "score": 49, + "score": 59, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Known", + "Recently updated" ], - "popularity": 0.122, - "topicSearchString": "react-native adapty purchases in-apps subscriptions in-app-purchase subscription iap iap-verification in-app-receipt react-plugin receipt-validation storekit" + "popularity": 0.187, + "topicSearchString": "adapty purchases in-apps subscriptions in-app-purchase subscription iap iap-verification in-app-receipt receipt-validation storekit" }, { "githubUrl": "https://github.com/stnrd/healthicons/tree/main/packages/healthicons-react-native", "examples": [ - "https://github.com/stnrd/healthicons/tree/main/examples/react-native" + "https://github.com/stnrd/healthicons/tree/main/examples/react-native-example" ], "android": true, "ios": true, @@ -98322,8 +97658,6 @@ "isPrivate": false, "description": "React Native icon library for the Health Icons set", "topics": [ - "react", - "react-native", "icons", "svg", "health", @@ -98339,12 +97673,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "healthicons-react-native", "npm": { - "downloads": 6038, - "weekDownloads": 829, + "downloads": 4770, + "weekDownloads": 970, "size": 13613209, "latestRelease": "3.5.0", "latestReleaseDate": "2025-07-09T19:47:08.686Z" @@ -98353,8 +97688,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.133, - "topicSearchString": "react react-native icons svg health healthicons" + "popularity": -0.077, + "topicSearchString": "icons svg health healthicons" }, { "githubUrl": "https://github.com/iaphub/react-native-iaphub", @@ -98371,13 +97706,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-16T22:31:35Z", + "updatedAt": "2025-10-16T22:30:04Z", "createdAt": "2020-03-02T01:05:57Z", - "pushedAt": "2025-07-16T22:31:35Z", + "pushedAt": "2025-10-16T22:30:04Z", "forks": 23, - "issues": 2, + "issues": 1, "subscribers": 5, - "stars": 362, + "stars": 364, "dependencies": 0 }, "name": "react-native-iaphub", @@ -98386,7 +97721,6 @@ "registry": "https://registry.npmjs.org/", "description": "The easiest way to implement IAP (In-app purchase) in your React Native app.", "topics": [ - "react-native", "ios", "android", "in-app-purchase", @@ -98404,25 +97738,27 @@ "id": "MDc6TGljZW5zZTEz" }, "hasTypes": true, - "newArchitecture": false, + "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-iaphub", "npm": { - "downloads": 3418, - "weekDownloads": 695, - "size": 141870, - "latestRelease": "9.0.0", - "latestReleaseDate": "2025-07-16T22:38:20.774Z" + "downloads": 3189, + "weekDownloads": 725, + "size": 177142, + "latestRelease": "9.1.1", + "latestReleaseDate": "2025-10-16T22:32:37.027Z" }, - "score": 51, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.173, - "topicSearchString": "react-native ios android in-app-purchase in-app-billing in-app-receipt google-play itunes iap" + "popularity": 0.193, + "topicSearchString": "ios android in-app-purchase in-app-billing in-app-receipt google-play itunes iap" }, { "githubUrl": "https://github.com/CleverTap/clevertap-react-native", @@ -98443,12 +97779,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-17T13:48:35Z", + "updatedAt": "2025-10-03T08:54:31Z", "createdAt": "2017-02-16T01:14:10Z", - "pushedAt": "2025-07-17T13:48:35Z", - "forks": 69, - "issues": 14, - "subscribers": 11, + "pushedAt": "2025-10-03T08:54:31Z", + "forks": 68, + "issues": 13, + "subscribers": 10, "stars": 62, "dependencies": 0 }, @@ -98464,10 +97800,7 @@ "ios", "notification", "push", - "react", - "react-native", "segmentation", - "clevertap-react-native", "javascript", "typescript", "npm", @@ -98484,22 +97817,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "clevertap-react-native", "npm": { - "downloads": 91543, - "weekDownloads": 11618, - "size": 3795689, - "latestRelease": "3.6.0", - "latestReleaseDate": "2025-07-17T13:51:25.871Z" + "downloads": 82796, + "weekDownloads": 20467, + "size": 3825822, + "latestRelease": "3.7.0", + "latestReleaseDate": "2025-10-03T08:59:31.881Z" }, - "score": 54, + "score": 59, "matchingScoreModifiers": [ - "Known" + "Known", + "Recently updated" ], - "popularity": 0.108, - "topicSearchString": "analytics android clevertap in-app ios notification push react react-native segmentation clevertap-react-native javascript typescript npm engagement user-retention" + "popularity": 0.21, + "topicSearchString": "analytics android clevertap in-app ios notification push segmentation javascript typescript npm engagement user-retention" }, { "githubUrl": "https://github.com/odemolliens/react-native-netwatch", @@ -98520,12 +97856,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2024-01-24T10:54:09Z", + "updatedAt": "2025-10-02T10:22:39Z", "createdAt": "2021-01-18T09:48:23Z", - "pushedAt": "2024-01-24T10:54:09Z", + "pushedAt": "2025-10-02T10:22:39Z", "forks": 7, "issues": 4, - "subscribers": 6, + "subscribers": 5, "stars": 19, "dependencies": 4 }, @@ -98534,7 +97870,6 @@ "isPrivate": false, "description": "Network traffic logger for React Native.", "topics": [ - "react-native", "mobile", "ios", "android", @@ -98558,23 +97893,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-netwatch", "npm": { - "downloads": 4467, - "weekDownloads": 524, + "downloads": 3670, + "weekDownloads": 706, "size": 814335, "latestRelease": "1.3.16", "latestReleaseDate": "2024-01-24T10:57:08.004Z" }, - "score": 32, + "score": 49, "matchingScoreModifiers": [ - "Not updated recently", + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.15, - "topicSearchString": "react-native mobile ios android logging network traffic tracking debug redux-action debugger redux charles-proxy" + "popularity": -0.086, + "topicSearchString": "mobile ios android logging network traffic tracking debug redux-action debugger redux charles-proxy" }, { "githubUrl": "https://github.com/iconoir-icons/iconoir/tree/main/packages/iconoir-react-native", @@ -98597,10 +97933,10 @@ "updatedAt": "2025-07-26T21:02:27Z", "createdAt": "2018-03-27T18:33:08Z", "pushedAt": "2025-07-26T21:02:27Z", - "forks": 181, - "issues": 123, - "subscribers": 25, - "stars": 4201, + "forks": 183, + "issues": 127, + "subscribers": 27, + "stars": 4244, "dependencies": 0 }, "name": "iconoir-react-native", @@ -98610,8 +97946,7 @@ "topics": [ "icons", "svg", - "library", - "react-native" + "library" ], "license": { "name": "MIT License", @@ -98623,12 +97958,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "iconoir-react-native", "npm": { - "downloads": 20446, - "weekDownloads": 2437, + "downloads": 15911, + "weekDownloads": 3745, "size": 6398824, "latestRelease": "7.11.0", "latestReleaseDate": "2025-04-12T16:34:57.575Z" @@ -98640,8 +97976,8 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.101, - "topicSearchString": "icons svg library react-native" + "popularity": 0.2, + "topicSearchString": "icons svg library" }, { "githubUrl": "https://github.com/lucide-icons/lucide/tree/main/packages/lucide-react-native", @@ -98660,13 +97996,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-06-18T13:47:24Z", + "updatedAt": "2025-09-19T08:08:00Z", "createdAt": "2020-06-08T15:36:21Z", - "pushedAt": "2025-06-18T13:47:24Z", - "forks": 962, - "issues": 223, + "pushedAt": "2025-09-19T08:08:00Z", + "forks": 1013, + "issues": 230, "subscribers": 52, - "stars": 18997, + "stars": 19417, "dependencies": 0 }, "name": "lucide-react-native", @@ -98675,7 +98011,6 @@ "description": "A Lucide icon library package for React Native applications.", "topics": [ "lucide", - "react-native", "feather", "icons", "icon", @@ -98685,6 +98020,7 @@ "font-awesome" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -98693,26 +98029,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "lucide-react-native", "npm": { - "downloads": 903100, - "weekDownloads": 148349, - "size": 18876927, - "latestRelease": "0.544.0", - "latestReleaseDate": "2025-09-11T09:54:26.699Z" + "downloads": 1080700, + "weekDownloads": 209661, + "size": 18905984, + "latestRelease": "0.546.0", + "latestReleaseDate": "2025-10-16T11:57:16.478Z" }, - "score": 81, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.14, - "topicSearchString": "lucide react-native feather icons icon svg feather-icons fontawesome font-awesome" + "popularity": 0.165, + "topicSearchString": "lucide feather icons icon svg feather-icons fontawesome font-awesome" }, { "githubUrl": "https://github.com/maitrungduc1410/react-native-loader-kit", @@ -98736,13 +98072,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-06-28T14:38:46Z", + "updatedAt": "2025-10-21T11:36:47Z", "createdAt": "2020-05-06T08:24:39Z", - "pushedAt": "2025-06-28T14:38:46Z", + "pushedAt": "2025-10-21T11:36:47Z", "forks": 9, - "issues": 0, + "issues": 1, "subscribers": 1, - "stars": 209, + "stars": 213, "dependencies": 0 }, "name": "react-native-loader-kit", @@ -98751,7 +98087,6 @@ "registry": "https://registry.npmjs.org/", "description": "🎯 Beautiful native loading indicators for React Native with 30+ animations, and speed control", "topics": [ - "react-native", "ios", "android", "indicator", @@ -98771,22 +98106,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-loader-kit", "npm": { - "downloads": 10760, - "weekDownloads": 1608, - "size": 32438, - "latestRelease": "3.0.0", - "latestReleaseDate": "2025-06-28T14:38:06.574Z" + "downloads": 10041, + "weekDownloads": 2631, + "size": 185591, + "latestRelease": "4.1.0", + "latestReleaseDate": "2025-10-21T11:35:50.663Z" }, - "score": 43, + "score": 59, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Known", + "Recently updated" ], - "popularity": 0.127, - "topicSearchString": "react-native ios android indicator loader loading loader-kit loading-animations loading-indicator" + "popularity": 0.223, + "topicSearchString": "ios android indicator loader loading loader-kit loading-animations loading-indicator" }, { "githubUrl": "https://github.com/BeTomorrow/react-native-file-logger", @@ -98810,7 +98148,7 @@ "createdAt": "2020-07-14T09:10:21Z", "pushedAt": "2025-08-20T10:47:43Z", "forks": 28, - "issues": 3, + "issues": 4, "subscribers": 5, "stars": 140, "dependencies": 1 @@ -98820,7 +98158,6 @@ "isPrivate": false, "description": "A simple file-logger for React Native with configurable rolling policy, based on CocoaLumberjack on iOS and Logback on Android.", "topics": [ - "react-native", "logging", "file-logger", "cocoalumberjack", @@ -98836,24 +98173,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-file-logger", "npm": { - "downloads": 35100, - "weekDownloads": 5995, + "downloads": 44568, + "weekDownloads": 10091, "size": 597990, "latestRelease": "0.7.1", "latestReleaseDate": "2025-08-20T10:47:39.116Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.145, - "topicSearchString": "react-native logging file-logger cocoalumberjack logback" + "popularity": 0.192, + "topicSearchString": "logging file-logger cocoalumberjack logback" }, { "githubUrl": "https://github.com/okta/okta-react-native", @@ -98876,7 +98213,7 @@ "pushedAt": "2025-09-10T17:23:41Z", "forks": 45, "issues": 69, - "subscribers": 73, + "subscribers": 72, "stars": 71, "dependencies": 6 }, @@ -98885,8 +98222,6 @@ "isPrivate": true, "description": "OIDC enablement for React Native applications", "topics": [ - "react", - "react-native", "authentication", "okta", "oidc" @@ -98901,23 +98236,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 38761, - "weekDownloads": 6971, + "downloads": 34830, + "weekDownloads": 8907, "size": 227263, "latestRelease": "2.17.1", "latestReleaseDate": "2025-08-07T14:48:31.542Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.153, - "topicSearchString": "react react-native authentication okta oidc" + "popularity": 0.217, + "topicSearchString": "authentication okta oidc" }, { "githubUrl": "https://github.com/gev2002/react-native-vision-camera-text-recognition", @@ -98937,7 +98272,7 @@ "updatedAt": "2024-08-30T05:26:44Z", "createdAt": "2024-05-25T15:06:24Z", "pushedAt": "2024-08-30T05:26:44Z", - "forks": 35, + "forks": 38, "issues": 14, "subscribers": 2, "stars": 87, @@ -98949,7 +98284,6 @@ "registry": "https://registry.npmjs.org/", "description": "A plugin to Scanning Text,Translate using ML Kit Text Recognition and ML Kit Translation. With High Performance and many features.", "topics": [ - "react-native", "ios", "android", "camera", @@ -98969,12 +98303,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-vision-camera-text-recognition", "npm": { - "downloads": 7494, - "weekDownloads": 1376, + "downloads": 7606, + "weekDownloads": 1708, "size": 86057, "latestRelease": "3.1.1", "latestReleaseDate": "2024-08-12T11:50:37.405Z" @@ -98984,8 +98320,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.156, - "topicSearchString": "react-native ios android camera mlkit ml-kit vision-camera text-recognition text" + "popularity": 0.191, + "topicSearchString": "ios android camera mlkit ml-kit vision-camera text-recognition text" }, { "githubUrl": "https://github.com/gev2002/react-native-vision-camera-image-labeler", @@ -99005,7 +98341,7 @@ "updatedAt": "2024-08-30T05:25:58Z", "createdAt": "2024-05-03T09:57:19Z", "pushedAt": "2024-08-30T05:25:58Z", - "forks": 2, + "forks": 3, "issues": 1, "subscribers": 1, "stars": 16, @@ -99017,7 +98353,6 @@ "registry": "https://registry.npmjs.org/", "description": "A plugin to label images using ML Kit Image Labeler. With High Performance.", "topics": [ - "react-native", "ios", "android" ], @@ -99031,12 +98366,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-vision-camera-image-labeler", "npm": { - "downloads": 1248, - "weekDownloads": 203, + "downloads": 1269, + "weekDownloads": 196, "size": 46299, "latestRelease": "2.2.0", "latestReleaseDate": "2024-08-09T13:25:45.823Z" @@ -99046,8 +98383,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.111, - "topicSearchString": "react-native ios android" + "popularity": -0.118, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/margelo/react-native-filament/tree/main/package", @@ -99068,13 +98405,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-12T09:41:34Z", + "updatedAt": "2025-09-25T11:13:35Z", "createdAt": "2024-02-20T17:58:27Z", - "pushedAt": "2025-08-12T09:41:34Z", - "forks": 37, - "issues": 27, + "pushedAt": "2025-09-25T11:13:35Z", + "forks": 39, + "issues": 30, "subscribers": 13, - "stars": 1191, + "stars": 1219, "dependencies": 0 }, "name": "react-native-filament", @@ -99083,7 +98420,6 @@ "registry": "https://registry.npmjs.org/", "description": "A real-time physically based 3D rendering engine for React Native", "topics": [ - "react-native", "filament", "3d", "rendering", @@ -99108,29 +98444,32 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 14953, - "weekDownloads": 2416, + "downloads": 14289, + "weekDownloads": 2090, "size": 487922051, "latestRelease": "1.8.0", "latestReleaseDate": "2025-07-01T16:48:46.412Z" }, - "score": 68, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.137, - "topicSearchString": "react-native filament 3d rendering engine gltf model threejs ios android physics opengl metal vulkan" + "popularity": 0.124, + "topicSearchString": "filament 3d rendering engine gltf model threejs ios android physics opengl metal vulkan" }, { "githubUrl": "https://github.com/BatchLabs/Batch-React-Native-Plugin", "npmPkg": "@batch.com/react-native-plugin", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/BatchLabs/Batch-React-Native-Plugin", @@ -99142,12 +98481,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-17T12:03:55Z", + "updatedAt": "2025-10-21T15:07:37Z", "createdAt": "2022-06-01T09:04:30Z", - "pushedAt": "2025-07-17T12:03:55Z", - "forks": 2, + "pushedAt": "2025-10-21T15:07:37Z", + "forks": 3, "issues": 0, - "subscribers": 5, + "subscribers": 3, "stars": 10, "dependencies": 0 }, @@ -99156,7 +98495,6 @@ "isPrivate": false, "description": "Batch SDK React Native plugin", "topics": [ - "react-native", "batch", "push", "notifications", @@ -99172,21 +98510,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 7664, - "weekDownloads": 903, - "size": 422588, - "latestRelease": "10.1.2", - "latestReleaseDate": "2025-07-17T12:09:59.676Z" + "downloads": 9030, + "weekDownloads": 1986, + "size": 435408, + "latestRelease": "11.1.0", + "latestReleaseDate": "2025-10-21T15:09:51.746Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.15, - "topicSearchString": "react-native batch push notifications sdk" + "popularity": -0.063, + "topicSearchString": "batch push notifications sdk" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/@expo/fingerprint", @@ -99210,13 +98550,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T18:37:51Z", + "updatedAt": "2025-10-16T16:58:57Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-10T18:37:51Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-16T16:58:57Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 11 }, "name": "@expo/fingerprint", @@ -99225,7 +98565,6 @@ "description": "A library to generate a fingerprint from a React Native project", "topics": [ "expo", - "react-native", "fingerprint", "hash", "node" @@ -99240,26 +98579,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 6672530, - "weekDownloads": 1165648, - "size": 226294, - "latestRelease": "0.15.0", - "latestReleaseDate": "2025-09-10T18:42:18.720Z" + "downloads": 6983257, + "weekDownloads": 1565177, + "size": 229172, + "latestRelease": "0.15.2", + "latestReleaseDate": "2025-10-20T23:27:59.806Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.148, - "topicSearchString": "expo react-native fingerprint hash node" + "popularity": 0.191, + "topicSearchString": "expo fingerprint hash node" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo", @@ -99281,13 +98621,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-13T00:45:26Z", + "updatedAt": "2025-10-20T23:07:36Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-13T00:45:26Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-20T23:07:36Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 21 }, "name": "expo", @@ -99307,26 +98647,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo", "npm": { - "downloads": 7254561, - "weekDownloads": 1218052, - "size": 869632, - "latestRelease": "54.0.7", - "latestReleaseDate": "2025-09-13T20:53:01.803Z" + "downloads": 7834731, + "weekDownloads": 1711844, + "size": 862317, + "latestRelease": "54.0.16", + "latestReleaseDate": "2025-10-21T13:10:09.980Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.143, + "popularity": 0.186, "topicSearchString": "expo" }, { @@ -99350,13 +98691,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-28T18:00:17Z", + "updatedAt": "2025-10-12T04:38:11Z", "createdAt": "2021-12-31T01:06:00Z", - "pushedAt": "2025-08-28T18:00:17Z", - "forks": 116, - "issues": 45, + "pushedAt": "2025-10-12T04:38:11Z", + "forks": 114, + "issues": 47, "subscribers": 38, - "stars": 4712, + "stars": 4754, "dependencies": 0 }, "name": "tinybase", @@ -99370,7 +98711,6 @@ "reactive", "state", "data", - "react", "javascript", "typescript" ], @@ -99384,26 +98724,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "tinybase", "npm": { - "downloads": 117535, - "weekDownloads": 16949, - "size": 8185922, - "latestRelease": "6.6.0", - "latestReleaseDate": "2025-08-28T02:32:55.990Z" + "downloads": 76779, + "weekDownloads": 15157, + "size": 8200547, + "latestRelease": "6.7.1", + "latestReleaseDate": "2025-10-11T02:45:44.398Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.123, - "topicSearchString": "tiny sync-engine local-first reactive state data react javascript typescript" + "popularity": 0.168, + "topicSearchString": "tiny sync-engine local-first reactive state data javascript typescript" }, { "githubUrl": "https://github.com/react-navigation/react-navigation/tree/main/packages/bottom-tabs", @@ -99425,13 +98765,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-25T17:33:32Z", + "updatedAt": "2025-10-16T12:44:50Z", "createdAt": "2017-01-26T19:51:40Z", - "pushedAt": "2025-08-25T17:33:32Z", - "forks": 4927, - "issues": 841, - "subscribers": 311, - "stars": 24159, + "pushedAt": "2025-10-16T12:44:50Z", + "forks": 4929, + "issues": 850, + "subscribers": 308, + "stars": 24225, "dependencies": 2 }, "name": "@react-navigation/bottom-tabs", @@ -99440,9 +98780,8 @@ "description": "Bottom tab navigator following iOS design guidelines", "topics": [ "component", - "react-component", - "react-native", - "react-navigation", + "component", + "navigation", "ios", "android", "tab" @@ -99457,14 +98796,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 6479575, - "weekDownloads": 1173322, + "downloads": 6569055, + "weekDownloads": 1428937, "size": 193693, - "latestRelease": "7.4.7", - "latestReleaseDate": "2025-08-31T10:40:53.977Z" + "latestRelease": "7.4.9", + "latestReleaseDate": "2025-10-13T12:21:03.685Z" }, "score": 86, "matchingScoreModifiers": [ @@ -99475,8 +98815,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, - "topicSearchString": "component react-component react-native react-navigation ios android tab" + "popularity": 0.185, + "topicSearchString": "component component navigation ios android tab" }, { "githubUrl": "https://github.com/react-navigation/react-navigation/tree/main/packages/material-top-tabs", @@ -99497,13 +98837,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-25T17:33:32Z", + "updatedAt": "2025-10-13T15:01:58Z", "createdAt": "2017-01-26T19:51:40Z", - "pushedAt": "2025-08-25T17:33:32Z", - "forks": 4927, - "issues": 841, - "subscribers": 311, - "stars": 24159, + "pushedAt": "2025-10-13T15:01:58Z", + "forks": 4929, + "issues": 850, + "subscribers": 308, + "stars": 24225, "dependencies": 3 }, "name": "@react-navigation/material-top-tabs", @@ -99512,9 +98852,8 @@ "description": "Integration for the animated tab view component from react-native-tab-view", "topics": [ "component", - "react-component", - "react-native", - "react-navigation", + "component", + "navigation", "ios", "android", "material", @@ -99530,14 +98869,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1140255, - "weekDownloads": 194572, + "downloads": 1034042, + "weekDownloads": 239989, "size": 62732, - "latestRelease": "7.3.7", - "latestReleaseDate": "2025-08-31T10:40:53.316Z" + "latestRelease": "7.3.8", + "latestReleaseDate": "2025-10-04T21:47:56.081Z" }, "score": 86, "matchingScoreModifiers": [ @@ -99548,8 +98888,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "component react-component react-native react-navigation ios android material tab" + "popularity": 0.197, + "topicSearchString": "component component navigation ios android material tab" }, { "githubUrl": "https://github.com/react-navigation/react-navigation/tree/main/packages/drawer", @@ -99570,13 +98910,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-25T17:33:32Z", + "updatedAt": "2025-10-16T12:44:50Z", "createdAt": "2017-01-26T19:51:40Z", - "pushedAt": "2025-08-25T17:33:32Z", - "forks": 4927, - "issues": 841, - "subscribers": 311, - "stars": 24159, + "pushedAt": "2025-10-16T12:44:50Z", + "forks": 4929, + "issues": 850, + "subscribers": 308, + "stars": 24225, "dependencies": 4 }, "name": "@react-navigation/drawer", @@ -99585,9 +98925,8 @@ "description": "Integration for the drawer component from react-native-drawer-layout", "topics": [ "component", - "react-component", - "react-native", - "react-navigation", + "component", + "navigation", "ios", "android", "material", @@ -99603,14 +98942,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1491018, - "weekDownloads": 269793, - "size": 125269, - "latestRelease": "7.5.8", - "latestReleaseDate": "2025-08-31T10:40:53.071Z" + "downloads": 1486350, + "weekDownloads": 324903, + "size": 125270, + "latestRelease": "7.5.10", + "latestReleaseDate": "2025-10-13T12:21:03.405Z" }, "score": 86, "matchingScoreModifiers": [ @@ -99621,8 +98961,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, - "topicSearchString": "component react-component react-native react-navigation ios android material drawer" + "popularity": 0.186, + "topicSearchString": "component component navigation ios android material drawer" }, { "githubUrl": "https://github.com/react-navigation/react-navigation/tree/main/packages/native-stack", @@ -99644,13 +98984,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-25T17:33:32Z", + "updatedAt": "2025-10-13T15:01:58Z", "createdAt": "2017-01-26T19:51:40Z", - "pushedAt": "2025-08-25T17:33:32Z", - "forks": 4927, - "issues": 841, - "subscribers": 311, - "stars": 24159, + "pushedAt": "2025-10-13T15:01:58Z", + "forks": 4929, + "issues": 850, + "subscribers": 308, + "stars": 24225, "dependencies": 2 }, "name": "@react-navigation/native-stack", @@ -99659,12 +98999,10 @@ "description": "Native stack navigator using react-native-screens", "topics": [ "component", - "react-component", - "react-native", - "react-navigation", + "component", + "navigation", "ios", "android", - "native", "stack" ], "license": { @@ -99677,14 +99015,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 6136308, - "weekDownloads": 1100395, - "size": 198036, - "latestRelease": "7.3.26", - "latestReleaseDate": "2025-08-31T10:40:54.522Z" + "downloads": 6385105, + "weekDownloads": 1350671, + "size": 198048, + "latestRelease": "7.3.28", + "latestReleaseDate": "2025-10-13T12:21:03.499Z" }, "score": 86, "matchingScoreModifiers": [ @@ -99695,8 +99034,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, - "topicSearchString": "component react-component react-native react-navigation ios android native stack" + "popularity": 0.18, + "topicSearchString": "component component navigation ios android stack" }, { "githubUrl": "https://github.com/react-navigation/react-navigation/tree/main/packages/stack", @@ -99718,13 +99057,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-31T10:35:04Z", + "updatedAt": "2025-10-16T12:44:50Z", "createdAt": "2017-01-26T19:51:40Z", - "pushedAt": "2025-08-31T10:35:04Z", - "forks": 4927, - "issues": 841, - "subscribers": 311, - "stars": 24159, + "pushedAt": "2025-10-16T12:44:50Z", + "forks": 4929, + "issues": 850, + "subscribers": 308, + "stars": 24225, "dependencies": 3 }, "name": "@react-navigation/stack", @@ -99733,9 +99072,8 @@ "description": "Stack navigator component for iOS and Android with animated transitions and gestures", "topics": [ "component", - "react-component", - "react-native", - "react-navigation", + "component", + "navigation", "ios", "android", "stack" @@ -99750,14 +99088,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3187582, - "weekDownloads": 579064, - "size": 456329, - "latestRelease": "7.4.8", - "latestReleaseDate": "2025-08-31T10:40:54.603Z" + "downloads": 3059186, + "weekDownloads": 698411, + "size": 456330, + "latestRelease": "7.4.10", + "latestReleaseDate": "2025-10-13T12:21:04.377Z" }, "score": 86, "matchingScoreModifiers": [ @@ -99768,8 +99107,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.154, - "topicSearchString": "component react-component react-native react-navigation ios android stack" + "popularity": 0.194, + "topicSearchString": "component component navigation ios android stack" }, { "githubUrl": "https://github.com/react-navigation/react-navigation/tree/main/packages/elements", @@ -99791,13 +99130,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-31T10:35:04Z", + "updatedAt": "2025-10-16T12:44:50Z", "createdAt": "2017-01-26T19:51:40Z", - "pushedAt": "2025-08-31T10:35:04Z", - "forks": 4927, - "issues": 841, - "subscribers": 311, - "stars": 24159, + "pushedAt": "2025-10-16T12:44:50Z", + "forks": 4929, + "issues": 850, + "subscribers": 308, + "stars": 24225, "dependencies": 3 }, "name": "@react-navigation/elements", @@ -99805,8 +99144,7 @@ "isPrivate": false, "description": "UI Components for React Navigation", "topics": [ - "react-native", - "react-navigation", + "navigation", "ios", "android" ], @@ -99820,14 +99158,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8140759, - "weekDownloads": 1441314, + "downloads": 8337380, + "weekDownloads": 1814489, "size": 260060, - "latestRelease": "2.6.4", - "latestReleaseDate": "2025-08-31T10:40:50.764Z" + "latestRelease": "2.6.5", + "latestReleaseDate": "2025-10-04T21:47:54.157Z" }, "score": 86, "matchingScoreModifiers": [ @@ -99838,8 +99177,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.15, - "topicSearchString": "react-native react-navigation ios android" + "popularity": 0.185, + "topicSearchString": "navigation ios android" }, { "githubUrl": "https://github.com/react-navigation/react-navigation/tree/main/packages/react-native-drawer-layout", @@ -99860,13 +99199,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-31T10:35:04Z", + "updatedAt": "2025-10-13T15:01:58Z", "createdAt": "2017-01-26T19:51:40Z", - "pushedAt": "2025-08-31T10:35:04Z", - "forks": 4927, - "issues": 841, - "subscribers": 311, - "stars": 24159, + "pushedAt": "2025-10-13T15:01:58Z", + "forks": 4929, + "issues": 850, + "subscribers": 308, + "stars": 24225, "dependencies": 1 }, "name": "react-native-drawer-layout", @@ -99875,8 +99214,7 @@ "description": "Drawer component for React Native", "topics": [ "component", - "react-component", - "react-native", + "component", "ios", "android", "drawer", @@ -99892,12 +99230,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-drawer-layout", "npm": { - "downloads": 1046619, - "weekDownloads": 173935, + "downloads": 1064723, + "weekDownloads": 234838, "size": 102615, "latestRelease": "4.1.13", "latestReleaseDate": "2025-08-31T10:40:50.227Z" @@ -99911,8 +99250,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.141, - "topicSearchString": "component react-component react-native ios android drawer swipe" + "popularity": 0.187, + "topicSearchString": "component component ios android drawer swipe" }, { "githubUrl": "https://github.com/react-navigation/react-navigation/tree/main/packages/routers", @@ -99935,13 +99274,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T20:05:57Z", + "updatedAt": "2025-10-13T15:01:58Z", "createdAt": "2017-01-26T19:51:40Z", - "pushedAt": "2025-09-12T20:05:57Z", - "forks": 4927, - "issues": 841, - "subscribers": 311, - "stars": 24159, + "pushedAt": "2025-10-13T15:01:58Z", + "forks": 4929, + "issues": 850, + "subscribers": 308, + "stars": 24225, "dependencies": 1 }, "name": "@react-navigation/routers", @@ -99949,9 +99288,7 @@ "isPrivate": false, "description": "Routers to help build custom navigators", "topics": [ - "react", - "react-native", - "react-navigation" + "navigation" ], "license": { "name": "MIT License", @@ -99963,11 +99300,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 7746890, - "weekDownloads": 1345242, + "downloads": 7980492, + "weekDownloads": 1772292, "size": 164585, "latestRelease": "7.5.1", "latestReleaseDate": "2025-07-26T10:09:34.288Z" @@ -99981,8 +99319,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.148, - "topicSearchString": "react react-native react-navigation" + "popularity": 0.189, + "topicSearchString": "navigation" }, { "githubUrl": "https://github.com/react-navigation/react-navigation/tree/main/packages/devtools", @@ -100006,13 +99344,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-25T17:33:32Z", + "updatedAt": "2025-10-13T15:01:58Z", "createdAt": "2017-01-26T19:51:40Z", - "pushedAt": "2025-08-25T17:33:32Z", - "forks": 4927, - "issues": 841, - "subscribers": 311, - "stars": 24159, + "pushedAt": "2025-10-13T15:01:58Z", + "forks": 4929, + "issues": 850, + "subscribers": 308, + "stars": 24225, "dependencies": 3 }, "name": "@react-navigation/devtools", @@ -100020,9 +99358,7 @@ "isPrivate": false, "description": "Developer tools for React Navigation", "topics": [ - "react", - "react-native", - "react-navigation" + "navigation" ], "license": { "name": "MIT License", @@ -100034,11 +99370,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 592031, - "weekDownloads": 92641, + "downloads": 588879, + "weekDownloads": 136304, "size": 48263, "latestRelease": "7.0.38", "latestReleaseDate": "2025-08-12T02:11:33.821Z" @@ -100052,11 +99389,11 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.133, - "topicSearchString": "react react-native react-navigation" + "popularity": 0.197, + "topicSearchString": "navigation" }, { - "githubUrl": "https://github.com/supabase/supabase-js", + "githubUrl": "https://github.com/supabase/supabase-js/tree/master/packages/core/supabase-js", "npmPkg": "@supabase/supabase-js", "ios": true, "android": true, @@ -100066,59 +99403,51 @@ "github": { "urls": { "repo": "https://github.com/supabase/supabase-js", - "homepage": "https://supabase.com" + "homepage": "https://github.com/supabase/supabase-js/tree/master/packages/core/supabase-js" }, "stats": { "hasIssues": true, - "hasWiki": false, - "hasSponsorships": true, + "hasWiki": true, + "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-09T14:18:30Z", + "updatedAt": "2025-10-21T08:19:41Z", "createdAt": "2020-05-15T12:52:16Z", - "pushedAt": "2025-09-09T14:18:30Z", - "forks": 449, - "issues": 168, + "pushedAt": "2025-10-21T08:19:41Z", + "forks": 491, + "issues": 291, "subscribers": 62, - "stars": 3935, + "stars": 4012, "dependencies": 6 }, "name": "@supabase/supabase-js", "fullName": "supabase/supabase-js", "isPrivate": false, - "description": "An isomorphic Javascript client for Supabase. Query your Supabase database, subscribe to realtime events, upload and download files, browse typescript examples, invoke postgres functions via rpc, invoke supabase edge functions, query pgvector.", + "description": "Isomorphic Javascript SDK for Supabase", "topics": [ "javascript", "typescript", - "supabase", - "client-library", - "database", - "isomorphic", - "js", - "mit-license", - "node-js", - "nuxt", - "orm", - "postgres" + "supabase" ], "license": { - "key": "mit", "name": "MIT License", - "spdxId": "MIT", "url": "http://choosealicense.com/licenses/mit/", - "id": "MDc6TGljZW5zZTEz" + "id": "MDc6TGljZW5zZTEz", + "key": "mit", + "spdxId": "MIT" }, "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 17657775, - "weekDownloads": 3459929, - "size": 281601, - "latestRelease": "2.57.4", - "latestReleaseDate": "2025-09-09T14:36:47.439Z" + "downloads": 17396516, + "weekDownloads": 3111127, + "size": 330325, + "latestRelease": "2.76.1", + "latestReleaseDate": "2025-10-21T08:17:05.366Z" }, "score": 86, "matchingScoreModifiers": [ @@ -100129,8 +99458,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.167, - "topicSearchString": "javascript typescript supabase client-library database isomorphic js mit-license node-js nuxt orm postgres" + "popularity": 0.152, + "topicSearchString": "javascript typescript supabase" }, { "githubUrl": "https://github.com/zahidalidev/toastify-react-native", @@ -100157,9 +99486,9 @@ "createdAt": "2021-05-14T17:10:00Z", "pushedAt": "2025-07-20T15:46:48Z", "forks": 26, - "issues": 11, + "issues": 16, "subscribers": 3, - "stars": 185, + "stars": 203, "dependencies": 1 }, "name": "toastify-react-native", @@ -100167,16 +99496,12 @@ "isPrivate": false, "description": "🎉 toastify-react-native allows you to add notifications to your react-native app (ios, android) with ease. No more nonsense!", "topics": [ - "react", - "react-component", + "component", "pushalert", "toast", "popup", "toastify", - "react-native", - "react-toastify", "notification", - "toastify-react-native", "picker", "expo", "cli", @@ -100201,12 +99526,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "toastify-react-native", "npm": { - "downloads": 2785821, - "weekDownloads": 178824, + "downloads": 2557782, + "weekDownloads": 703682, "size": 551906, "latestRelease": "7.2.3", "latestReleaseDate": "2025-07-20T15:48:17.258Z" @@ -100217,8 +99543,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.055, - "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" + "popularity": 0.234, + "topicSearchString": "component pushalert toast popup toastify notification picker expo cli mobile ios android web typescript alert animation expo-cli javascript notifications" }, { "githubUrl": "https://github.com/sacmii/rn-float-box", @@ -100244,10 +99570,10 @@ "updatedAt": "2024-07-23T13:05:58Z", "createdAt": "2024-06-12T10:17:06Z", "pushedAt": "2024-07-23T13:05:58Z", - "forks": 1, + "forks": 2, "issues": 0, "subscribers": 1, - "stars": 9, + "stars": 10, "dependencies": 0 }, "name": "rn-float-box", @@ -100256,7 +99582,6 @@ "registry": "https://registry.npmjs.org/", "description": "Floating box component for react-native", "topics": [ - "react-native", "ios", "android" ], @@ -100270,12 +99595,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-float-box", "npm": { - "downloads": 4, - "weekDownloads": 1, + "downloads": 19, + "weekDownloads": 0, "size": 48615, "latestRelease": "0.2.3", "latestReleaseDate": "2024-07-23T13:05:54.450Z" @@ -100286,7 +99612,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/GSTJ/react-native-magic-modal/tree/main/packages/modal", @@ -100310,10 +99636,10 @@ "updatedAt": "2025-06-08T06:35:46Z", "createdAt": "2022-02-22T00:31:27Z", "pushedAt": "2025-06-08T06:35:46Z", - "forks": 15, - "issues": 2, - "subscribers": 4, - "stars": 545, + "forks": 13, + "issues": 3, + "subscribers": 3, + "stars": 561, "dependencies": 0 }, "name": "react-native-magic-modal", @@ -100322,7 +99648,6 @@ "registry": "https://registry.npmjs.org/", "description": "A magic modal that can be used imperatively from anywhere! 🦄", "topics": [ - "react-native", "ios", "android", "modal" @@ -100337,11 +99662,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8866, - "weekDownloads": 1376, + "downloads": 8094, + "weekDownloads": 2639, "size": 65962, "latestRelease": "6.1.0", "latestReleaseDate": "2025-06-11T20:01:02.824Z" @@ -100351,8 +99677,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.132, - "topicSearchString": "react-native ios android modal" + "popularity": 0.277, + "topicSearchString": "ios android modal" }, { "githubUrl": "https://github.com/EvanBacon/expo-quick-actions", @@ -100362,6 +99688,7 @@ "android": true, "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/EvanBacon/expo-quick-actions", @@ -100373,13 +99700,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-05-02T18:40:29Z", + "updatedAt": "2025-09-15T18:14:14Z", "createdAt": "2022-07-09T09:57:10Z", - "pushedAt": "2025-05-02T18:40:29Z", - "forks": 16, + "pushedAt": "2025-09-15T18:14:14Z", + "forks": 17, "issues": 12, - "subscribers": 5, - "stars": 516, + "subscribers": 4, + "stars": 549, "dependencies": 3 }, "name": "expo-quick-actions", @@ -100387,10 +99714,11 @@ "isPrivate": false, "description": "Add home screen quick actions / shortcuts and custom icons to your Expo app", "topics": [ - "react-native", "expo", "expo-quick-actions", "expoquickactions", + "app-icon", + "dynamic-app-icon", "kotlin", "swift" ], @@ -100404,23 +99732,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-quick-actions", "npm": { - "downloads": 71277, - "weekDownloads": 12667, - "size": 120336, - "latestRelease": "5.0.0", - "latestReleaseDate": "2025-05-13T17:33:51.025Z" + "downloads": 64181, + "weekDownloads": 15917, + "size": 121233, + "latestRelease": "6.0.0", + "latestReleaseDate": "2025-09-15T18:14:00.092Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.151, - "topicSearchString": "react-native expo expo-quick-actions expoquickactions kotlin swift" + "popularity": 0.211, + "topicSearchString": "expo expo-quick-actions expoquickactions app-icon dynamic-app-icon kotlin swift" }, { "githubUrl": "https://github.com/obytes/app-icon-badge", @@ -100430,6 +99759,7 @@ "android": true, "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/obytes/app-icon-badge", @@ -100446,8 +99776,8 @@ "pushedAt": "2024-11-13T16:36:16Z", "forks": 11, "issues": 4, - "subscribers": 15, - "stars": 351, + "subscribers": 14, + "stars": 353, "dependencies": 4 }, "name": "app-icon-badge", @@ -100460,7 +99790,6 @@ "badge-generator", "expo", "ios", - "react-native", "expo-plugin" ], "license": { @@ -100473,24 +99802,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true }, "npmPkg": "app-icon-badge", "npm": { - "downloads": 39088, - "weekDownloads": 6804, + "downloads": 42871, + "weekDownloads": 8476, "size": 660430, "latestRelease": "0.1.2", "latestReleaseDate": "2024-11-13T16:36:23.410Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.148, - "topicSearchString": "android app-icon badge-generator expo ios react-native expo-plugin" + "popularity": 0.168, + "topicSearchString": "android app-icon badge-generator expo ios expo-plugin" }, { "githubUrl": "https://github.com/achorein/expo-share-intent", @@ -100502,6 +99831,7 @@ "android": true, "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/achorein/expo-share-intent", @@ -100513,13 +99843,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-04T15:02:07Z", + "updatedAt": "2025-09-16T09:56:09Z", "createdAt": "2024-02-19T16:51:01Z", - "pushedAt": "2025-09-04T15:02:07Z", + "pushedAt": "2025-09-16T09:56:09Z", "forks": 32, - "issues": 26, - "subscribers": 8, - "stars": 488, + "issues": 25, + "subscribers": 6, + "stars": 507, "dependencies": 3 }, "name": "expo-share-intent", @@ -100528,7 +99858,6 @@ "registry": "https://registry.npmjs.org/", "description": "🚀 Simple share intent in an Expo Native Module", "topics": [ - "react-native", "expo", "expo-share-extension", "share-extension", @@ -100548,24 +99877,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-share-intent", "npm": { - "downloads": 40626, - "weekDownloads": 6325, - "size": 173969, - "latestRelease": "4.1.2", - "latestReleaseDate": "2025-09-04T15:02:06.199Z" + "downloads": 48803, + "weekDownloads": 9951, + "size": 175784, + "latestRelease": "5.0.1", + "latestReleaseDate": "2025-09-16T09:56:08.369Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.132, - "topicSearchString": "react-native expo expo-share-extension share-extension share-intent expo-config-plugin share-share-intent android ios" + "popularity": 0.173, + "topicSearchString": "expo expo-share-extension share-extension share-intent expo-config-plugin share-share-intent android ios" }, { "githubUrl": "https://github.com/watanabeyu/react-native-store-version", @@ -100585,7 +99914,7 @@ "updatedAt": "2023-03-11T03:08:39Z", "createdAt": "2019-01-22T10:21:19Z", "pushedAt": "2023-03-11T03:08:39Z", - "forks": 22, + "forks": 21, "issues": 7, "subscribers": 3, "stars": 135, @@ -100596,7 +99925,6 @@ "isPrivate": false, "description": "This module check an app's version on google playstore or ios app store.", "topics": [ - "react-native", "expo", "appstore", "playstore", @@ -100612,13 +99940,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-store-version", "npm": { - "downloads": 27933, - "weekDownloads": 4629, + "downloads": 29328, + "weekDownloads": 6935, "size": 20005, "latestRelease": "1.4.1", "latestReleaseDate": "2023-03-11T03:11:16.451Z" @@ -100628,8 +99957,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.609, - "topicSearchString": "react-native expo appstore playstore version" + "popularity": -0.549, + "topicSearchString": "expo appstore playstore version" }, { "githubUrl": "https://github.com/GeorgeHop/react-native-country-codes-picker", @@ -100652,10 +99981,10 @@ "updatedAt": "2024-10-08T15:55:31Z", "createdAt": "2021-03-25T08:50:33Z", "pushedAt": "2024-10-08T15:55:31Z", - "forks": 98, + "forks": 100, "issues": 32, "subscribers": 1, - "stars": 190, + "stars": 195, "dependencies": 0 }, "name": "react-native-country-codes-picker", @@ -100663,9 +99992,6 @@ "isPrivate": false, "description": "⚡ ⚡ ⚡This lib. provide multi lang. country picker with search functionality. Fully crossplatform and supported on React-native and expo. Didn't find your country ? Just add the required countries or locales and make a PR.⚡ ⚡ ⚡", "topics": [ - "react-native", - "react", - "native", "country", "picker", "codes", @@ -100687,12 +100013,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-country-codes-picker", "npm": { - "downloads": 122484, - "weekDownloads": 21675, + "downloads": 115239, + "weekDownloads": 26732, "size": 273454, "latestRelease": "2.3.5", "latestReleaseDate": "2024-01-12T12:40:41.027Z" @@ -100703,8 +100030,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.15, - "topicSearchString": "react-native react native country picker codes search animated multilanguage expo ios android country-codes" + "popularity": 0.197, + "topicSearchString": "country picker codes search animated multilanguage expo ios android country-codes" }, { "githubUrl": "https://github.com/AppAndFlow/react-native-google-autocomplete", @@ -100729,9 +100056,9 @@ "createdAt": "2018-04-18T00:07:29Z", "pushedAt": "2025-02-28T17:09:30Z", "forks": 33, - "issues": 3, + "issues": 4, "subscribers": 5, - "stars": 165, + "stars": 166, "dependencies": 2 }, "name": "@appandflow/react-native-google-autocomplete", @@ -100740,7 +100067,6 @@ "registry": "https://registry.npmjs.org/", "description": "A hook that simplifies using the Google Places Autocomplete API.", "topics": [ - "react-native", "ios", "android", "typescript", @@ -100760,11 +100086,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 12689, - "weekDownloads": 1672, + "downloads": 12550, + "weekDownloads": 2983, "size": 46604, "latestRelease": "2.1.0", "latestReleaseDate": "2025-02-28T17:09:26.366Z" @@ -100775,8 +100102,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.112, - "topicSearchString": "react-native ios android typescript google-autocomplete reactjs expo google-places-api google-places-autocomplete" + "popularity": 0.202, + "topicSearchString": "ios android typescript google-autocomplete reactjs expo google-places-api google-places-autocomplete" }, { "githubUrl": "https://github.com/mattermost/react-native-paste-input", @@ -100807,8 +100134,8 @@ "pushedAt": "2025-01-12T03:31:56Z", "forks": 25, "issues": 14, - "subscribers": 7, - "stars": 180, + "subscribers": 6, + "stars": 184, "dependencies": 1 }, "name": "@mattermost/react-native-paste-input", @@ -100816,7 +100143,6 @@ "isPrivate": false, "description": "React Native TextInput replacement to allow pasting files", "topics": [ - "react-native", "ios", "android", "paste", @@ -100832,11 +100158,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 5370, - "weekDownloads": 708, + "downloads": 5084, + "weekDownloads": 1192, "size": 288617, "latestRelease": "0.8.1", "latestReleaseDate": "2024-12-17T02:17:51.074Z" @@ -100846,8 +100174,8 @@ "Known", "Not updated recently" ], - "popularity": 0.112, - "topicSearchString": "react-native ios android paste text-input" + "popularity": 0.199, + "topicSearchString": "ios android paste text-input" }, { "githubUrl": "https://github.com/AppAndFlow/react-native-magic-scroll", @@ -100876,7 +100204,7 @@ "forks": 0, "issues": 0, "subscribers": 3, - "stars": 176, + "stars": 177, "dependencies": 0 }, "name": "@appandflow/react-native-magic-scroll", @@ -100885,7 +100213,6 @@ "registry": "https://registry.npmjs.org/", "description": "A cartesian way of managing scrollviews and keyboards.", "topics": [ - "react-native", "ios", "android", "expo", @@ -100903,21 +100230,20 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 474, + "downloads": 381, "weekDownloads": 68, "size": 142036, "latestRelease": "0.1.36", "latestReleaseDate": "2025-04-29T13:36:32.326Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.627, - "topicSearchString": "react-native ios android expo keyboard scrollview ui" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.597, + "topicSearchString": "ios android expo keyboard scrollview ui" }, { "githubUrl": "https://github.com/AppAndFlow/expo-image-cropping", @@ -100954,7 +100280,6 @@ "registry": "https://registry.npmjs.org/", "description": "A library for cropping image in Expo without any external native plugin", "topics": [ - "react-native", "ios", "android" ], @@ -100968,11 +100293,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 8, + "downloads": 32, "weekDownloads": 0, "size": 116990, "latestRelease": "0.2.2", @@ -100984,7 +100310,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/fabOnReact/react-native-wear-connectivity", @@ -101004,13 +100330,13 @@ "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": 0, + "issues": 2, "subscribers": 1, - "stars": 150, + "stars": 151, "dependencies": 0 }, "name": "react-native-wear-connectivity", @@ -101019,7 +100345,6 @@ "registry": "https://registry.npmjs.org/", "description": "Connect Wear OS apps with react-native.", "topics": [ - "react-native", "ios", "android", "wear-os", @@ -101040,23 +100365,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-wear-connectivity", "npm": { - "downloads": 890, - "weekDownloads": 157, + "downloads": 566, + "weekDownloads": 129, "size": 76116, "latestRelease": "0.1.15", "latestReleaseDate": "2025-08-22T13:11:23.528Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.6, - "topicSearchString": "react-native ios android wear-os wearable wear-api wearable-devices wearos renative renative-wear" + "popularity": -0.556, + "topicSearchString": "ios android wear-os wearable wear-api wearable-devices wearos renative renative-wear" }, { "githubUrl": "https://github.com/gnmjafari/react-native-multipurpose-calendar", @@ -101081,7 +100407,7 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 2, + "stars": 3, "dependencies": 2 }, "name": "react-native-multipurpose-calendar", @@ -101089,7 +100415,6 @@ "isPrivate": false, "description": "", "topics": [ - "react-native", "android", "ios", "persian-calendar", @@ -101105,11 +100430,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-multipurpose-calendar", "npm": { - "downloads": 4, + "downloads": 559, "weekDownloads": 0, "size": 9246336, "latestRelease": "2.1.3", @@ -101121,7 +100447,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native android ios persian-calendar calendar" + "topicSearchString": "android ios persian-calendar calendar" }, { "githubUrl": "https://github.com/ro-mgh/mallaui/tree/main/packages/cli", @@ -101163,7 +100489,6 @@ "components", "ui", "cli", - "react-native", "expo", "malla", "mallaui", @@ -101179,22 +100504,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 6, + "downloads": 45, "weekDownloads": 1, "size": 45158, "latestRelease": "0.0.8", "latestReleaseDate": "2024-08-06T15:26:03.670Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.55, - "topicSearchString": "components ui cli react-native expo malla mallaui malla-ui" + "popularity": -0.73, + "topicSearchString": "components ui cli expo malla mallaui malla-ui" }, { "githubUrl": "https://github.com/microsoft/rnx-kit/tree/main/packages/align-deps", @@ -101216,13 +100541,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-11T07:22:02Z", + "updatedAt": "2025-10-21T09:04:22Z", "createdAt": "2019-11-15T21:38:13Z", - "pushedAt": "2025-09-11T07:22:02Z", - "forks": 106, - "issues": 45, - "subscribers": 17, - "stars": 1661, + "pushedAt": "2025-10-21T09:04:22Z", + "forks": 108, + "issues": 46, + "subscribers": 16, + "stars": 1672, "dependencies": 0 }, "name": "@rnx-kit/align-deps", @@ -101240,14 +100565,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 245811, - "weekDownloads": 43638, - "size": 1029562, - "latestRelease": "3.2.1", - "latestReleaseDate": "2025-08-13T17:42:42.153Z" + "downloads": 293047, + "weekDownloads": 61305, + "size": 1147744, + "latestRelease": "3.3.0", + "latestReleaseDate": "2025-10-21T09:10:43.569Z" }, "score": 73, "matchingScoreModifiers": [ @@ -101256,7 +100582,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.151, + "popularity": 0.178, "topicSearchString": "" }, { @@ -101268,6 +100594,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/wwdrew/expo-spotify-sdk", @@ -101293,7 +100620,6 @@ "isPrivate": false, "description": "Expo Module for native Spotify SDKs", "topics": [ - "react-native", "expo", "expo-spotify-sdk", "expospotifysdk", @@ -101309,21 +100635,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 1422, - "weekDownloads": 303, + "downloads": 1212, + "weekDownloads": 367, "size": 1185449, "latestRelease": "0.5.0", "latestReleaseDate": "2025-04-22T08:41:10.217Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.069, - "topicSearchString": "react-native expo expo-spotify-sdk expospotifysdk spotify" + "popularity": 0.008, + "topicSearchString": "expo expo-spotify-sdk expospotifysdk spotify" }, { "githubUrl": "https://github.com/wwdrew/expo-android-shared-preferences", @@ -101358,7 +100686,6 @@ "isPrivate": false, "description": "Expo Module for Android SharedPreferences", "topics": [ - "react-native", "expo", "expo-android-shared-preferences", "expoandroidsharedpreferences" @@ -101373,22 +100700,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 220, - "weekDownloads": 28, + "downloads": 321, + "weekDownloads": 27, "size": 30682, "latestRelease": "0.3.0", "latestReleaseDate": "2024-06-27T09:15:09.845Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.89, - "topicSearchString": "react-native expo expo-android-shared-preferences expoandroidsharedpreferences" + "popularity": -0.928, + "topicSearchString": "expo expo-android-shared-preferences expoandroidsharedpreferences" }, { "githubUrl": "https://github.com/wwdrew/expo-android-account-manager", @@ -101398,6 +100726,7 @@ ], "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/wwdrew/expo-android-account-manager", @@ -101423,7 +100752,6 @@ "isPrivate": false, "description": "Expo Module for Android AccountManager", "topics": [ - "react-native", "expo", "expo-android-account-manager", "expoandroidaccountmanager" @@ -101438,22 +100766,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 162, - "weekDownloads": 24, + "downloads": 248, + "weekDownloads": 28, "size": 30151, "latestRelease": "0.1.1", "latestReleaseDate": "2024-08-12T08:24:44.616Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.874, - "topicSearchString": "react-native expo expo-android-account-manager expoandroidaccountmanager" + "popularity": -0.903, + "topicSearchString": "expo expo-android-account-manager expoandroidaccountmanager" }, { "githubUrl": "https://github.com/ajakka/react-native-here-explore", @@ -101476,10 +100805,10 @@ "updatedAt": "2025-04-04T18:46:20Z", "createdAt": "2023-11-26T16:59:37Z", "pushedAt": "2025-04-04T18:46:20Z", - "forks": 13, - "issues": 2, + "forks": 15, + "issues": 3, "subscribers": 7, - "stars": 108, + "stars": 109, "dependencies": 0 }, "name": "react-native-here-explore", @@ -101488,7 +100817,6 @@ "registry": "https://registry.npmjs.org/", "description": "HERE Maps in React Native", "topics": [ - "react-native", "ios", "android", "heremaps" @@ -101503,22 +100831,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-here-explore", "npm": { - "downloads": 54, - "weekDownloads": 5, + "downloads": 48, + "weekDownloads": 6, "size": 200742, "latestRelease": "2.2.0", "latestReleaseDate": "2025-04-03T19:43:57.893Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.667, - "topicSearchString": "react-native ios android heremaps" + "popularity": -0.641, + "topicSearchString": "ios android heremaps" }, { "githubUrl": "https://github.com/birdofpreyru/react-native-audio", @@ -101540,13 +100871,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-17T15:35:39Z", + "updatedAt": "2025-10-12T14:19:23Z", "createdAt": "2021-05-31T20:12:36Z", - "pushedAt": "2025-08-17T15:35:39Z", + "pushedAt": "2025-10-12T14:19:23Z", "forks": 6, "issues": 6, "subscribers": 2, - "stars": 51, + "stars": 52, "dependencies": 1 }, "name": "@dr.pogodin/react-native-audio", @@ -101562,7 +100893,6 @@ "playback", "sample", "player", - "react-native", "ios", "android" ], @@ -101576,19 +100906,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 878, - "weekDownloads": 243, - "size": 127662, - "latestRelease": "1.16.0", - "latestReleaseDate": "2025-08-17T15:42:30.655Z" + "downloads": 1243, + "weekDownloads": 76, + "size": 127663, + "latestRelease": "1.17.0", + "latestReleaseDate": "2025-10-12T14:30:19.747Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": -0.514, - "topicSearchString": "audio microphone input recording playback sample player react-native ios android" + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": 0.052, + "topicSearchString": "audio microphone input recording playback sample player ios android" }, { "githubUrl": "https://github.com/birdofpreyru/react-native-fs", @@ -101611,13 +100945,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-21T09:48:49Z", + "updatedAt": "2025-10-12T13:45:17Z", "createdAt": "2023-05-23T11:08:00Z", - "pushedAt": "2025-08-21T09:48:49Z", - "forks": 30, - "issues": 26, - "subscribers": 4, - "stars": 274, + "pushedAt": "2025-10-12T13:45:17Z", + "forks": 32, + "issues": 27, + "subscribers": 5, + "stars": 279, "dependencies": 2 }, "name": "@dr.pogodin/react-native-fs", @@ -101626,7 +100960,6 @@ "registry": "https://registry.npmjs.org/", "description": "File system access for React Native", "topics": [ - "react-native", "ios", "android", "fs", @@ -101634,7 +100967,6 @@ "download", "upload", "file-transfer", - "react", "rnfs" ], "license": { @@ -101647,22 +100979,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 73042, - "weekDownloads": 14047, - "size": 420120, - "latestRelease": "2.35.1", - "latestReleaseDate": "2025-08-21T09:52:41.899Z" + "downloads": 56185, + "weekDownloads": 13303, + "size": 420121, + "latestRelease": "2.36.0", + "latestReleaseDate": "2025-10-12T13:49:18.365Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": 0.163, - "topicSearchString": "react-native ios android fs filesystem download upload file-transfer react rnfs" + "popularity": 0.201, + "topicSearchString": "ios android fs filesystem download upload file-transfer rnfs" }, { "githubUrl": "https://github.com/birdofpreyru/react-native-static-server", @@ -101682,13 +101016,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-06T18:57:59Z", + "updatedAt": "2025-10-12T13:53:19Z", "createdAt": "2022-01-21T20:32:12Z", - "pushedAt": "2025-09-06T18:57:59Z", - "forks": 29, - "issues": 16, - "subscribers": 2, - "stars": 209, + "pushedAt": "2025-10-12T13:53:19Z", + "forks": 30, + "issues": 17, + "subscribers": 3, + "stars": 213, "dependencies": 1 }, "name": "@dr.pogodin/react-native-static-server", @@ -101697,7 +101031,6 @@ "registry": "https://registry.npmjs.org/", "description": "Embedded HTTP server for React Native", "topics": [ - "react-native", "ios", "android", "lighttpd", @@ -101706,13 +101039,11 @@ "server", "http", "https", - "react", "file", "java", "javascript", "js", "mobile", - "native", "objective-c" ], "license": { @@ -101725,22 +101056,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 5470, - "weekDownloads": 1052, - "size": 26854736, - "latestRelease": "0.24.2", - "latestReleaseDate": "2025-09-07T13:23:12.572Z" + "downloads": 7089, + "weekDownloads": 1525, + "size": 26859665, + "latestRelease": "0.25.0", + "latestReleaseDate": "2025-10-12T14:12:55.563Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": 0.163, - "topicSearchString": "react-native ios android lighttpd windows embed server http https react file java javascript js mobile native objective-c" + "popularity": 0.183, + "topicSearchString": "ios android lighttpd windows embed server http https file java javascript js mobile objective-c" }, { "githubUrl": "https://github.com/RakaDoank/react-native-android-finish", @@ -101784,21 +101117,20 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-android-finish", "npm": { - "downloads": 139, - "weekDownloads": 16, + "downloads": 60, + "weekDownloads": 3, "size": 34946, "latestRelease": "1.2.6", "latestReleaseDate": "2025-07-22T04:25:50.355Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.9, + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.957, "topicSearchString": "" }, { @@ -101824,13 +101156,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T11:52:35Z", + "updatedAt": "2025-10-17T17:12:49Z", "createdAt": "2024-06-17T16:44:42Z", - "pushedAt": "2025-09-12T11:52:35Z", - "forks": 34, - "issues": 22, - "subscribers": 19, - "stars": 781, + "pushedAt": "2025-10-17T17:12:49Z", + "forks": 37, + "issues": 20, + "subscribers": 18, + "stars": 811, "dependencies": 0 }, "name": "react-native-wgpu", @@ -101839,7 +101171,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native WebGPU", "topics": [ - "react-native", "ios", "android" ], @@ -101853,22 +101184,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 1490, - "weekDownloads": 183, - "size": 372653651, - "latestRelease": "0.2.5", - "latestReleaseDate": "2025-09-12T12:01:52.272Z" + "downloads": 1703, + "weekDownloads": 340, + "size": 382023644, + "latestRelease": "0.2.10", + "latestReleaseDate": "2025-10-17T17:21:34.513Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": 0.105, - "topicSearchString": "react-native ios android" + "popularity": 0.17, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/pmndrs/zustand", @@ -101893,13 +101226,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T08:30:50Z", + "updatedAt": "2025-10-20T13:37:17Z", "createdAt": "2019-04-09T09:10:06Z", - "pushedAt": "2025-09-12T08:30:50Z", - "forks": 1785, + "pushedAt": "2025-10-20T13:37:17Z", + "forks": 1820, "issues": 2, "subscribers": 177, - "stars": 54629, + "stars": 55263, "dependencies": 0 }, "name": "zustand", @@ -101907,14 +101240,13 @@ "isPrivate": true, "description": "🐻 Bear necessities for state management in React", "topics": [ - "react", "state", "manager", "management", "redux", "store", "hooks", - "react-context", + "context", "reactjs", "state-management", "hacktoberfest" @@ -101929,26 +101261,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "zustand", "npm": { - "downloads": 47818160, - "weekDownloads": 8127914, + "downloads": 49548442, + "weekDownloads": 10684683, "size": 92449, "latestRelease": "5.0.8", "latestReleaseDate": "2025-08-19T23:19:16.970Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.144, - "topicSearchString": "react state manager management redux store hooks react-context reactjs state-management hacktoberfest" + "popularity": 0.183, + "topicSearchString": "state manager management redux store hooks context reactjs state-management hacktoberfest" }, { "githubUrl": "https://github.com/faizalshap/react-native-otp-verify", @@ -101973,9 +101305,9 @@ "createdAt": "2018-10-15T07:46:51Z", "pushedAt": "2024-09-04T10:54:49Z", "forks": 90, - "issues": 23, + "issues": 24, "subscribers": 5, - "stars": 278, + "stars": 279, "dependencies": 0 }, "name": "react-native-otp-verify", @@ -101984,7 +101316,6 @@ "registry": "https://registry.npmjs.org/", "description": "React native sms verification without additional permissions", "topics": [ - "react-native", "ios", "android", "sms-verification" @@ -101999,12 +101330,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-otp-verify", "npm": { - "downloads": 89107, - "weekDownloads": 14507, + "downloads": 83574, + "weekDownloads": 20293, "size": 401957, "latestRelease": "1.1.8", "latestReleaseDate": "2024-02-16T14:20:06.182Z" @@ -102015,8 +101347,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.138, - "topicSearchString": "react-native ios android sms-verification" + "popularity": 0.206, + "topicSearchString": "ios android sms-verification" }, { "githubUrl": "https://github.com/gabrieldonadel/rn-material-ui-textfield", @@ -102047,7 +101379,7 @@ "pushedAt": "2025-05-15T14:04:39Z", "forks": 34, "issues": 19, - "subscribers": 3, + "subscribers": 2, "stars": 41, "dependencies": 2 }, @@ -102056,9 +101388,7 @@ "isPrivate": false, "description": "Material UI textfield", "topics": [ - "react", - "react-component", - "react-native", + "component", "ios", "android", "material", @@ -102082,12 +101412,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-material-ui-textfield", "npm": { - "downloads": 14720, - "weekDownloads": 2351, + "downloads": 15403, + "weekDownloads": 3274, "size": 860227, "latestRelease": "1.0.9", "latestReleaseDate": "2022-11-03T18:55:54.464Z" @@ -102096,8 +101427,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.136, - "topicSearchString": "react react-component react-native ios android material material-ui input textinput field textfield floating label collaborate student-vscode" + "popularity": 0.181, + "topicSearchString": "component ios android material material-ui input textinput field textfield floating label collaborate student-vscode" }, { "githubUrl": "https://github.com/TanStack/query/tree/main/packages/react-query", @@ -102122,13 +101453,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-10T14:10:04Z", + "updatedAt": "2025-10-16T15:09:02Z", "createdAt": "2019-09-10T19:23:58Z", - "pushedAt": "2025-09-10T14:10:04Z", - "forks": 3429, - "issues": 64, + "pushedAt": "2025-10-16T15:09:02Z", + "forks": 3490, + "issues": 70, "subscribers": 214, - "stars": 46623, + "stars": 47069, "dependencies": 1 }, "name": "@tanstack/react-query", @@ -102146,14 +101477,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 58158303, - "weekDownloads": 10696362, - "size": 730156, - "latestRelease": "5.87.4", - "latestReleaseDate": "2025-09-10T14:10:10.845Z" + "downloads": 49130647, + "weekDownloads": 11043980, + "size": 732734, + "latestRelease": "5.90.5", + "latestReleaseDate": "2025-10-16T15:15:34.964Z" }, "score": 97, "matchingScoreModifiers": [ @@ -102163,7 +101495,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.156, + "popularity": 0.191, "topicSearchString": "" }, { @@ -102185,12 +101517,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-23T19:04:50Z", + "updatedAt": "2025-09-02T06:52:10Z", "createdAt": "2016-08-02T09:34:28Z", - "pushedAt": "2025-07-23T19:04:50Z", - "forks": 99, + "pushedAt": "2025-09-02T06:52:10Z", + "forks": 100, "issues": 55, - "subscribers": 190, + "subscribers": 188, "stars": 131, "dependencies": 0 }, @@ -102199,7 +101531,6 @@ "isPrivate": false, "description": "React Native wrapper for Razorpay's mobile SDKs", "topics": [ - "react-native", "razorpay", "payments" ], @@ -102213,12 +101544,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-razorpay", "npm": { - "downloads": 31430, - "weekDownloads": 4937, + "downloads": 33770, + "weekDownloads": 7413, "size": 515007, "latestRelease": "2.3.0", "latestReleaseDate": "2022-11-09T08:52:09.054Z" @@ -102229,8 +101561,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.134, - "topicSearchString": "react-native razorpay payments" + "popularity": 0.187, + "topicSearchString": "razorpay payments" }, { "githubUrl": "https://github.com/customerglu/CG-SDK-React-Native", @@ -102266,7 +101598,6 @@ "registry": "https://registry.npmjs.org/", "description": "CustomerGlu React Native plugin", "topics": [ - "react-native", "ios", "android" ], @@ -102280,11 +101611,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 52, - "weekDownloads": 18, + "downloads": 347, + "weekDownloads": 9, "size": 220555, "latestRelease": "3.1.2", "latestReleaseDate": "2025-05-15T14:10:51.992Z" @@ -102294,8 +101626,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.7, - "topicSearchString": "react-native ios android" + "popularity": -0.978, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/moengage/React-Native/tree/master/sdk/core", @@ -102316,13 +101648,13 @@ "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": 4, - "stars": 9, + "subscribers": 3, + "stars": 10, "dependencies": 0 }, "name": "react-native-moengage", @@ -102332,7 +101664,6 @@ "topics": [ "moengage", "push-notification", - "react-native", "ios", "android", "device", @@ -102341,22 +101672,23 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 43955, - "weekDownloads": 7415, - "size": 262349, - "latestRelease": "12.2.0", - "latestReleaseDate": "2025-09-11T07:33:15.610Z" + "downloads": 51239, + "weekDownloads": 11755, + "size": 262495, + "latestRelease": "12.3.0", + "latestReleaseDate": "2025-10-17T12:23:58.156Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.107, - "topicSearchString": "moengage push-notification react-native ios android device events" + "popularity": -0.055, + "topicSearchString": "moengage push-notification ios android device events" }, { "githubUrl": "https://github.com/AppsFlyerSDK/appsflyer-react-native-plugin", @@ -102369,6 +101701,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/AppsFlyerSDK/appsflyer-react-native-plugin", @@ -102383,10 +101716,10 @@ "updatedAt": "2025-09-03T14:13:43Z", "createdAt": "2016-11-13T16:10:51Z", "pushedAt": "2025-09-03T14:13:43Z", - "forks": 209, - "issues": 26, - "subscribers": 11, - "stars": 309, + "forks": 210, + "issues": 23, + "subscribers": 10, + "stars": 311, "dependencies": 0 }, "name": "react-native-appsflyer", @@ -102394,9 +101727,6 @@ "isPrivate": false, "description": " AppsFlyer plugin for React Native", "topics": [ - "react-native", - "react", - "native", "appsflyer", "sdk" ], @@ -102410,24 +101740,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 566409, - "weekDownloads": 85387, + "downloads": 500915, + "weekDownloads": 116336, "size": 561668, "latestRelease": "6.17.5", "latestReleaseDate": "2025-09-03T14:17:21.950Z" }, - "score": 73, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.128, - "topicSearchString": "react-native react native appsflyer sdk" + "popularity": 0.197, + "topicSearchString": "appsflyer sdk" }, { "githubUrl": "https://github.com/rnheroes/react-native-toastable", @@ -102455,7 +101784,7 @@ "forks": 5, "issues": 4, "subscribers": 1, - "stars": 130, + "stars": 131, "dependencies": 0 }, "name": "react-native-toastable", @@ -102464,7 +101793,6 @@ "registry": "https://registry.npmjs.org/", "description": "🍞 Blazingly fast and fully customizable Toaster component for React Native", "topics": [ - "react-native", "ios", "android", "toaster", @@ -102473,8 +101801,7 @@ "alert", "snackbar", "toastable", - "toastify", - "react" + "toastify" ], "license": { "key": "mit", @@ -102486,12 +101813,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-toastable", "npm": { - "downloads": 1894, - "weekDownloads": 246, + "downloads": 1953, + "weekDownloads": 377, "size": 161927, "latestRelease": "0.5.0", "latestReleaseDate": "2024-07-04T10:01:42.202Z" @@ -102501,8 +101829,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.111, - "topicSearchString": "react-native ios android toaster toast notification alert snackbar toastable toastify react" + "popularity": 0.164, + "topicSearchString": "ios android toaster toast notification alert snackbar toastable toastify" }, { "githubUrl": "https://github.com/rnheroes/react-native-ruler-picker", @@ -102530,10 +101858,10 @@ "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": 118, + "stars": 124, "dependencies": 0 }, "name": "react-native-ruler-picker", @@ -102542,13 +101870,11 @@ "registry": "https://registry.npmjs.org/", "description": "⚡ Lightning-fast and customizable Ruler Picker component for React Native", "topics": [ - "react-native", "ios", "android", "ruler", "picker", "ruler-picker", - "react", "reactnative" ], "license": { @@ -102561,12 +101887,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ruler-picker", "npm": { - "downloads": 4839, - "weekDownloads": 755, + "downloads": 6418, + "weekDownloads": 1173, "size": 68359, "latestRelease": "0.2.2", "latestReleaseDate": "2024-03-02T21:57:22.543Z" @@ -102576,8 +101903,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.133, - "topicSearchString": "react-native ios android ruler picker ruler-picker react reactnative" + "popularity": 0.155, + "topicSearchString": "ios android ruler picker ruler-picker reactnative" }, { "githubUrl": "https://github.com/remigallego/react-native-use-sound", @@ -102623,12 +101950,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-use-sound", "npm": { - "downloads": 680, - "weekDownloads": 109, + "downloads": 669, + "weekDownloads": 156, "size": 960950, "latestRelease": "1.2.2", "latestReleaseDate": "2022-07-26T11:57:38.938Z" @@ -102638,7 +101966,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.364, + "popularity": -1.301, "topicSearchString": "" }, { @@ -102679,7 +102007,6 @@ "registry": "https://registry.npmjs.org/", "description": "Qr generator lib for react native", "topics": [ - "react-native", "ios", "android" ], @@ -102693,20 +102020,22 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-qr", "npm": { - "downloads": 19, - "weekDownloads": 5, + "downloads": 18, + "weekDownloads": 0, "size": 50599, "latestRelease": "2.0.1", "latestReleaseDate": "2025-07-21T13:52:04.889Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.75, - "topicSearchString": "react-native ios android" + "popularity": -1, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/aptabase/aptabase-react-native", @@ -102733,13 +102062,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2024-08-01T09:32:53Z", + "updatedAt": "2025-09-27T09:13:18Z", "createdAt": "2023-05-26T20:59:12Z", - "pushedAt": "2024-08-01T09:32:53Z", - "forks": 6, + "pushedAt": "2025-09-27T09:13:18Z", + "forks": 7, "issues": 1, "subscribers": 2, - "stars": 31, + "stars": 33, "dependencies": 0 }, "name": "@aptabase/react-native", @@ -102748,8 +102077,7 @@ "description": "React Native SDK for Aptabase: Open Source, Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps", "topics": [ "analytics", - "privacy", - "react-native" + "privacy" ], "license": { "key": "mit", @@ -102761,22 +102089,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2605, - "weekDownloads": 598, - "size": 46109, - "latestRelease": "0.3.10", - "latestReleaseDate": "2024-08-01T09:41:44.044Z" + "downloads": 2893, + "weekDownloads": 485, + "size": 46124, + "latestRelease": "0.4.0", + "latestReleaseDate": "2025-09-27T09:19:01.327Z" }, - "score": 32, + "score": 49, "matchingScoreModifiers": [ - "Not updated recently", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.195, - "topicSearchString": "analytics privacy react-native" + "popularity": 0.143, + "topicSearchString": "analytics privacy" }, { "githubUrl": "https://github.com/lukaszkurantdev/react-native-fast-opencv", @@ -102801,10 +102130,10 @@ "updatedAt": "2025-09-02T10:43:33Z", "createdAt": "2024-08-03T09:18:50Z", "pushedAt": "2025-09-02T10:43:33Z", - "forks": 29, - "issues": 5, + "forks": 30, + "issues": 8, "subscribers": 6, - "stars": 183, + "stars": 189, "dependencies": 0 }, "name": "react-native-fast-opencv", @@ -102813,7 +102142,6 @@ "registry": "https://registry.npmjs.org/", "description": "A powerful port of OpenCV for React Native.", "topics": [ - "react-native", "ios", "android", "cpp", @@ -102831,23 +102159,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-fast-opencv", "npm": { - "downloads": 3790, - "weekDownloads": 581, + "downloads": 4773, + "weekDownloads": 1037, "size": 713232, "latestRelease": "0.4.6", "latestReleaseDate": "2025-06-11T16:30:47.071Z" }, - "score": 59, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated" + "Known" ], - "popularity": 0.13, - "topicSearchString": "react-native ios android cpp jsi new-architecture opencv" + "popularity": 0.185, + "topicSearchString": "ios android cpp jsi new-architecture opencv" }, { "githubUrl": "https://github.com/react-native-elements/react-native-elements/tree/next/packages/base", @@ -102874,10 +102203,10 @@ "updatedAt": "2024-01-29T05:19:55Z", "createdAt": "2016-09-08T14:21:41Z", "pushedAt": "2024-01-29T05:19:55Z", - "forks": 4610, + "forks": 4618, "issues": 144, "subscribers": 372, - "stars": 25570, + "stars": 25621, "dependencies": 6 }, "name": "@rneui/base", @@ -102885,9 +102214,6 @@ "isPrivate": false, "description": "Cross Platform React Native UI Toolkit", "topics": [ - "react", - "native", - "react-native", "elements", "rneui", "ui", @@ -102907,11 +102233,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 294211, - "weekDownloads": 53182, + "downloads": 269653, + "weekDownloads": 61581, "size": 295280, "latestRelease": "4.0.0-rc.8", "latestReleaseDate": "2023-07-28T19:17:58.110Z" @@ -102925,8 +102252,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.596, - "topicSearchString": "react native react-native elements rneui ui components ui-library ios android bootstrap" + "popularity": -0.556, + "topicSearchString": "elements rneui ui components ui-library ios android bootstrap" }, { "githubUrl": "https://github.com/react-native-elements/react-native-elements/tree/next/packages/themed", @@ -102956,10 +102283,10 @@ "updatedAt": "2024-02-04T03:55:07Z", "createdAt": "2016-09-08T14:21:41Z", "pushedAt": "2024-02-04T03:55:07Z", - "forks": 4610, + "forks": 4618, "issues": 144, "subscribers": 372, - "stars": 25570, + "stars": 25621, "dependencies": 0 }, "name": "@rneui/themed", @@ -102967,9 +102294,6 @@ "isPrivate": false, "description": "Cross Platform React Native UI Toolkit", "topics": [ - "react", - "native", - "react-native", "elements", "rneui", "themed", @@ -102990,11 +102314,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 268048, - "weekDownloads": 47746, + "downloads": 241024, + "weekDownloads": 55490, "size": 69808, "latestRelease": "4.0.0-rc.8", "latestReleaseDate": "2023-07-28T19:18:33.533Z" @@ -103008,8 +102333,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.599, - "topicSearchString": "react native react-native elements rneui themed ui components ui-library ios android bootstrap" + "popularity": -0.554, + "topicSearchString": "elements rneui themed ui components ui-library ios android bootstrap" }, { "githubUrl": "https://github.com/gunnartorfis/sonner-native", @@ -103039,10 +102364,10 @@ "updatedAt": "2025-08-28T09:02:41Z", "createdAt": "2024-09-03T22:04:50Z", "pushedAt": "2025-08-28T09:02:41Z", - "forks": 35, - "issues": 3, + "forks": 39, + "issues": 4, "subscribers": 4, - "stars": 884, + "stars": 923, "dependencies": 0 }, "name": "sonner-native", @@ -103051,14 +102376,12 @@ "registry": "https://registry.npmjs.org/", "description": "An opinionated toast component for React Native. A port of @emilkowalski's sonner.", "topics": [ - "react-native", "ios", "android", "toast", "toasts", "reanimated", - "sonner", - "sonner-native" + "sonner" ], "license": { "key": "mit", @@ -103070,25 +102393,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "sonner-native", "npm": { - "downloads": 154754, - "weekDownloads": 21222, + "downloads": 152632, + "weekDownloads": 34675, "size": 302043, "latestRelease": "0.21.1", "latestReleaseDate": "2025-08-28T09:02:37.957Z" }, - "score": 73, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.117, - "topicSearchString": "react-native ios android toast toasts reanimated sonner sonner-native" + "popularity": 0.193, + "topicSearchString": "ios android toast toasts reanimated sonner" }, { "githubUrl": "https://github.com/gabriel-logan/mobile-native-barcode-generator", @@ -103112,9 +102434,9 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2024-09-13T16:10:19Z", + "updatedAt": "2025-09-24T19:08:25Z", "createdAt": "2024-09-08T07:08:57Z", - "pushedAt": "2024-09-13T16:10:19Z", + "pushedAt": "2025-09-24T19:08:25Z", "forks": 0, "issues": 0, "subscribers": 1, @@ -103127,20 +102449,18 @@ "registry": "https://registry.npmjs.org/", "description": "Library to generate barcodes and qr codes natively using Kotlin and Swift, integrated with react native.", "topics": [ - "react-native", "ios", "android", "barcode", "qr-code", "barcode-generator", "qr-code-generator", - "mobile-native-barcode-generator", + "mobile-barcode-generator", "java", "kotlin", "library", "npm", "npm-library", - "react", "swift" ], "license": { @@ -103153,23 +102473,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "mobile-native-barcode-generator", "npm": { - "downloads": 20, - "weekDownloads": 2, + "downloads": 775, + "weekDownloads": 7, "size": 68715, "latestRelease": "0.0.7", "latestReleaseDate": "2024-09-10T14:18:50.443Z" }, - "score": 32, + "score": 51, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.9, - "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" + "popularity": -0.992, + "topicSearchString": "ios android barcode qr-code barcode-generator qr-code-generator mobile-barcode-generator java kotlin library npm npm-library swift" }, { "githubUrl": "https://github.com/gabriel-logan/expo-barcode", @@ -103203,7 +102524,6 @@ "isPrivate": false, "description": "Library to generate barcodes and qr codes natively using Kotlin and Swift, integrated with expo.", "topics": [ - "react-native", "expo", "expo-barcode", "expobarcode", @@ -103213,15 +102533,14 @@ "qr-code", "barcode-generator", "qr-code-generator", - "mobile-native-barcode-generator", + "mobile-barcode-generator", "expo-library", "expo-modules", "java", "kotlin", "library", "npm", - "npm-library", - "react" + "npm-library" ], "license": { "key": "mit", @@ -103233,23 +102552,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-barcode", "npm": { - "downloads": 124, - "weekDownloads": 11, + "downloads": 107, + "weekDownloads": 24, "size": 21923, "latestRelease": "0.0.3", "latestReleaseDate": "2024-09-08T16:13:40.789Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.924, - "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" + "popularity": -0.808, + "topicSearchString": "expo expo-barcode expobarcode ios android barcode qr-code barcode-generator qr-code-generator mobile-barcode-generator expo-library expo-modules java kotlin library npm npm-library" }, { "githubUrl": "https://github.com/swan-io/react-native-browser", @@ -103279,8 +102599,8 @@ "pushedAt": "2025-08-19T10:08:33Z", "forks": 15, "issues": 0, - "subscribers": 6, - "stars": 194, + "subscribers": 5, + "stars": 198, "dependencies": 0 }, "name": "@swan-io/react-native-browser", @@ -103290,7 +102610,6 @@ "description": "An easy-to-use in-app browser module for React Native, powered by Chrome Custom Tabs / SFSafariViewController.", "topics": [ "browser", - "react-native", "in-app-browser", "safari", "chrome-custom-tabs" @@ -103305,23 +102624,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 20406, - "weekDownloads": 3401, + "downloads": 35014, + "weekDownloads": 6597, "size": 51630, "latestRelease": "1.0.1", "latestReleaseDate": "2025-08-19T10:10:22.580Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.142, - "topicSearchString": "browser react-native in-app-browser safari chrome-custom-tabs" + "popularity": 0.16, + "topicSearchString": "browser in-app-browser safari chrome-custom-tabs" }, { "githubUrl": "https://github.com/BouarourMohammed/react-native-animated-rolling-numbers", @@ -103345,10 +102664,10 @@ "updatedAt": "2025-06-15T06:53:38Z", "createdAt": "2024-09-06T08:11:28Z", "pushedAt": "2025-06-15T06:53:38Z", - "forks": 14, - "issues": 3, + "forks": 17, + "issues": 4, "subscribers": 3, - "stars": 232, + "stars": 241, "dependencies": 0 }, "name": "react-native-animated-rolling-numbers", @@ -103356,14 +102675,12 @@ "isPrivate": false, "description": "🚀 The Animated Rolling Numbers component for React Native seamlessly blends a sophisticated number rotation effect with dynamic value updates, creating an engaging and interactive experience that enhances your user interfaces with a touch of elegance and excitement.", "topics": [ - "react-native", "animated-numbers", "rolling-numbers", "animated-digits", "animated-number", "reanimated", "numbers", - "react", "digits", "animated-rollilng-numbers" ], @@ -103377,12 +102694,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-rolling-numbers", "npm": { - "downloads": 22375, - "weekDownloads": 3519, + "downloads": 24703, + "weekDownloads": 5104, "size": 68348, "latestRelease": "2.0.0", "latestReleaseDate": "2025-02-20T07:35:24.025Z" @@ -103392,8 +102710,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.134, - "topicSearchString": "react-native animated-numbers rolling-numbers animated-digits animated-number reanimated numbers react digits animated-rollilng-numbers" + "popularity": 0.176, + "topicSearchString": "animated-numbers rolling-numbers animated-digits animated-number reanimated numbers digits animated-rollilng-numbers" }, { "githubUrl": "https://github.com/ayonshafiul/react-native-press-and-hold-button", @@ -103432,7 +102750,6 @@ "registry": "https://registry.npmjs.org/", "description": "A customizable press and hold button component for React native", "topics": [ - "react-native", "ios", "android", "press", @@ -103450,12 +102767,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-press-and-hold-button", "npm": { - "downloads": 459, - "weekDownloads": 58, + "downloads": 503, + "weekDownloads": 82, "size": 83120, "latestRelease": "0.6.0", "latestReleaseDate": "2024-10-16T22:50:30.281Z" @@ -103465,8 +102783,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.893, - "topicSearchString": "react-native ios android press hold long-press button" + "popularity": -0.861, + "topicSearchString": "ios android press hold long-press button" }, { "githubUrl": "https://github.com/jwplayer/jwplayer-react-native", @@ -103493,13 +102811,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T12:12:45Z", + "updatedAt": "2025-10-20T17:58:23Z", "createdAt": "2024-03-28T20:47:03Z", - "pushedAt": "2025-09-10T12:12:45Z", - "forks": 13, - "issues": 39, + "pushedAt": "2025-10-20T17:58:23Z", + "forks": 12, + "issues": 35, "subscribers": 7, - "stars": 37, + "stars": 38, "dependencies": 1 }, "name": "@jwplayer/jwplayer-react-native", @@ -103507,8 +102825,6 @@ "isPrivate": false, "description": "React-native Android/iOS plugin for JWPlayer SDK (https://www.jwplayer.com/)", "topics": [ - "react", - "react-native", "jwplayer", "media", "player", @@ -103531,22 +102847,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 7919, - "weekDownloads": 1235, - "size": 479952, - "latestRelease": "1.1.2", - "latestReleaseDate": "2025-07-17T22:12:03.874Z" + "downloads": 6794, + "weekDownloads": 1708, + "size": 542871, + "latestRelease": "1.1.3", + "latestReleaseDate": "2025-10-01T16:10:15.108Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.133, - "topicSearchString": "react react-native jwplayer media player mediaplayer media-player jw android ios audio video sdk" + "popularity": 0.214, + "topicSearchString": "jwplayer media player mediaplayer media-player jw android ios audio video sdk" }, { "githubUrl": "https://github.com/RakaDoank/react-native-ping-android/tree/main/package", @@ -103583,7 +102900,6 @@ "registry": "https://registry.npmjs.org", "description": "Ping controller for React Native android app", "topics": [ - "react-native", "ping", "ping-android", "ping-android", @@ -103599,19 +102915,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 100, - "weekDownloads": 25, + "downloads": 92, + "weekDownloads": 15, "size": 104549, "latestRelease": "2.0.4", "latestReleaseDate": "2025-07-21T06:25:48.216Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -1.533, - "topicSearchString": "react-native ping ping-android ping-android ping" + "popularity": -1.607, + "topicSearchString": "ping ping-android ping-android ping" }, { "githubUrl": "https://github.com/flixyudh/rn-flix/tree/master/packages/auto-image", @@ -103649,7 +102967,6 @@ "registry": "https://registry.npmjs.org/", "description": "⚡ Image with enhanced feature like auto scale image, loading, and more ⚡", "topics": [ - "react-native", "ios", "android" ], @@ -103663,11 +102980,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 13, - "weekDownloads": 3, + "downloads": 17, + "weekDownloads": 0, "size": 21501, "latestRelease": "1.0.2", "latestReleaseDate": "2025-07-17T06:43:31.581Z" @@ -103676,8 +102994,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.8, - "topicSearchString": "react-native ios android" + "popularity": -1, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/flixyudh/rn-flix/tree/master/packages/snackbar", @@ -103715,7 +103033,6 @@ "registry": "https://registry.npmjs.org/", "description": "⚡ Easy-to-use Snackbar for React Native, pure JS, no native, and zero-dependencies. ⚡", "topics": [ - "react-native", "ios", "android" ], @@ -103729,11 +103046,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 9, - "weekDownloads": 1, + "downloads": 32, + "weekDownloads": 15, "size": 14952, "latestRelease": "1.0.2", "latestReleaseDate": "2024-09-18T03:16:32.945Z" @@ -103743,8 +103061,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.9, - "topicSearchString": "react-native ios android" + "popularity": -0.571, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/PostHog/posthog-js/tree/main/packages/react-native", @@ -103773,13 +103091,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-08-27T09:52:59Z", + "updatedAt": "2025-10-20T10:43:50Z", "createdAt": "2020-02-07T22:28:18Z", - "pushedAt": "2025-08-27T09:52:59Z", - "forks": 174, - "issues": 165, - "subscribers": 17, - "stars": 437, + "pushedAt": "2025-10-20T10:43:50Z", + "forks": 189, + "issues": 167, + "subscribers": 16, + "stars": 457, "dependencies": 1 }, "name": "posthog-react-native", @@ -103796,31 +103114,33 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 411629, - "weekDownloads": 64456, - "size": 251672, - "latestRelease": "4.5.0", - "latestReleaseDate": "2025-08-27T09:57:14.485Z" + "downloads": 432973, + "weekDownloads": 94784, + "size": 302761, + "latestRelease": "4.10.2", + "latestReleaseDate": "2025-10-19T15:28:16.221Z" }, - "score": 62, + "score": 65, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.133, + "popularity": 0.186, "topicSearchString": "" }, { "githubUrl": "https://github.com/intercom/intercom-react-native", "npmPkg": "@intercom/intercom-react-native", "examples": [ - "https://github.com/intercom/intercom-react-native/tree/main/example" + "https://github.com/intercom/intercom-react-native/tree/main/examples/example", + "https://github.com/intercom/intercom-react-native/tree/main/examples/expo-example", + "https://github.com/intercom/intercom-react-native/tree/main/examples/with-notifications" ], "images": [ "https://images.ctfassets.net/xny2w179f4ki/2zU4haC1CGGDqkVpi4ffac/efdf1e8b2f5729f0b07428178ff62b74/customers-help-product-1.webp?&q=90&w=2560", @@ -103828,6 +103148,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/intercom/intercom-react-native", @@ -103839,13 +103160,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T16:13:42Z", + "updatedAt": "2025-10-10T14:42:07Z", "createdAt": "2021-05-19T13:28:57Z", - "pushedAt": "2025-09-10T16:13:42Z", - "forks": 77, + "pushedAt": "2025-10-10T14:42:07Z", + "forks": 78, "issues": 0, - "subscribers": 81, - "stars": 157, + "subscribers": 80, + "stars": 158, "dependencies": 0 }, "name": "@intercom/intercom-react-native", @@ -103854,7 +103175,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native wrapper to bridge our iOS and Android SDK", "topics": [ - "react-native", "ios", "intercom", "messenger", @@ -103874,24 +103194,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npm": { - "downloads": 365678, - "weekDownloads": 61612, - "size": 286520, - "latestRelease": "9.0.3", - "latestReleaseDate": "2025-09-10T16:32:58.482Z" + "downloads": 327560, + "weekDownloads": 73165, + "size": 311615, + "latestRelease": "9.2.0", + "latestReleaseDate": "2025-10-11T15:03:40.027Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.143, - "topicSearchString": "react-native ios intercom messenger help-center articles push-notifications customer-support android" + "popularity": 0.19, + "topicSearchString": "ios intercom messenger help-center articles push-notifications customer-support android" }, { "githubUrl": "https://github.com/f0wu5u/calendar-kit", @@ -103920,13 +103241,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-05-27T14:36:24Z", + "updatedAt": "2025-10-11T16:15:02Z", "createdAt": "2024-05-28T09:43:24Z", - "pushedAt": "2025-05-27T14:36:24Z", + "pushedAt": "2025-10-11T16:15:02Z", "forks": 2, "issues": 1, "subscribers": 1, - "stars": 56, + "stars": 57, "dependencies": 0 }, "name": "@fowusu/calendar-kit", @@ -103934,8 +103255,6 @@ "isPrivate": false, "description": "A simple JS only calendar UI for react native", "topics": [ - "react", - "react-native", "shopify", "flashlist", "calendar", @@ -103951,21 +103270,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 330, - "weekDownloads": 81, - "size": 51238, - "latestRelease": "1.1.2", - "latestReleaseDate": "2025-03-10T07:16:49.951Z" + "downloads": 573, + "weekDownloads": 62, + "size": 46422, + "latestRelease": "1.3.0", + "latestReleaseDate": "2025-10-11T16:24:53.913Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.54, - "topicSearchString": "react react-native shopify flashlist calendar calendar-ui" + "popularity": -0.657, + "topicSearchString": "shopify flashlist calendar calendar-ui" }, { "githubUrl": "https://github.com/huextrat/react-native-rate-app", @@ -103975,6 +103296,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/huextrat/react-native-rate-app", @@ -103986,13 +103308,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T21:32:03Z", + "updatedAt": "2025-10-21T04:44:03Z", "createdAt": "2024-09-16T22:57:45Z", - "pushedAt": "2025-09-10T21:32:03Z", + "pushedAt": "2025-10-21T04:44:03Z", "forks": 8, "issues": 1, "subscribers": 2, - "stars": 182, + "stars": 191, "dependencies": 0 }, "name": "react-native-rate-app", @@ -104001,12 +103323,10 @@ "registry": "https://registry.npmjs.org/", "description": "React Native module for In App Rating on Android and iOS", "topics": [ - "react-native", "ios", "android", "rate", "review", - "native", "store", "huawei", "samsung", @@ -104022,22 +103342,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-rate-app", "npm": { - "downloads": 6787, - "weekDownloads": 1155, - "size": 64917, - "latestRelease": "1.4.1", - "latestReleaseDate": "2025-08-31T09:17:42.331Z" + "downloads": 7050, + "weekDownloads": 1482, + "size": 64918, + "latestRelease": "1.4.4", + "latestReleaseDate": "2025-10-21T04:44:10.859Z" }, "score": 51, "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.145, - "topicSearchString": "react-native ios android rate review native store huawei samsung amazon" + "popularity": 0.179, + "topicSearchString": "ios android rate review store huawei samsung amazon" }, { "githubUrl": "https://github.com/mehuljetani/react-native-typing-animated-text", @@ -104074,7 +103396,6 @@ "isPrivate": false, "description": "A React Native component that simulates typing text with an animated gradient background.", "topics": [ - "react-native", "animated-text", "typing-effect", "text-animation", @@ -104092,6 +103413,7 @@ "typing-text" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -104100,12 +103422,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-typing-animated-text", "npm": { - "downloads": 20, - "weekDownloads": 3, + "downloads": 67, + "weekDownloads": 9, "size": 11236, "latestRelease": "1.0.7", "latestReleaseDate": "2024-09-27T04:11:29.556Z" @@ -104115,8 +103438,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.85, - "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" + "popularity": -0.88, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/mehuljetani/react-native-custom-animated-accordion", @@ -104153,7 +103476,6 @@ "isPrivate": false, "description": "A custom React Native component for creating an animated accordion with expandable content and smooth transitions.", "topics": [ - "react-native", "animated", "accordion", "custom-accordion", @@ -104162,6 +103484,7 @@ "animation" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -104170,12 +103493,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-custom-animated-accordion", "npm": { - "downloads": 22, - "weekDownloads": 3, + "downloads": 83, + "weekDownloads": 7, "size": 8714, "latestRelease": "1.0.5", "latestReleaseDate": "2024-09-27T10:54:40.592Z" @@ -104185,18 +103509,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.88, - "topicSearchString": "react-native animated accordion custom-accordion animated-accordion collapsible animation" + "popularity": -0.926, + "topicSearchString": "animated accordion custom-accordion animated-accordion collapsible animation" }, { "githubUrl": "https://github.com/mehuljetani/react-native-animated-flip-card", "examples": [ "https://github.com/mehuljetani/react-native-animated-flip-card" ], - "images": [ - "https://github.com/mehuljetani/react-native-animated-flip-card/blob/main/src/assets/verticle.gif", - "https://github.com/mehuljetani/react-native-animated-flip-card/blob/main/src/assets/horizontal.gif" - ], "ios": true, "android": true, "github": { @@ -104224,7 +103544,6 @@ "isPrivate": false, "description": "A React Native component that provides a customisable, animated flip card with both horizontal and vertical flipping directions.", "topics": [ - "react-native", "animated", "flip", "card", @@ -104234,6 +103553,7 @@ "flip-card" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -104242,12 +103562,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-flip-card", "npm": { - "downloads": 119, - "weekDownloads": 14, + "downloads": 327, + "weekDownloads": 122, "size": 11405, "latestRelease": "1.0.3", "latestReleaseDate": "2024-09-26T09:21:49.668Z" @@ -104257,8 +103578,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.9, - "topicSearchString": "react-native animated flip card animation horizontal vertical flip-card" + "popularity": -0.679, + "topicSearchString": "animated flip card animation horizontal vertical flip-card" }, { "githubUrl": "https://github.com/iNerdStack/react-native-flexible-grid", @@ -104291,7 +103612,7 @@ "forks": 7, "issues": 1, "subscribers": 1, - "stars": 102, + "stars": 106, "dependencies": 0 }, "name": "react-native-flexible-grid", @@ -104300,7 +103621,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Flexible Grid is an advanced grid layout system inspired by CSS Grid, designed to facilitate responsive, customisable, and dynamic grid layouts in React Native applications.", "topics": [ - "react-native", "ios", "web", "android", @@ -104322,23 +103642,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-flexible-grid", "npm": { - "downloads": 4788, - "weekDownloads": 698, + "downloads": 3852, + "weekDownloads": 1027, "size": 183752, "latestRelease": "0.2.5", "latestReleaseDate": "2025-09-04T06:26:06.274Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.124, - "topicSearchString": "react-native ios web android grid grid-layout masonry rtl rtl-support mansonry hacktoberfest" + "popularity": 0.227, + "topicSearchString": "ios web android grid grid-layout masonry rtl rtl-support mansonry hacktoberfest" }, { "githubUrl": "https://github.com/xulihang/vision-camera-zxing", @@ -104362,7 +103682,7 @@ "createdAt": "2024-09-14T01:50:51Z", "pushedAt": "2025-03-31T06:11:21Z", "forks": 2, - "issues": 0, + "issues": 1, "subscribers": 1, "stars": 7, "dependencies": 0 @@ -104373,7 +103693,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Vision Camera Frame Processor Plugin using ZXing", "topics": [ - "react-native", "ios", "android", "barcode", @@ -104396,22 +103715,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "vision-camera-zxing", "npm": { - "downloads": 54, - "weekDownloads": 17, + "downloads": 106, + "weekDownloads": 31, "size": 94112, "latestRelease": "0.1.1", "latestReleaseDate": "2024-09-14T08:34:39.312Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.717, - "topicSearchString": "react-native ios android barcode vision-camera zxing barcode-scanner ean qrcode qrcode-scanner scanner upc" + "popularity": -0.742, + "topicSearchString": "ios android barcode vision-camera zxing barcode-scanner ean qrcode qrcode-scanner scanner upc" }, { "githubUrl": "https://github.com/huextrat/react-native-screenshot-aware", @@ -104421,6 +103743,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/huextrat/react-native-screenshot-aware", @@ -104432,13 +103755,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T20:53:33Z", + "updatedAt": "2025-10-21T05:31:41Z", "createdAt": "2024-09-18T14:55:44Z", - "pushedAt": "2025-09-10T20:53:33Z", + "pushedAt": "2025-10-21T05:31:41Z", "forks": 5, "issues": 1, "subscribers": 1, - "stars": 245, + "stars": 262, "dependencies": 0 }, "name": "react-native-screenshot-aware", @@ -104447,7 +103770,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native module for real-time screenshot detection on Android and iOS", "topics": [ - "react-native", "ios", "android", "screenshot", @@ -104465,23 +103787,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-screenshot-aware", "npm": { - "downloads": 18337, - "weekDownloads": 3311, - "size": 42155, - "latestRelease": "1.3.11", - "latestReleaseDate": "2025-08-28T04:46:17.575Z" + "downloads": 22078, + "weekDownloads": 4471, + "size": 42156, + "latestRelease": "1.3.14", + "latestReleaseDate": "2025-10-21T05:31:48.538Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": 0.154, - "topicSearchString": "react-native ios android screenshot aware capture screen" + "popularity": 0.172, + "topicSearchString": "ios android screenshot aware capture screen" }, { "githubUrl": "https://github.com/dominicstop/react-native-ios-visual-effect-view", @@ -104519,13 +103843,11 @@ "registry": "https://registry.npmjs.org/", "description": "A react-native library for using UIVisualEffectView on iOS, with support for using preset system visual effects, as well as using custom blur radius, and creating custom filters (with out of the box support for simple animations).", "topics": [ - "react-native", "ios", "android", "fabric", "jsi", - "react", - "react-natve", + "natve", "swift", "uikit", "uivisualeffectview", @@ -104541,20 +103863,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-ios-visual-effect-view", "npm": { - "downloads": 48, - "weekDownloads": 13, + "downloads": 54, + "weekDownloads": 3, "size": 313016, "latestRelease": "0.2.0", "latestReleaseDate": "2025-01-08T21:20:03.748Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.514, - "topicSearchString": "react-native ios android fabric jsi react react-natve swift uikit uivisualeffectview cafilter" + "popularity": -0.7, + "topicSearchString": "ios android fabric jsi natve swift uikit uivisualeffectview cafilter" }, { "githubUrl": "https://github.com/mehuljetani/react-native-stack-carousel", @@ -104588,7 +103912,6 @@ "isPrivate": false, "description": "A React Native component for creating an animated stack carousel with customizable directions and gestures.", "topics": [ - "react-native", "carousel", "stack-carousel", "carousel-stack", @@ -104596,6 +103919,7 @@ "swiper-flatlist" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -104604,12 +103928,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-stack-carousel", "npm": { - "downloads": 59, - "weekDownloads": 9, + "downloads": 58, + "weekDownloads": 6, "size": 13617, "latestRelease": "1.0.3", "latestReleaseDate": "2024-12-09T06:54:55.823Z" @@ -104619,8 +103944,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.862, - "topicSearchString": "react-native carousel stack-carousel carousel-stack stack-animation swiper-flatlist" + "popularity": -0.908, + "topicSearchString": "carousel stack-carousel carousel-stack stack-animation swiper-flatlist" }, { "githubUrl": "https://github.com/vokhuyetOz/react-native-draw-overlay", @@ -104644,7 +103969,7 @@ "forks": 1, "issues": 0, "subscribers": 1, - "stars": 17, + "stars": 19, "dependencies": 1 }, "name": "@vokhuyet/react-native-draw-overlay", @@ -104653,7 +103978,6 @@ "registry": "https://registry.npmjs.org/", "description": "Draw over other apps in Android", "topics": [ - "react-native", "android" ], "license": { @@ -104666,11 +103990,13 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 104, - "weekDownloads": 13, + "downloads": 118, + "weekDownloads": 14, "size": 38898, "latestRelease": "1.0.1", "latestReleaseDate": "2024-11-04T02:58:09.267Z" @@ -104679,8 +104005,8 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.892, - "topicSearchString": "react-native android" + "popularity": -0.896, + "topicSearchString": "android" }, { "githubUrl": "https://github.com/HapticlabsIO/react-native-hapticlabs", @@ -104700,13 +104026,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-11T16:05:36Z", + "updatedAt": "2025-09-29T18:39:41Z", "createdAt": "2024-08-30T09:36:30Z", - "pushedAt": "2025-07-11T16:05:36Z", + "pushedAt": "2025-09-29T18:39:41Z", "forks": 0, - "issues": 1, + "issues": 0, "subscribers": 0, - "stars": 8, + "stars": 9, "dependencies": 0 }, "name": "react-native-hapticlabs", @@ -104715,7 +104041,6 @@ "registry": "https://registry.npmjs.org/", "description": "A package to play back haptics developed using Hapticlabs Studio", "topics": [ - "react-native", "ios", "android", "haptics", @@ -104735,22 +104060,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-hapticlabs", "npm": { - "downloads": 54, - "weekDownloads": 5, - "size": 110196, - "latestRelease": "0.6.1", - "latestReleaseDate": "2025-07-11T16:05:34.167Z" + "downloads": 259, + "weekDownloads": 38, + "size": 113677, + "latestRelease": "0.7.1", + "latestReleaseDate": "2025-09-29T18:39:39.387Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.917, - "topicSearchString": "react-native ios android haptics vibration ahap hla ogg hapticlabs" + "popularity": -0.873, + "topicSearchString": "ios android haptics vibration ahap hla ogg hapticlabs" }, { "githubUrl": "https://github.com/mehuljetani/react-native-animated-tab", @@ -104784,7 +104112,6 @@ "isPrivate": false, "description": "A React Native component for creating an animated tab interface with customizable styles and animations.", "topics": [ - "react-native", "segmented-tab", "tab", "animated-tab", @@ -104796,6 +104123,7 @@ "tabs" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -104804,12 +104132,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-tab", "npm": { - "downloads": 32, - "weekDownloads": 0, + "downloads": 38, + "weekDownloads": 20, "size": 8086, "latestRelease": "1.0.3", "latestReleaseDate": "2024-09-27T09:47:36.250Z" @@ -104819,8 +104148,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native segmented-tab tab animated-tab segmented-control-tab animation-tab reanimated-tab animation reanimated tabs" + "popularity": -0.5, + "topicSearchString": "segmented-tab tab animated-tab segmented-control-tab animation-tab reanimated-tab animation reanimated tabs" }, { "githubUrl": "https://github.com/kimolalekan/react-native-custom-select", @@ -104861,9 +104190,6 @@ "isPrivate": false, "description": "A customizable React Native dropdown/select component supporting single and multiple selection modes, with features like search, select all, and flexible styling options for seamless integration", "topics": [ - "react", - "react-native", - "native", "select", "dropdown", "option" @@ -104878,23 +104204,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-custom-select", "npm": { - "downloads": 27, - "weekDownloads": 0, + "downloads": 106, + "weekDownloads": 4, "size": 136487, "latestRelease": "1.1.5", "latestReleaseDate": "2024-10-24T17:47:54.996Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1, - "topicSearchString": "react react-native native select dropdown option" + "popularity": -0.967, + "topicSearchString": "select dropdown option" }, { "githubUrl": "https://github.com/mateoguzmana/react-native-lz4", @@ -104921,7 +104247,7 @@ "forks": 1, "issues": 2, "subscribers": 2, - "stars": 18, + "stars": 19, "dependencies": 0 }, "name": "react-native-lz4", @@ -104930,7 +104256,6 @@ "registry": "https://registry.npmjs.org/", "description": "LZ4 – C++ React Native bindings for an extremely fast compression algorithm.", "topics": [ - "react-native", "ios", "android", "compression", @@ -104947,12 +104272,14 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-lz4", "npm": { - "downloads": 11, - "weekDownloads": 3, + "downloads": 31, + "weekDownloads": 0, "size": 1219097, "latestRelease": "0.0.1-alpha.0", "latestReleaseDate": "2024-09-29T17:54:44.092Z" @@ -104961,8 +104288,8 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.7, - "topicSearchString": "react-native ios android compression lz4 zip" + "popularity": -1, + "topicSearchString": "ios android compression lz4 zip" }, { "githubUrl": "https://github.com/Multiform-Validator/typescript-javascript", @@ -105041,21 +104368,19 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 625, - "weekDownloads": 44, + "downloads": 549, + "weekDownloads": 43, "size": 100686, "latestRelease": "2.7.0", "latestReleaseDate": "2025-08-27T01:00:54.473Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.94, + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.933, "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" }, { @@ -105082,9 +104407,9 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-04T04:27:38Z", + "updatedAt": "2025-09-13T23:21:38Z", "createdAt": "2023-09-16T14:44:23Z", - "pushedAt": "2025-08-04T04:27:38Z", + "pushedAt": "2025-09-13T23:21:38Z", "forks": 0, "issues": 2, "subscribers": 1, @@ -105123,20 +104448,19 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 31, - "weekDownloads": 10, + "downloads": 403, + "weekDownloads": 5, "size": 40448, "latestRelease": "2.0.1", "latestReleaseDate": "2025-01-20T15:48:23.096Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.714, + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.989, "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" }, { @@ -105175,17 +104499,13 @@ "isPrivate": false, "description": "This is a library that helps you to persist your redux store and rehydrate it when the app is reloaded. It uses the mobile storage to save the data. You can use it with react-native, expo. Project is written in TypeScript. However, you can use it in JavaScript projects as well.", "topics": [ - "react", "redux", "persist", - "react-redux", - "react-component", - "react-library", - "react-redux-persist", + "component", + "library", "redux-persist", "redux-persist2", "expo", - "react-native", "redux-toolkit" ], "license": { @@ -105198,22 +104518,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 115, - "weekDownloads": 18, + "downloads": 148, + "weekDownloads": 26, "size": 18379, "latestRelease": "0.0.3", "latestReleaseDate": "2024-08-05T14:07:00.482Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.867, - "topicSearchString": "react redux persist react-redux react-component react-library react-redux-persist redux-persist redux-persist2 expo react-native redux-toolkit" + "popularity": -0.847, + "topicSearchString": "redux persist component library redux-persist redux-persist2 expo redux-toolkit" }, { "githubUrl": "https://github.com/4cc3ssX/react-native-nitro-totp", @@ -105235,13 +104556,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-04-20T10:50:25Z", + "updatedAt": "2025-09-26T14:31:24Z", "createdAt": "2024-09-29T07:07:19Z", - "pushedAt": "2025-04-20T10:50:25Z", + "pushedAt": "2025-09-26T14:31:24Z", "forks": 0, "issues": 0, "subscribers": 2, - "stars": 44, + "stars": 61, "dependencies": 0 }, "name": "react-native-nitro-totp", @@ -105250,7 +104571,6 @@ "registry": "https://registry.npmjs.org/", "description": "A full-featured React Native TOTP (Time-based One-Time Password) and HOTP (HMAC-based One-Time Password) authentication.", "topics": [ - "react-native", "nitro", "totp", "hotp", @@ -105261,7 +104581,11 @@ "nitro-totp", "nitro-hotp", "nitro-modules", - "nitrogen" + "nitrogen", + "android", + "cplusplus", + "ios", + "otp" ], "license": { "key": "mit", @@ -105273,22 +104597,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-totp", "npm": { - "downloads": 133, - "weekDownloads": 4, - "size": 214330, - "latestRelease": "1.2.0", - "latestReleaseDate": "2025-04-20T10:50:23.352Z" + "downloads": 886, + "weekDownloads": 411, + "size": 1856388, + "latestRelease": "2.0.1", + "latestReleaseDate": "2025-09-26T14:31:21.118Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.724, - "topicSearchString": "react-native nitro totp hotp otpauth otp-auth authentication security nitro-totp nitro-hotp nitro-modules nitrogen" + "popularity": -0.355, + "topicSearchString": "nitro totp hotp otpauth otp-auth authentication security nitro-totp nitro-hotp nitro-modules nitrogen android cplusplus ios otp" }, { "githubUrl": "https://github.com/dream-sports-labs/react-native-fast-image", @@ -105304,7 +104630,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": { @@ -105313,17 +104639,17 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-05T11:04:23Z", + "updatedAt": "2025-09-16T13:54:35Z", "createdAt": "2024-07-01T12:03:36Z", - "pushedAt": "2025-09-05T11:04:23Z", - "forks": 51, + "pushedAt": "2025-09-16T13:54:35Z", + "forks": 53, "issues": 28, "subscribers": 3, - "stars": 418, + "stars": 442, "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.", @@ -105344,22 +104670,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 259873, - "weekDownloads": 41519, + "downloads": 321967, + "weekDownloads": 78148, "size": 130221, "latestRelease": "8.12.0", "latestReleaseDate": "2025-09-05T11:05:37.212Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.136, + "popularity": 0.206, "topicSearchString": "cache cached fastimage image priority" }, { @@ -105384,13 +104710,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-02-17T23:32:59Z", + "updatedAt": "2025-09-29T01:46:36Z", "createdAt": "2022-03-01T05:47:30Z", - "pushedAt": "2025-02-17T23:32:59Z", - "forks": 1, + "pushedAt": "2025-09-29T01:46:36Z", + "forks": 0, "issues": 1, "subscribers": 1, - "stars": 10, + "stars": 11, "dependencies": 0 }, "name": "cpf_and_cnpj-generator", @@ -105429,21 +104755,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2505, - "weekDownloads": 579, - "size": 10069, - "latestRelease": "1.3.2", - "latestReleaseDate": "2025-02-17T23:34:42.561Z" + "downloads": 3344, + "weekDownloads": 604, + "size": 10109, + "latestRelease": "1.3.4", + "latestReleaseDate": "2025-09-29T01:48:08.703Z" }, - "score": 32, + "score": 49, "matchingScoreModifiers": [ - "Not updated recently", + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.053, + "popularity": -0.096, "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" }, { @@ -105482,7 +104809,6 @@ "registry": "https://registry.npmjs.org/", "description": "⚡️ A fast implementation of `crypto.getRandomValues` for React Native", "topics": [ - "react-native", "ios", "android", "crypto", @@ -105492,7 +104818,7 @@ "getrandomvalues", "cpp", "javascript", - "native-module", + "module", "random", "typescript" ], @@ -105506,22 +104832,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npm": { - "downloads": 429, - "weekDownloads": 30, + "downloads": 321, + "weekDownloads": 37, "size": 16076245, "latestRelease": "0.2.4", "latestReleaseDate": "2024-10-04T10:10:21.620Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.94, - "topicSearchString": "react-native ios android crypto get-random-values crypto.getrandomvalues polyfill getrandomvalues cpp javascript native-module random typescript" + "popularity": -0.901, + "topicSearchString": "ios android crypto get-random-values crypto.getrandomvalues polyfill getrandomvalues cpp javascript module random typescript" }, { "githubUrl": "https://github.com/adobe/aepsdk-react-native/tree/main/packages/core", @@ -105546,10 +104873,10 @@ "updatedAt": "2025-03-28T15:56:42Z", "createdAt": "2021-07-20T21:43:38Z", "pushedAt": "2025-03-28T15:56:42Z", - "forks": 35, - "issues": 8, - "subscribers": 13, - "stars": 22, + "forks": 37, + "issues": 7, + "subscribers": 12, + "stars": 23, "dependencies": 0 }, "name": "@adobe/react-native-aepcore", @@ -105557,7 +104884,6 @@ "isPrivate": false, "description": "Adobe Experience Platform support for React Native apps.", "topics": [ - "react-native", "adobe", "adobe-experience-platform", "core", @@ -105574,22 +104900,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 78573, - "weekDownloads": 13027, + "downloads": 87240, + "weekDownloads": 20919, "size": 181853, "latestRelease": "7.0.0", "latestReleaseDate": "2025-03-28T16:35:57.421Z" }, - "score": 51, + "score": 41, "matchingScoreModifiers": [ "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.109, - "topicSearchString": "react-native adobe adobe-experience-platform core ios android" + "popularity": -0.046, + "topicSearchString": "adobe adobe-experience-platform core ios android" }, { "githubUrl": "https://github.com/Netizen-Teknologi/react-native-maps-leaflet", @@ -105625,16 +104953,13 @@ "isPrivate": false, "description": "React Native Maps Leaflet brings powerful, interactive maps to your React Native apps using Leaflet. Add custom markers, popups, and tile layers. Perfect for real estate, travel, delivery tracking, and logistics. Compatible with iOS and Android, it provides a seamless and dynamic map experience.", "topics": [ - "react-native", "leaflet", "maps", "maps-leaflet", - "react-leaflet-native", - "react-leaflet", - "react-map", "map" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -105643,21 +104968,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 164, - "weekDownloads": 18, + "downloads": 118, + "weekDownloads": 26, "size": 22349, "latestRelease": "2.1.1", "latestReleaseDate": "2025-04-18T01:00:26.773Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.655, - "topicSearchString": "react-native leaflet maps maps-leaflet react-leaflet-native react-leaflet react-map map" + "popularity": -0.557, + "topicSearchString": "leaflet maps maps-leaflet map" }, { "githubUrl": "https://github.com/jamsch/expo-speech-recognition", @@ -105673,6 +105000,7 @@ "android": true, "web": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/jamsch/expo-speech-recognition", @@ -105684,13 +105012,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-05T00:20:00Z", + "updatedAt": "2025-09-29T04:58:20Z", "createdAt": "2023-10-30T11:30:30Z", - "pushedAt": "2025-09-05T00:20:00Z", - "forks": 27, - "issues": 34, + "pushedAt": "2025-09-29T04:58:20Z", + "forks": 29, + "issues": 35, "subscribers": 5, - "stars": 406, + "stars": 434, "dependencies": 0 }, "name": "expo-speech-recognition", @@ -105698,12 +105026,14 @@ "isPrivate": false, "description": "Speech Recognition for React Native Expo projects", "topics": [ - "react-native", "expo", "expo-speech-recognition", "expospeechrecognition", "webkitspeechrecognition", - "speechrecognition" + "speechrecognition", + "speech-recognition", + "speech-to-text", + "voice-recognition" ], "license": { "key": "mit", @@ -105715,24 +105045,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-speech-recognition", "npm": { - "downloads": 76671, - "weekDownloads": 12952, - "size": 530610, - "latestRelease": "2.1.2", - "latestReleaseDate": "2025-09-05T00:21:02.686Z" + "downloads": 84948, + "weekDownloads": 18830, + "size": 543275, + "latestRelease": "2.1.5", + "latestReleaseDate": "2025-09-29T04:59:21.340Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.144, - "topicSearchString": "react-native expo expo-speech-recognition expospeechrecognition webkitspeechrecognition speechrecognition" + "popularity": 0.188, + "topicSearchString": "expo expo-speech-recognition expospeechrecognition webkitspeechrecognition speechrecognition speech-recognition speech-to-text voice-recognition" }, { "githubUrl": "https://github.com/dcavalcante/react-native-sprites", @@ -105760,7 +105091,7 @@ "forks": 2, "issues": 0, "subscribers": 1, - "stars": 5, + "stars": 6, "dependencies": 0 }, "name": "react-native-sprites", @@ -105769,7 +105100,6 @@ "registry": "https://registry.npmjs.org/", "description": "Spritesheet component for React Native", "topics": [ - "react-native", "ios", "android" ], @@ -105783,23 +105113,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sprites", "npm": { - "downloads": 26, - "weekDownloads": 2, + "downloads": 32, + "weekDownloads": 17, "size": 75522, "latestRelease": "0.1.1", "latestReleaseDate": "2024-10-24T19:11:40.698Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.933, - "topicSearchString": "react-native ios android" + "popularity": -0.514, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/pachun/react-native-use-app-lifecycle", @@ -105833,9 +105163,6 @@ "isPrivate": false, "description": "A react native hook to run code when your app is launched, focused and blurred.", "topics": [ - "react-native", - "react", - "native", "lifecycle", "hook", "launch", @@ -105852,21 +105179,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 271, - "weekDownloads": 92, + "downloads": 348, + "weekDownloads": 41, "size": 6091, "latestRelease": "1.0.9", "latestReleaseDate": "2024-10-22T14:07:42.893Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.708, - "topicSearchString": "react-native react native lifecycle hook launch focus blur" + "popularity": -0.899, + "topicSearchString": "lifecycle hook launch focus blur" }, { "githubUrl": "https://github.com/callstackincubator/react-native-bottom-tabs/tree/main/packages/react-native-bottom-tabs", @@ -105878,6 +105207,7 @@ "android": true, "visionos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/callstackincubator/react-native-bottom-tabs", @@ -105889,13 +105219,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T10:06:53Z", + "updatedAt": "2025-10-20T16:57:58Z", "createdAt": "2024-09-27T12:59:01Z", - "pushedAt": "2025-09-12T10:06:53Z", - "forks": 65, - "issues": 14, - "subscribers": 10, - "stars": 1141, + "pushedAt": "2025-10-20T16:57:58Z", + "forks": 70, + "issues": 19, + "subscribers": 9, + "stars": 1228, "dependencies": 3 }, "name": "react-native-bottom-tabs", @@ -105904,7 +105234,6 @@ "registry": "https://registry.npmjs.org/", "description": "Native Bottom Tabs for React Native", "topics": [ - "react-native", "ios", "android" ], @@ -105918,15 +105247,17 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-bottom-tabs", "npm": { - "downloads": 52230, - "weekDownloads": 9627, - "size": 211190, - "latestRelease": "0.11.2", - "latestReleaseDate": "2025-09-12T10:08:04.731Z" + "downloads": 57137, + "weekDownloads": 10338, + "size": 154984, + "latestRelease": "1.0.1", + "latestReleaseDate": "2025-10-20T16:59:10.837Z" }, "score": 76, "matchingScoreModifiers": [ @@ -105934,8 +105265,8 @@ "Known", "Recently updated" ], - "popularity": 0.157, - "topicSearchString": "react-native ios android" + "popularity": 0.154, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/AlirezaHadjar/react-native-fast-confetti", @@ -105965,10 +105296,10 @@ "updatedAt": "2025-08-28T10:47:12Z", "createdAt": "2024-10-16T00:58:34Z", "pushedAt": "2025-08-28T10:47:12Z", - "forks": 6, + "forks": 8, "issues": 2, - "subscribers": 4, - "stars": 402, + "subscribers": 5, + "stars": 420, "dependencies": 0 }, "name": "react-native-fast-confetti", @@ -105977,7 +105308,6 @@ "registry": "https://registry.npmjs.org/", "description": "🏎️ The fastest confetti animation library in react native", "topics": [ - "react-native", "ios", "android" ], @@ -105991,24 +105321,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-fast-confetti", "npm": { - "downloads": 39533, - "weekDownloads": 6706, + "downloads": 43506, + "weekDownloads": 9413, "size": 181753, "latestRelease": "1.1.1", "latestReleaseDate": "2025-08-28T10:47:39.518Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.144, - "topicSearchString": "react-native ios android" + "popularity": 0.184, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/rgommezz/react-native-animated-stopwatch-timer", @@ -106037,8 +105366,8 @@ "pushedAt": "2024-03-25T00:35:59Z", "forks": 12, "issues": 1, - "subscribers": 3, - "stars": 159, + "subscribers": 2, + "stars": 160, "dependencies": 1 }, "name": "react-native-animated-stopwatch-timer", @@ -106047,10 +105376,8 @@ "registry": "https://registry.npmjs.org/", "description": "Stopwatch & Timer component that smoothly animate the digits change, with all layout animations running on the UI thread ⚡", "topics": [ - "react-native", "ios", "android", - "react", "reanimated2" ], "license": { @@ -106063,12 +105390,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-stopwatch-timer", "npm": { - "downloads": 1055, - "weekDownloads": 130, + "downloads": 1387, + "weekDownloads": 285, "size": 66005, "latestRelease": "1.3.0", "latestReleaseDate": "2024-02-10T15:37:19.275Z" @@ -106078,8 +105406,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.105, - "topicSearchString": "react-native ios android react reanimated2" + "popularity": 0.175, + "topicSearchString": "ios android reanimated2" }, { "githubUrl": "https://github.com/IvanIhnatsiuk/react-native-fast-secure-storage", @@ -106105,7 +105433,7 @@ "forks": 1, "issues": 2, "subscribers": 3, - "stars": 44, + "stars": 46, "dependencies": 0 }, "name": "react-native-fast-secure-storage", @@ -106114,7 +105442,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Library for securely storing keys to iOS KeyChain and Android Encrypted shared preferences.", "topics": [ - "react-native", "ios", "android" ], @@ -106128,23 +105455,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-fast-secure-storage", "npm": { - "downloads": 928, - "weekDownloads": 81, + "downloads": 1460, + "weekDownloads": 377, "size": 109803, "latestRelease": "1.2.3", "latestReleaseDate": "2025-09-13T11:31:23.712Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.676, - "topicSearchString": "react-native ios android" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.22, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/nativeflowteam/nativeflowcss", @@ -106174,7 +105500,7 @@ "forks": 3, "issues": 3, "subscribers": 1, - "stars": 54, + "stars": 55, "dependencies": 0 }, "name": "nativeflowcss", @@ -106183,7 +105509,6 @@ "registry": "https://registry.npmjs.org/", "description": "Tailwind-inspired utility-first style objects for React Native", "topics": [ - "react-native", "tailwind-css", "utility-first", "css-in-js", @@ -106200,7 +105525,6 @@ "tailwind", "responsive", "design-system", - "native", "styling", "lightweight", "performance", @@ -106224,23 +105548,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "nativeflowcss", "npm": { - "downloads": 256, - "weekDownloads": 49, + "downloads": 141, + "weekDownloads": 18, "size": 398093, "latestRelease": "1.2.22", "latestReleaseDate": "2024-09-18T17:44:43.061Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.587, - "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" + "popularity": -0.641, + "topicSearchString": "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 styling lightweight performance customizable theme mobile-first utility nativeflowcss utility-objects hacktoberfest mobile-design mobile-styling" }, { "githubUrl": "https://github.com/grahammendick/navigation/tree/master/build/npm/navigation", @@ -106264,8 +105588,8 @@ "pushedAt": "2025-03-24T18:48:10Z", "forks": 43, "issues": 1, - "subscribers": 5, - "stars": 637, + "subscribers": 4, + "stars": 635, "dependencies": 0 }, "name": "navigation", @@ -106286,22 +105610,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "navigation", "npm": { - "downloads": 3421, - "weekDownloads": 629, + "downloads": 2961, + "weekDownloads": 536, "size": 82306, "latestRelease": "6.3.0", "latestReleaseDate": "2025-03-24T18:47:33.084Z" }, - "score": 51, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.156, + "popularity": 0.154, "topicSearchString": "router navigation" }, { @@ -106324,13 +105649,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-01T13:42:16Z", + "updatedAt": "2025-09-26T15:03:58Z", "createdAt": "2015-03-11T20:27:48Z", - "pushedAt": "2025-08-01T13:42:16Z", + "pushedAt": "2025-09-26T15:03:58Z", "forks": 43, "issues": 1, - "subscribers": 5, - "stars": 637, + "subscribers": 4, + "stars": 635, "dependencies": 0 }, "name": "navigation-react", @@ -106339,8 +105664,7 @@ "description": "React plugin for the Navigation router", "topics": [ "router", - "navigation", - "react" + "navigation" ], "license": { "name": "Apache License 2.0", @@ -106352,23 +105676,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "navigation-react", "npm": { - "downloads": 867, - "weekDownloads": 108, - "size": 84759, - "latestRelease": "4.13.0", - "latestReleaseDate": "2025-08-01T13:43:20.481Z" + "downloads": 1961, + "weekDownloads": 150, + "size": 87593, + "latestRelease": "4.14.0", + "latestReleaseDate": "2025-09-26T15:05:10.196Z" }, - "score": 51, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.644, - "topicSearchString": "router navigation react" + "popularity": 0.065, + "topicSearchString": "router navigation" }, { "githubUrl": "https://github.com/grahammendick/navigation/tree/master/build/npm/navigation-react-native", @@ -106389,13 +105714,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-16T19:56:53Z", + "updatedAt": "2025-10-12T17:04:18Z", "createdAt": "2015-03-11T20:27:48Z", - "pushedAt": "2025-08-16T19:56:53Z", + "pushedAt": "2025-10-12T17:04:18Z", "forks": 43, "issues": 1, - "subscribers": 5, - "stars": 637, + "subscribers": 4, + "stars": 635, "dependencies": 0 }, "name": "navigation-react-native", @@ -106404,9 +105729,7 @@ "description": "React Native plugin for the Navigation router", "topics": [ "router", - "navigation", - "react", - "native" + "navigation" ], "license": { "name": "Apache License 2.0", @@ -106418,22 +105741,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "navigation-react-native", "npm": { - "downloads": 1111, - "weekDownloads": 334, - "size": 1237293, - "latestRelease": "9.32.0", - "latestReleaseDate": "2025-08-16T19:57:39.847Z" + "downloads": 2402, + "weekDownloads": 109, + "size": 1249264, + "latestRelease": "9.34.1", + "latestReleaseDate": "2025-10-12T17:05:04.488Z" }, - "score": 54, + "score": 59, "matchingScoreModifiers": [ - "Known" + "Known", + "Recently updated" ], - "popularity": 0.256, - "topicSearchString": "router navigation react native" + "popularity": 0.039, + "topicSearchString": "router navigation" }, { "githubUrl": "https://github.com/hsjoberg/react-native-turbo-sqlite", @@ -106459,7 +105785,7 @@ "createdAt": "2024-10-10T15:48:30Z", "pushedAt": "2025-08-05T16:34:54Z", "forks": 1, - "issues": 3, + "issues": 2, "subscribers": 1, "stars": 14, "dependencies": 1 @@ -106470,7 +105796,6 @@ "registry": "https://registry.npmjs.org/", "description": "A Pure C++ TurboModule for Sqlite", "topics": [ - "react-native", "ios", "android", "sqlite", @@ -106487,20 +105812,22 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-turbo-sqlite", "npm": { - "downloads": 63, - "weekDownloads": 9, + "downloads": 104, + "weekDownloads": 13, "size": 9997445, "latestRelease": "0.3.1", "latestReleaseDate": "2025-08-05T16:34:52.131Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.871, - "topicSearchString": "react-native ios android sqlite turbomodule new-architecture" + "popularity": -0.892, + "topicSearchString": "ios android sqlite turbomodule new-architecture" }, { "githubUrl": "https://github.com/pachun/simple-expo-update", @@ -106534,8 +105861,6 @@ "isPrivate": false, "description": "Simpler expo-updates", "topics": [ - "react", - "native", "expo", "expo-updates" ], @@ -106549,10 +105874,11 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 39, + "downloads": 273, "weekDownloads": 6, "size": 5122, "latestRelease": "1.0.11", @@ -106563,8 +105889,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.867, - "topicSearchString": "react native expo expo-updates" + "popularity": -0.981, + "topicSearchString": "expo expo-updates" }, { "githubUrl": "https://github.com/SohelIslamImran/expo-in-app-updates", @@ -106591,7 +105917,7 @@ "forks": 11, "issues": 1, "subscribers": 2, - "stars": 228, + "stars": 236, "dependencies": 0 }, "name": "expo-in-app-updates", @@ -106599,7 +105925,6 @@ "isPrivate": false, "description": "A lightweight and easy-to-use module for implementing native in-app updates for Android and iOS", "topics": [ - "react-native", "expo", "expo-in-app-updates", "expoinappupdates", @@ -106616,23 +105941,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-in-app-updates", "npm": { - "downloads": 19080, - "weekDownloads": 4523, + "downloads": 20503, + "weekDownloads": 4116, "size": 46654, "latestRelease": "0.9.0", "latestReleaseDate": "2025-02-06T06:52:53.369Z" }, - "score": 51, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.202, - "topicSearchString": "react-native expo expo-in-app-updates expoinappupdates expo-module in-app-updates" + "popularity": 0.171, + "topicSearchString": "expo expo-in-app-updates expoinappupdates expo-module in-app-updates" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-manifests", @@ -106652,13 +105979,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T15:41:57Z", + "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-12T15:41:57Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-27T16:55:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 2 }, "name": "expo-manifests", @@ -106666,7 +105993,6 @@ "isPrivate": false, "description": "Code to parse and use Expo and Expo Updates manifests.", "topics": [ - "react-native", "expo", "expo-manifests" ], @@ -106680,12 +106006,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-manifests", "npm": { - "downloads": 3831992, - "weekDownloads": 651858, + "downloads": 4018140, + "weekDownloads": 887019, "size": 62765, "latestRelease": "1.0.8", "latestReleaseDate": "2025-09-11T20:24:08.714Z" @@ -106699,8 +106027,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "react-native expo expo-manifests" + "popularity": 0.188, + "topicSearchString": "expo expo-manifests" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-structured-headers", @@ -106719,13 +106047,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-13T16:59:55Z", + "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-08-13T16:59:55Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-27T16:55:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-structured-headers", @@ -106733,7 +106061,6 @@ "isPrivate": false, "description": "Expo module implementation of a parser based on https://httpwg.org/specs/rfc8941.html", "topics": [ - "react-native", "expo", "expo-structured-headers" ], @@ -106747,26 +106074,29 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-structured-headers", "npm": { - "downloads": 2304691, - "weekDownloads": 399736, + "downloads": 2323344, + "weekDownloads": 519315, "size": 1428578, "latestRelease": "5.0.0", "latestReleaseDate": "2025-08-13T17:01:08.483Z" }, - "score": 81, + "score": 86, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.147, - "topicSearchString": "react-native expo expo-structured-headers" + "popularity": 0.19, + "topicSearchString": "expo expo-structured-headers" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-json-utils", @@ -106785,13 +106115,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-04-04T23:30:01Z", + "updatedAt": "2025-09-27T16:55:20Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-04-04T23:30:01Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-09-27T16:55:20Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-json-utils", @@ -106799,7 +106129,6 @@ "isPrivate": false, "description": "Utilities for reading JSONObjects (Android) and NSDictionaries (iOS).", "topics": [ - "react-native", "expo", "expo-json-utils", "android", @@ -106817,26 +106146,29 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-json-utils", "npm": { - "downloads": 3665272, - "weekDownloads": 621694, + "downloads": 3866742, + "weekDownloads": 849486, "size": 15175, "latestRelease": "0.15.0", "latestReleaseDate": "2025-04-04T23:34:49.379Z" }, - "score": 81, + "score": 86, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.144, - "topicSearchString": "react-native expo expo-json-utils android ios jsonobjects nsdictionaries" + "popularity": 0.187, + "topicSearchString": "expo expo-json-utils android ios jsonobjects nsdictionaries" }, { "githubUrl": "https://github.com/blake-simpson/expo-jwt", @@ -106860,7 +106192,7 @@ "forks": 14, "issues": 1, "subscribers": 3, - "stars": 64, + "stars": 65, "dependencies": 1 }, "name": "expo-jwt", @@ -106869,8 +106201,7 @@ "description": "Encode and decode JSON Web Tokens (JWT) in an Expo based React Native project.", "topics": [ "expo", - "jwt", - "react-native" + "jwt" ], "license": { "key": "mit", @@ -106882,12 +106213,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-jwt", "npm": { - "downloads": 25814, - "weekDownloads": 3702, + "downloads": 24001, + "weekDownloads": 5604, "size": 31166, "latestRelease": "1.8.2", "latestReleaseDate": "2025-01-28T09:56:08.877Z" @@ -106897,8 +106229,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.122, - "topicSearchString": "expo jwt react-native" + "popularity": 0.198, + "topicSearchString": "expo jwt" }, { "githubUrl": "https://github.com/mmusaib/expo-skeleton-loading", @@ -106922,10 +106254,10 @@ "updatedAt": "2025-07-11T12:15:44Z", "createdAt": "2024-04-02T07:17:42Z", "pushedAt": "2025-07-11T12:15:44Z", - "forks": 3, + "forks": 4, "issues": 0, "subscribers": 1, - "stars": 36, + "stars": 40, "dependencies": 3 }, "name": "expo-skeleton-loading", @@ -106935,7 +106267,6 @@ "topics": [ "skeleton", "expo", - "react-native", "skeleton-loader", "expo-skeleton-loader", "skeleton-loading", @@ -106955,12 +106286,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-skeleton-loading", "npm": { - "downloads": 26381, - "weekDownloads": 3450, + "downloads": 16191, + "weekDownloads": 4231, "size": 11104, "latestRelease": "1.1.1", "latestReleaseDate": "2025-07-11T12:16:19.891Z" @@ -106969,8 +106301,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.111, - "topicSearchString": "skeleton expo react-native skeleton-loader expo-skeleton-loader skeleton-loading loading expo-skeleton-loading easy easy-skeletion-loader easy-skeletion-loading" + "popularity": 0.222, + "topicSearchString": "skeleton expo skeleton-loader expo-skeleton-loader skeleton-loading loading expo-skeleton-loading easy easy-skeletion-loader easy-skeletion-loading" }, { "githubUrl": "https://github.com/SimformSolutionsPvtLtd/react-native-reactions", @@ -107000,7 +106332,7 @@ "pushedAt": "2024-06-12T05:18:46Z", "forks": 8, "issues": 3, - "subscribers": 10, + "subscribers": 9, "stars": 169, "dependencies": 0 }, @@ -107009,15 +106341,12 @@ "isPrivate": false, "description": "A React Native animated reaction picker component ✨✨", "topics": [ - "react", - "react-native", "typescript", "reactions", "animated-reactions", "rn", "reanimated", "component", - "react-component", "ios", "android", "reaction", @@ -107030,7 +106359,6 @@ "animated-reactions-picker", "picker", "animation", - "react-reaction", "fb-reactions-animation", "emoji-picker", "emojis", @@ -107046,12 +106374,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-reactions", "npm": { - "downloads": 1823, - "weekDownloads": 187, + "downloads": 2835, + "weekDownloads": 776, "size": 101694, "latestRelease": "1.0.0", "latestReleaseDate": "2024-06-12T05:33:12.699Z" @@ -107061,8 +106390,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.087, - "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" + "popularity": 0.233, + "topicSearchString": "typescript reactions animated-reactions rn reanimated component ios android reaction seamless-reactions seamless seamless-gesture-reaction emoji-reactions reactions-picker reactions-component animated-reactions-picker picker animation fb-reactions-animation emoji-picker emojis library" }, { "githubUrl": "https://github.com/LunatiqueCoder/expo-notifee-plugin", @@ -107092,7 +106421,6 @@ "isPrivate": false, "description": "Expo plugin that configures a Notification Service Extension to use Notifee for remote notifications", "topics": [ - "react-native", "expo", "notifee", "notifications", @@ -107112,12 +106440,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "expo-notifee-plugin", "npm": { - "downloads": 227, - "weekDownloads": 38, + "downloads": 285, + "weekDownloads": 23, "size": 371689, "latestRelease": "1.0.7", "latestReleaseDate": "2024-10-17T08:35:15.936Z" @@ -107127,8 +106456,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.857, - "topicSearchString": "react-native expo notifee notifications remote service plugin extension expo-notifee-plugin" + "popularity": -0.931, + "topicSearchString": "expo notifee notifications remote service plugin extension expo-notifee-plugin" }, { "githubUrl": "https://github.com/LonelyCpp/rn-scroll-viewport-tracker", @@ -107164,7 +106493,6 @@ "registry": "https://registry.npmjs.org/", "description": "modern scroll-view port tracker for react native", "topics": [ - "react-native", "ios", "android", "scrollview", @@ -107180,12 +106508,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-scroll-viewport-tracker", "npm": { - "downloads": 1046, - "weekDownloads": 121, + "downloads": 1150, + "weekDownloads": 235, "size": 74016, "latestRelease": "1.4.1", "latestReleaseDate": "2024-10-30T09:53:21.486Z" @@ -107195,8 +106524,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.152, - "topicSearchString": "react-native ios android scrollview intersection-observer" + "popularity": -0.076, + "topicSearchString": "ios android scrollview intersection-observer" }, { "githubUrl": "https://github.com/paufau/react-native-multiple-modals", @@ -107217,13 +106546,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T05:48:46Z", + "updatedAt": "2025-10-07T19:53:27Z", "createdAt": "2024-10-17T19:47:09Z", - "pushedAt": "2025-09-12T05:48:46Z", - "forks": 5, + "pushedAt": "2025-10-07T19:53:27Z", + "forks": 6, "issues": 0, "subscribers": 2, - "stars": 138, + "stars": 163, "dependencies": 0 }, "name": "react-native-multiple-modals", @@ -107231,7 +106560,6 @@ "isPrivate": false, "description": "Native implementation with the ability to display multiple Modals", "topics": [ - "react-native", "multiple", "modals", "simultaneously", @@ -107250,22 +106578,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-multiple-modals", "npm": { - "downloads": 2582, - "weekDownloads": 236, - "size": 301506, - "latestRelease": "3.1.2", - "latestReleaseDate": "2025-09-02T19:27:56.686Z" + "downloads": 2579, + "weekDownloads": 493, + "size": 306204, + "latestRelease": "3.2.2", + "latestReleaseDate": "2025-10-07T09:56:08.517Z" }, "score": 51, "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.078, - "topicSearchString": "react-native multiple modals simultaneously ios modal dialog android" + "popularity": 0.163, + "topicSearchString": "multiple modals simultaneously ios modal dialog android" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-dev-client", @@ -107274,6 +106604,7 @@ "tvos": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -107285,13 +106616,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-01T01:01:24Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 5 }, "name": "expo-dev-client", @@ -107299,7 +106630,6 @@ "isPrivate": false, "description": "Expo Development Client", "topics": [ - "react-native", "expo", "expo-dev-client" ], @@ -107313,27 +106643,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-dev-client", "npm": { - "downloads": 3243821, - "weekDownloads": 545773, - "size": 61419, - "latestRelease": "6.0.12", - "latestReleaseDate": "2025-09-11T20:27:55.210Z" + "downloads": 3428139, + "weekDownloads": 758461, + "size": 61677, + "latestRelease": "6.0.15", + "latestReleaseDate": "2025-10-10T18:56:36.900Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.143, - "topicSearchString": "react-native expo expo-dev-client" + "popularity": 0.188, + "topicSearchString": "expo expo-dev-client" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-build-properties", @@ -107346,6 +106677,7 @@ "expoGo": true, "newArchitecture": true, "fireos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -107357,13 +106689,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-01T01:01:24Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 2 }, "name": "expo-build-properties", @@ -107371,7 +106703,6 @@ "isPrivate": false, "description": "Config plugin to customize native build properties on prebuild", "topics": [ - "react-native", "expo", "build", "build-properties" @@ -107386,27 +106717,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-build-properties", "npm": { - "downloads": 2537841, - "weekDownloads": 407559, - "size": 122551, - "latestRelease": "1.0.8", - "latestReleaseDate": "2025-09-11T20:26:20.342Z" + "downloads": 2797298, + "weekDownloads": 620960, + "size": 124221, + "latestRelease": "1.0.9", + "latestReleaseDate": "2025-09-18T21:32:50.716Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.137, - "topicSearchString": "react-native expo build build-properties" + "popularity": 0.189, + "topicSearchString": "expo build build-properties" }, { "githubUrl": "https://github.com/pchalupa/expo-alternate-app-icons", @@ -107416,6 +106748,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/pchalupa/expo-alternate-app-icons", @@ -107430,10 +106763,10 @@ "updatedAt": "2025-09-08T07:16:59Z", "createdAt": "2023-10-02T19:20:07Z", "pushedAt": "2025-09-08T07:16:59Z", - "forks": 8, - "issues": 7, + "forks": 9, + "issues": 8, "subscribers": 4, - "stars": 132, + "stars": 151, "dependencies": 0 }, "name": "expo-alternate-app-icons", @@ -107441,7 +106774,6 @@ "isPrivate": false, "description": "Provides functions that let you change the app icon.", "topics": [ - "react-native", "expo", "expo-alternate-app-icons", "expoalternateappicons" @@ -107456,23 +106788,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-alternate-app-icons", "npm": { - "downloads": 46801, - "weekDownloads": 1811, + "downloads": 16506, + "weekDownloads": 4108, "size": 96628, "latestRelease": "3.0.0", "latestReleaseDate": "2025-09-08T07:17:08.277Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": 0.033, - "topicSearchString": "react-native expo expo-alternate-app-icons expoalternateappicons" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.212, + "topicSearchString": "expo expo-alternate-app-icons expoalternateappicons" }, { "githubUrl": "https://github.com/aravind3566/react-native-get-app-list", @@ -107504,7 +106835,6 @@ "registry": "https://registry.npmjs.org/", "description": "🎊🚨 A comprehensive library to retrieve the list of all installed applications on Android devices, including detailed information such as package names, app name and version codes. (Android only) 🚨🎊", "topics": [ - "react-native", "android", "installed-apps", "app-list", @@ -107530,23 +106860,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-get-app-list", "npm": { - "downloads": 177, - "weekDownloads": 18, + "downloads": 231, + "weekDownloads": 48, "size": 22849, "latestRelease": "0.2.0", "latestReleaseDate": "2025-09-11T06:40:40.254Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.912, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.822, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/quidone/react-native-wheel-picker", @@ -107580,9 +106909,9 @@ "createdAt": "2023-05-02T10:45:25Z", "pushedAt": "2025-08-25T12:56:46Z", "forks": 23, - "issues": 12, - "subscribers": 3, - "stars": 203, + "issues": 15, + "subscribers": 4, + "stars": 224, "dependencies": 2 }, "name": "@quidone/react-native-wheel-picker", @@ -107591,7 +106920,6 @@ "registry": "https://registry.npmjs.org/", "description": "Wheel Picker and Date Picker for React Native", "topics": [ - "react-native", "wheel", "picker", "date", @@ -107612,23 +106940,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 47870, - "weekDownloads": 7602, + "downloads": 55225, + "weekDownloads": 12036, "size": 451818, "latestRelease": "1.6.1", "latestReleaseDate": "2025-08-25T12:12:46.631Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.135, - "topicSearchString": "react-native wheel picker date datetime expo ios android select field" + "popularity": 0.185, + "topicSearchString": "wheel picker date datetime expo ios android select field" }, { "githubUrl": "https://github.com/HichamELBSI/react-native-body-highlighter", @@ -107657,14 +106984,14 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2024-11-14T10:29:33Z", + "updatedAt": "2025-10-15T13:49:20Z", "createdAt": "2019-01-27T00:29:08Z", - "pushedAt": "2024-11-14T10:29:33Z", - "forks": 39, - "issues": 1, + "pushedAt": "2025-10-15T13:49:20Z", + "forks": 44, + "issues": 8, "subscribers": 3, - "stars": 125, - "dependencies": 2 + "stars": 134, + "dependencies": 1 }, "name": "react-native-body-highlighter", "fullName": "HichamELBSI/react-native-body-highlighter", @@ -107672,7 +106999,6 @@ "description": "Highlight human body parts with SVG only 💪", "topics": [ "reactnative", - "react", "muscle", "muscles", "body", @@ -107683,7 +107009,6 @@ "bones", "expo", "human-body", - "react-native", "select" ], "license": { @@ -107696,23 +107021,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-body-highlighter", "npm": { - "downloads": 1153, - "weekDownloads": 218, + "downloads": 1309, + "weekDownloads": 217, "size": 1183878, "latestRelease": "3.1.3", "latestReleaseDate": "2024-11-14T10:25:56.314Z" }, - "score": 32, + "score": 59, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Known", + "Recently updated" ], - "popularity": 0.161, - "topicSearchString": "reactnative react muscle muscles body highlighter highlight color svg bones expo human-body react-native select" + "popularity": 0.141, + "topicSearchString": "reactnative muscle muscles body highlighter highlight color svg bones expo human-body select" }, { "githubUrl": "https://github.com/talsec/Free-RASP-ReactNative", @@ -107725,6 +107051,7 @@ "android": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/talsec/Free-RASP-ReactNative", @@ -107736,13 +107063,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-04T07:39:50Z", + "updatedAt": "2025-09-17T13:40:42Z", "createdAt": "2023-01-06T14:31:09Z", - "pushedAt": "2025-09-04T07:39:50Z", - "forks": 15, + "pushedAt": "2025-09-17T13:40:42Z", + "forks": 16, "issues": 3, - "subscribers": 3, - "stars": 142, + "subscribers": 2, + "stars": 144, "dependencies": 0 }, "name": "freerasp-react-native", @@ -107751,7 +107078,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native plugin for Android and iOS mobile devices. SDK providing app protection and threat monitoring. Shield your app with free RASP. Detect reverse engineering, root (Magisk), jailbreak, Frida, emulators, bots, tampering and integrity issues, obfuscation, VPN usage, malware, and monitor device identification and fingerprint.", "topics": [ - "react-native", "library", "plugin", "freerasp", @@ -107776,22 +107102,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 15308, - "weekDownloads": 2178, - "size": 15457319, - "latestRelease": "4.2.3", - "latestReleaseDate": "2025-09-04T07:40:54.732Z" + "downloads": 15857, + "weekDownloads": 3655, + "size": 15457891, + "latestRelease": "4.2.4", + "latestReleaseDate": "2025-09-17T13:41:41.923Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": 0.121, - "topicSearchString": "react-native library plugin freerasp security app-security tampering-detection root-detection app-shielding rasp tampering reverse-engineering application-security frida" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.196, + "topicSearchString": "library plugin freerasp security app-security tampering-detection root-detection app-shielding rasp tampering reverse-engineering application-security frida" }, { "githubUrl": "https://github.com/pnthach95/react-native-root-view-background", @@ -107828,7 +107153,6 @@ "registry": "https://registry.npmjs.org/", "description": "Set background color of root view for react native", "topics": [ - "react-native", "ios", "android" ], @@ -107842,19 +107166,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 7287, - "weekDownloads": 1654, + "downloads": 7606, + "weekDownloads": 1436, "size": 15116, "latestRelease": "2.0.0", "latestReleaseDate": "2025-08-13T09:56:18.767Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": 0.193, - "topicSearchString": "react-native ios android" + "popularity": 0.161, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/EdgarJMesquita/expo-pip", @@ -107865,6 +107191,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", @@ -107876,13 +107203,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-04-29T18:36:46Z", + "updatedAt": "2025-10-14T19:16:13Z", "createdAt": "2024-04-16T06:27:11Z", - "pushedAt": "2025-04-29T18:36:46Z", - "forks": 3, + "pushedAt": "2025-10-14T19:16:13Z", + "forks": 4, "issues": 0, "subscribers": 1, - "stars": 12, + "stars": 14, "dependencies": 0 }, "name": "expo-pip", @@ -107890,7 +107217,6 @@ "isPrivate": false, "description": "A library that provides access to Picture In Picture API for Android only.", "topics": [ - "react-native", "expo", "expo-pip", "expopip", @@ -107907,22 +107233,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-pip", "npm": { - "downloads": 54378, - "weekDownloads": 6843, - "size": 30163, - "latestRelease": "2.0.0", - "latestReleaseDate": "2025-04-29T18:40:40.062Z" + "downloads": 8617, + "weekDownloads": 2792, + "size": 31616, + "latestRelease": "2.0.1", + "latestReleaseDate": "2025-10-14T20:04:30.553Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.143, - "topicSearchString": "react-native expo expo-pip expopip picture-in-picture pip" + "popularity": 0.025, + "topicSearchString": "expo expo-pip expopip picture-in-picture pip" }, { "githubUrl": "https://github.com/tamagui/tamagui/tree/master/code/ui/tamagui", @@ -107948,13 +107277,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-09T17:55:31Z", + "updatedAt": "2025-10-20T20:30:28Z", "createdAt": "2020-10-16T21:19:51Z", - "pushedAt": "2025-09-09T17:55:31Z", + "pushedAt": "2025-10-20T20:30:28Z", "forks": 574, - "issues": 146, - "subscribers": 40, - "stars": 13115, + "issues": 147, + "subscribers": 41, + "stars": 13225, "dependencies": 53 }, "name": "tamagui", @@ -107965,26 +107294,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "tamagui", "npm": { - "downloads": 413372, - "weekDownloads": 114072, - "size": 4184874, - "latestRelease": "1.132.24", - "latestReleaseDate": "2025-09-13T20:29:21.962Z" + "downloads": 324334, + "weekDownloads": 68541, + "size": 4119202, + "latestRelease": "1.135.4", + "latestReleaseDate": "2025-10-20T20:27:03.770Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.235, + "popularity": 0.18, "topicSearchString": "" }, { @@ -108006,13 +107335,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-08-26T17:37:47Z", + "updatedAt": "2025-10-20T20:30:28Z", "createdAt": "2020-10-16T21:19:51Z", - "pushedAt": "2025-08-26T17:37:47Z", + "pushedAt": "2025-10-20T20:30:28Z", "forks": 574, - "issues": 146, - "subscribers": 40, - "stars": 13115, + "issues": 147, + "subscribers": 41, + "stars": 13225, "dependencies": 3 }, "name": "@tamagui/animations-moti", @@ -108029,25 +107358,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 387966, - "weekDownloads": 109025, - "size": 111895, - "latestRelease": "1.132.24", - "latestReleaseDate": "2025-09-13T20:29:46.840Z" + "downloads": 306327, + "weekDownloads": 65663, + "size": 109971, + "latestRelease": "1.135.4", + "latestReleaseDate": "2025-10-20T20:27:31.345Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.239, + "popularity": 0.182, "topicSearchString": "" }, { @@ -108069,13 +107398,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-08-26T17:37:47Z", + "updatedAt": "2025-10-20T20:30:28Z", "createdAt": "2020-10-16T21:19:51Z", - "pushedAt": "2025-08-26T17:37:47Z", + "pushedAt": "2025-10-20T20:30:28Z", "forks": 574, - "issues": 146, - "subscribers": 40, - "stars": 13115, + "issues": 147, + "subscribers": 41, + "stars": 13225, "dependencies": 3 }, "name": "@tamagui/animations-react-native", @@ -108092,25 +107421,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 452595, - "weekDownloads": 120276, - "size": 158891, - "latestRelease": "1.132.24", - "latestReleaseDate": "2025-09-13T20:29:46.417Z" + "downloads": 376839, + "weekDownloads": 78330, + "size": 156646, + "latestRelease": "1.135.4", + "latestReleaseDate": "2025-10-20T20:27:30.398Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.226, + "popularity": 0.177, "topicSearchString": "" }, { @@ -108132,13 +107461,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-08-26T17:37:47Z", + "updatedAt": "2025-10-20T20:30:28Z", "createdAt": "2020-10-16T21:19:51Z", - "pushedAt": "2025-08-26T17:37:47Z", + "pushedAt": "2025-10-20T20:30:28Z", "forks": 574, - "issues": 146, - "subscribers": 40, - "stars": 13115, + "issues": 147, + "subscribers": 41, + "stars": 13225, "dependencies": 12 }, "name": "@tamagui/config", @@ -108148,25 +107477,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 325332, - "weekDownloads": 101119, - "size": 1174935, - "latestRelease": "1.132.24", - "latestReleaseDate": "2025-09-13T20:29:44.265Z" + "downloads": 252251, + "weekDownloads": 53477, + "size": 1173813, + "latestRelease": "1.135.4", + "latestReleaseDate": "2025-10-20T20:27:29.934Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.514, + "popularity": 0.18, "topicSearchString": "" }, { @@ -108188,13 +107517,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-08-26T17:37:47Z", + "updatedAt": "2025-10-20T20:30:28Z", "createdAt": "2020-10-16T21:19:51Z", - "pushedAt": "2025-08-26T17:37:47Z", + "pushedAt": "2025-10-20T20:30:28Z", "forks": 574, - "issues": 146, - "subscribers": 40, - "stars": 13115, + "issues": 147, + "subscribers": 41, + "stars": 13225, "dependencies": 1 }, "name": "@tamagui/shorthands", @@ -108204,25 +107533,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 441666, - "weekDownloads": 119714, - "size": 84112, - "latestRelease": "1.132.24", - "latestReleaseDate": "2025-09-13T20:29:39.764Z" + "downloads": 363503, + "weekDownloads": 75146, + "size": 84413, + "latestRelease": "1.135.4", + "latestReleaseDate": "2025-10-20T20:27:23.065Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.23, + "popularity": 0.176, "topicSearchString": "" }, { @@ -108244,13 +107573,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-08-26T17:37:47Z", + "updatedAt": "2025-10-20T20:30:28Z", "createdAt": "2020-10-16T21:19:51Z", - "pushedAt": "2025-08-26T17:37:47Z", + "pushedAt": "2025-10-20T20:30:28Z", "forks": 574, - "issues": 146, - "subscribers": 40, - "stars": 13115, + "issues": 147, + "subscribers": 41, + "stars": 13225, "dependencies": 5 }, "name": "@tamagui/themes", @@ -108260,25 +107589,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 362640, - "weekDownloads": 108574, - "size": 11250250, - "latestRelease": "1.132.24", - "latestReleaseDate": "2025-09-13T20:29:39.601Z" + "downloads": 298549, + "weekDownloads": 61469, + "size": 11767917, + "latestRelease": "1.135.4", + "latestReleaseDate": "2025-10-20T20:27:23.417Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.504, + "popularity": 0.175, "topicSearchString": "" }, { @@ -108302,13 +107631,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-08-26T17:37:47Z", + "updatedAt": "2025-10-20T20:30:28Z", "createdAt": "2020-10-16T21:19:51Z", - "pushedAt": "2025-08-26T17:37:47Z", + "pushedAt": "2025-10-20T20:30:28Z", "forks": 574, - "issues": 146, - "subscribers": 40, - "stars": 13115, + "issues": 147, + "subscribers": 41, + "stars": 13225, "dependencies": 15 }, "name": "@tamagui/toast", @@ -108318,25 +107647,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 140110, - "weekDownloads": 26040, - "size": 704878, - "latestRelease": "1.132.24", - "latestReleaseDate": "2025-09-13T20:29:21.576Z" + "downloads": 154197, + "weekDownloads": 33002, + "size": 689228, + "latestRelease": "1.135.4", + "latestReleaseDate": "2025-10-20T20:27:03.182Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.158, + "popularity": 0.182, "topicSearchString": "" }, { @@ -108367,7 +107696,7 @@ "forks": 1, "issues": 1, "subscribers": 1, - "stars": 9, + "stars": 8, "dependencies": 0 }, "name": "react-native-webp-converter", @@ -108380,7 +107709,6 @@ "image-webp", "image-converter", "webpconverter", - "react-native", "ios", "android", "image-compression", @@ -108396,12 +107724,14 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-webp-converter", "npm": { - "downloads": 315, - "weekDownloads": 154, + "downloads": 386, + "weekDownloads": 99, "size": 96364, "latestRelease": "0.2.0", "latestReleaseDate": "2024-11-16T04:22:14.991Z" @@ -108410,8 +107740,8 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.584, - "topicSearchString": "webp image-webp image-converter webpconverter react-native ios android image-compression webp-converter" + "popularity": -0.78, + "topicSearchString": "webp image-webp image-converter webpconverter ios android image-compression webp-converter" }, { "githubUrl": "https://github.com/wneel/react-native-get-device-locale", @@ -108439,7 +107769,7 @@ "forks": 1, "issues": 0, "subscribers": 1, - "stars": 4, + "stars": 5, "dependencies": 0 }, "name": "react-native-get-device-locale", @@ -108449,9 +107779,7 @@ "description": "A lightweight and efficient React Native turbo module that provides easy access to the device's locale.", "topics": [ "module", - "native-module", "turbo-module", - "react-native", "typescript", "i18n", "locale", @@ -108468,20 +107796,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-get-device-locale", "npm": { - "downloads": 665, - "weekDownloads": 130, + "downloads": 699, + "weekDownloads": 180, "size": 42082, "latestRelease": "0.3.0", "latestReleaseDate": "2025-04-29T11:33:33.944Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.833, - "topicSearchString": "module native-module turbo-module react-native typescript i18n locale localization device-locale" + "popularity": -0.78, + "topicSearchString": "module turbo-module typescript i18n locale localization device-locale" }, { "githubUrl": "https://github.com/filipe-2/native-sass", @@ -108517,11 +107847,7 @@ "topics": [ "sass", "scss", - "react", - "react-native", - "native-sass", "nativesass", - "native", "sassy", "nesting", "typescript", @@ -108541,23 +107867,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "native-sass", "npm": { - "downloads": 7, - "weekDownloads": 0, + "downloads": 60, + "weekDownloads": 2, "size": 208952, "latestRelease": "2.0.1", "latestReleaseDate": "2024-11-20T23:25:54.682Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1, - "topicSearchString": "sass scss react react-native native-sass nativesass native sassy nesting typescript android ios mobile frontend universal" + "popularity": -0.971, + "topicSearchString": "sass scss nativesass sassy nesting typescript android ios mobile frontend universal" }, { "githubUrl": "https://github.com/kore-koi/react-native-media-controller", @@ -108594,7 +107920,6 @@ "registry": "https://registry.npmjs.org/", "description": "🔊 Media Controller for React Native", "topics": [ - "react-native", "nitro", "volume", "volume-control" @@ -108609,22 +107934,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npm": { - "downloads": 5, - "weekDownloads": 0, + "downloads": 21, + "weekDownloads": 1, "size": 70586, "latestRelease": "0.0.5", "latestReleaseDate": "2024-11-16T18:23:37.243Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1, - "topicSearchString": "react-native nitro volume volume-control" + "popularity": -0.95, + "topicSearchString": "nitro volume volume-control" }, { "githubUrl": "https://github.com/BearStudio/react-native-ficus-ui/tree/main/packages/react-native-ficus-ui", @@ -108648,13 +107974,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-10T10:14:34Z", + "updatedAt": "2025-10-03T08:31:13Z", "createdAt": "2023-07-02T18:21:01Z", - "pushedAt": "2025-09-10T10:14:34Z", + "pushedAt": "2025-10-03T08:31:13Z", "forks": 4, "issues": 14, - "subscribers": 2, - "stars": 100, + "subscribers": 1, + "stars": 105, "dependencies": 24 }, "name": "react-native-ficus-ui", @@ -108671,22 +107997,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ficus-ui", "npm": { - "downloads": 692, - "weekDownloads": 76, - "size": 917050, - "latestRelease": "2.2.1", - "latestReleaseDate": "2025-09-10T10:15:24.366Z" + "downloads": 851, + "weekDownloads": 157, + "size": 1158882, + "latestRelease": "2.3.1", + "latestReleaseDate": "2025-10-03T08:32:42.314Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.656, + "popularity": -0.593, "topicSearchString": "" }, { @@ -108712,8 +108038,8 @@ "pushedAt": "2025-04-21T01:41:19Z", "forks": 8, "issues": 4, - "subscribers": 8, - "stars": 220, + "subscribers": 9, + "stars": 226, "dependencies": 1 }, "name": "react-native-skia-list", @@ -108722,7 +108048,6 @@ "registry": "https://registry.npmjs.org/", "description": "The fastest react-native list renderer based on @shopify/react-native-skia", "topics": [ - "react-native", "ios", "android" ], @@ -108736,23 +108061,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-skia-list", "npm": { - "downloads": 515, - "weekDownloads": 65, + "downloads": 592, + "weekDownloads": 123, "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.643, - "topicSearchString": "react-native ios android" + "popularity": -0.573, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/rollbar/rollbar-react-native", @@ -108772,9 +108099,9 @@ "updatedAt": "2025-09-08T21:52:36Z", "createdAt": "2017-09-15T17:35:29Z", "pushedAt": "2025-09-08T21:52:36Z", - "forks": 36, - "issues": 22, - "subscribers": 29, + "forks": 35, + "issues": 23, + "subscribers": 28, "stars": 72, "dependencies": 3 }, @@ -108783,12 +108110,10 @@ "isPrivate": false, "description": "Crash and error reporting for React Native using Rollbar", "topics": [ - "react-native", "error-monitoring", "error-reporting", "javascript", "observability", - "react", "typescript" ], "license": { @@ -108801,24 +108126,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rollbar-react-native", "npm": { - "downloads": 21275, - "weekDownloads": 4027, + "downloads": 19877, + "weekDownloads": 3880, "size": 210249, "latestRelease": "1.0.0", "latestReleaseDate": "2025-09-08T22:09:42.620Z" }, - "score": 57, + "score": 51, "matchingScoreModifiers": [ "Known", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.161, - "topicSearchString": "react-native error-monitoring error-reporting javascript observability react typescript" + "popularity": 0.166, + "topicSearchString": "error-monitoring error-reporting javascript observability typescript" }, { "githubUrl": "https://github.com/fusioncharts/react-native-fusioncharts", @@ -108854,8 +108179,6 @@ "isPrivate": false, "description": "Simple and Lightweight React Native component for FusionCharts JavaScript Charting Library", "topics": [ - "react-native", - "react", "fusioncharts", "android", "ios", @@ -108872,23 +108195,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-fusioncharts", "npm": { - "downloads": 4849, - "weekDownloads": 718, + "downloads": 3229, + "weekDownloads": 880, "size": 5206551, "latestRelease": "6.0.1", "latestReleaseDate": "2025-09-05T11:44:52.811Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.126, - "topicSearchString": "react-native react fusioncharts android ios chart wrapper" + "popularity": 0.232, + "topicSearchString": "fusioncharts android ios chart wrapper" }, { "githubUrl": "https://github.com/plaid/react-native-plaid-link-sdk", @@ -108909,13 +108232,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T19:03:02Z", + "updatedAt": "2025-10-06T18:09:17Z", "createdAt": "2019-11-04T23:43:33Z", - "pushedAt": "2025-09-10T19:03:02Z", - "forks": 127, - "issues": 3, + "pushedAt": "2025-10-06T18:09:17Z", + "forks": 129, + "issues": 2, "subscribers": 53, - "stars": 188, + "stars": 189, "dependencies": 0 }, "name": "react-native-plaid-link-sdk", @@ -108923,10 +108246,8 @@ "isPrivate": false, "description": "Plaid Link for React Native", "topics": [ - "react-native", "plaid", - "plaid-link", - "react" + "plaid-link" ], "license": { "key": "mit", @@ -108938,25 +108259,26 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-plaid-link-sdk", "npm": { - "downloads": 282539, - "weekDownloads": 47472, - "size": 1787530, - "latestRelease": "12.5.2", - "latestReleaseDate": "2025-09-10T19:05:16.064Z" + "downloads": 281958, + "weekDownloads": 61817, + "size": 323873, + "latestRelease": "12.6.0", + "latestReleaseDate": "2025-10-06T18:16:14.863Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.143, - "topicSearchString": "react-native plaid plaid-link react" + "popularity": 0.186, + "topicSearchString": "plaid plaid-link" }, { "githubUrl": "https://github.com/ctrlplusb/easy-peasy", @@ -108978,8 +108300,8 @@ "pushedAt": "2025-03-22T10:39:25Z", "forks": 192, "issues": 10, - "subscribers": 32, - "stars": 5043, + "subscribers": 31, + "stars": 5041, "dependencies": 7 }, "name": "easy-peasy", @@ -108987,14 +108309,12 @@ "isPrivate": false, "description": "Vegetarian friendly state for React", "topics": [ - "react", "redux", "state", "typescript", "state-management", "immutable", "hooks", - "react-hooks", "immer" ], "license": { @@ -109007,25 +108327,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "easy-peasy", "npm": { - "downloads": 134822, - "weekDownloads": 23846, + "downloads": 126675, + "weekDownloads": 30403, "size": 432456, "latestRelease": "6.1.0", "latestReleaseDate": "2025-02-19T15:25:01.777Z" }, - "score": 92, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.15, - "topicSearchString": "react redux state typescript state-management immutable hooks react-hooks immer" + "popularity": 0.204, + "topicSearchString": "redux state typescript state-management immutable hooks immer" }, { "githubUrl": "https://github.com/pushy/pushy-react-native", @@ -109057,7 +108379,7 @@ "forks": 17, "issues": 0, "subscribers": 5, - "stars": 20, + "stars": 21, "dependencies": 0 }, "name": "pushy-react-native", @@ -109075,21 +108397,20 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "pushy-react-native", "npm": { - "downloads": 2227, - "weekDownloads": 311, + "downloads": 2602, + "weekDownloads": 428, "size": 74843, "latestRelease": "1.0.58", "latestReleaseDate": "2025-07-28T08:10:24.322Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.131, + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.11, "topicSearchString": "" }, { @@ -109129,12 +108450,10 @@ "isPrivate": false, "description": "Resources generator for React Native", "topics": [ - "react-native", "boilerplate", "resources", "generate", "scaffold", - "react", "template" ], "license": { @@ -109147,11 +108466,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rnx-gen", "npm": { - "downloads": 9, + "downloads": 59, "weekDownloads": 0, "size": 68383, "latestRelease": "1.3.0", @@ -109162,7 +108482,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native boilerplate resources generate scaffold react template" + "topicSearchString": "boilerplate resources generate scaffold template" }, { "githubUrl": "https://github.com/BrodaNoel/duix", @@ -109188,7 +108508,7 @@ "forks": 5, "issues": 5, "subscribers": 3, - "stars": 53, + "stars": 54, "dependencies": 0 }, "name": "duix", @@ -109218,22 +108538,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "duix", "npm": { - "downloads": 332, - "weekDownloads": 59, + "downloads": 262, + "weekDownloads": 63, "size": 30013, "latestRelease": "3.1.0", "latestReleaseDate": "2025-02-04T16:21:33.786Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.599, + "popularity": -0.543, "topicSearchString": "state manager x kiss callbacks statemanager state-management state-manager redux vuex pareto" }, { @@ -109254,13 +108574,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-13T20:24:16Z", + "updatedAt": "2025-10-20T07:23:22Z", "createdAt": "2014-08-18T22:30:27Z", - "pushedAt": "2025-09-13T20:24:16Z", - "forks": 11039, - "issues": 177, - "subscribers": 1179, - "stars": 107600, + "pushedAt": "2025-10-20T07:23:22Z", + "forks": 11193, + "issues": 182, + "subscribers": 1180, + "stars": 107979, "dependencies": 3 }, "name": "axios", @@ -109273,6 +108593,11 @@ "ajax", "promise", "node", + "browser", + "fetch", + "rest", + "api", + "client", "http-client", "javascript", "nodejs", @@ -109288,15 +108613,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "axios", "npm": { - "downloads": 295442426, - "weekDownloads": 49814564, - "size": 2238457, - "latestRelease": "1.12.1", - "latestReleaseDate": "2025-09-12T14:19:34.109Z" + "downloads": 289714171, + "weekDownloads": 64885540, + "size": 2241796, + "latestRelease": "1.12.2", + "latestReleaseDate": "2025-09-14T12:59:27.346Z" }, "score": 86, "matchingScoreModifiers": [ @@ -109307,8 +108633,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.143, - "topicSearchString": "xhr http ajax promise node http-client javascript nodejs hacktoberfest" + "popularity": 0.19, + "topicSearchString": "xhr http ajax promise node browser fetch rest api client http-client javascript nodejs hacktoberfest" }, { "githubUrl": "https://github.com/mustapha-ghlissi/react-native-select-picker", @@ -109351,7 +108677,6 @@ "isPrivate": false, "description": "Reanimated React Native Select Picker: reanimated dropdown select compatible with Android, IOS and Web", "topics": [ - "react-native", "component", "picker", "reanimated", @@ -109378,11 +108703,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 151, - "weekDownloads": 16, + "downloads": 266, + "weekDownloads": 19, "size": 65792, "latestRelease": "1.1.2", "latestReleaseDate": "2024-07-20T16:51:03.458Z" @@ -109392,8 +108718,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.909, - "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" + "popularity": -0.939, + "topicSearchString": "component picker reanimated reanimated-picker reanimated-select reanimated-dropdown select select-picker dropdown dropdown-picker dropdown-select picker-select multiple multiselect options" }, { "githubUrl": "https://github.com/mustapha-ghlissi/react-native-otp", @@ -109437,7 +108763,6 @@ "isPrivate": false, "description": "One Time Password Input Component for React Native.", "topics": [ - "react-native", "component", "otp", "one", @@ -109466,11 +108791,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 21, - "weekDownloads": 1, + "downloads": 187, + "weekDownloads": 12, "size": 39036, "latestRelease": "1.3.1", "latestReleaseDate": "2024-07-18T17:54:14.875Z" @@ -109480,8 +108806,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.95, - "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" + "popularity": -0.945, + "topicSearchString": "component otp one time password mobile ios android sms web verify code confirmation confirmation-code one-time-code one-time-password otp-input" }, { "githubUrl": "https://github.com/mustapha-ghlissi/react-native-accordion", @@ -109526,7 +108852,6 @@ "isPrivate": false, "description": "Collapsible Accordion for React Native", "topics": [ - "react-native", "component", "accordion", "collapse", @@ -109552,11 +108877,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 40, - "weekDownloads": 3, + "downloads": 167, + "weekDownloads": 16, "size": 19017, "latestRelease": "1.1.0", "latestReleaseDate": "2024-07-18T10:18:23.373Z" @@ -109566,8 +108892,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.933, - "topicSearchString": "react-native component accordion collapse reanimated reanimated-collapse reanimated-accordion collapsible collapsible-sections panels group-collapse ios android collapse-ui collapsible-ui" + "popularity": -0.918, + "topicSearchString": "component accordion collapse reanimated reanimated-collapse reanimated-accordion collapsible collapsible-sections panels group-collapse ios android collapse-ui collapsible-ui" }, { "githubUrl": "https://github.com/margelo/react-native-nitro-sqlite/tree/main/package", @@ -109592,10 +108918,10 @@ "updatedAt": "2025-08-04T09:44:59Z", "createdAt": "2023-04-05T09:24:15Z", "pushedAt": "2025-08-04T09:44:59Z", - "forks": 31, - "issues": 25, - "subscribers": 7, - "stars": 470, + "forks": 32, + "issues": 26, + "subscribers": 6, + "stars": 478, "dependencies": 1 }, "name": "react-native-nitro-sqlite", @@ -109604,7 +108930,6 @@ "registry": "https://registry.npmjs.org/", "description": "Fast SQLite library for React Native built using Nitro Modules", "topics": [ - "react-native", "sqlite", "nitro-modules", "ios", @@ -109620,22 +108945,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npm": { - "downloads": 11644, - "weekDownloads": 2071, + "downloads": 13946, + "weekDownloads": 2848, "size": 10125550, "latestRelease": "9.1.11", "latestReleaseDate": "2025-08-04T09:42:53.314Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.151, - "topicSearchString": "react-native sqlite nitro-modules ios android" + "popularity": 0.174, + "topicSearchString": "sqlite nitro-modules ios android" }, { "githubUrl": "https://github.com/tomatterton/react-native-snowfall", @@ -109674,7 +109000,6 @@ "registry": "https://registry.npmjs.org/", "description": "An Animated Snowfall background", "topics": [ - "react-native", "ios", "android" ], @@ -109688,23 +109013,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-snowfall", "npm": { - "downloads": 2847, - "weekDownloads": 744, + "downloads": 3098, + "weekDownloads": 554, "size": 58086, "latestRelease": "0.1.2", "latestReleaseDate": "2024-11-20T10:46:48.397Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.028, - "topicSearchString": "react-native ios android" + "popularity": -0.098, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/yukukotani/react-native-webview-rpc", @@ -109732,7 +109057,7 @@ "forks": 1, "issues": 0, "subscribers": 1, - "stars": 27, + "stars": 28, "dependencies": 0 }, "name": "react-native-webview-rpc", @@ -109741,7 +109066,6 @@ "description": "A type-safe RPC between React Native function and JavaScript inside WebView, powered by Comlink", "topics": [ "comlink", - "react-native", "typescript" ], "license": { @@ -109754,22 +109078,20 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-webview-rpc", "npm": { - "downloads": 16, - "weekDownloads": 3, + "downloads": 9, + "weekDownloads": 1, "latestRelease": "0.0.1", "latestReleaseDate": "2016-01-21T12:31:39.660Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.55, - "topicSearchString": "comlink react-native typescript" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.65, + "topicSearchString": "comlink typescript" }, { "githubUrl": "https://github.com/jobpaardekooper/react-native-localize-date", @@ -109779,6 +109101,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/jobpaardekooper/react-native-localize-date", @@ -109806,7 +109129,6 @@ "description": "React Native date localization using correct platform specific preferences", "topics": [ "localize-date", - "react-native", "nitro", "localize", "localization", @@ -109822,23 +109144,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "nitro" }, "npmPkg": "react-native-localize-date", "npm": { - "downloads": 21, - "weekDownloads": 0, + "downloads": 109, + "weekDownloads": 9, "size": 82260, "latestRelease": "2.1.1", "latestReleaseDate": "2025-01-08T16:09:56.203Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1, - "topicSearchString": "localize-date react-native nitro localize localization l20n" + "popularity": -0.928, + "topicSearchString": "localize-date nitro localize localization l20n" }, { "githubUrl": "https://github.com/JUHUU-Labs/sdk-ts", @@ -109859,9 +109182,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-13T08:48:10Z", + "updatedAt": "2025-10-09T10:20:39Z", "createdAt": "2024-02-29T20:12:54Z", - "pushedAt": "2025-09-13T08:48:10Z", + "pushedAt": "2025-10-09T10:20:39Z", "forks": 1, "issues": 0, "subscribers": 0, @@ -109876,6 +109199,7 @@ "juhuu" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -109884,21 +109208,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2258, - "weekDownloads": 81, - "size": 841225, - "latestRelease": "1.2.275", - "latestReleaseDate": "2025-09-13T09:07:40.080Z" + "downloads": 3953, + "weekDownloads": 1190, + "size": 872157, + "latestRelease": "1.2.313", + "latestReleaseDate": "2025-10-15T11:04:11.098Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.219, + "popularity": 0.006, "topicSearchString": "juhuu" }, { @@ -109920,13 +109244,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T17:59:32Z", + "updatedAt": "2025-10-17T22:14:56Z", "createdAt": "2020-03-07T20:59:08Z", - "pushedAt": "2025-09-11T17:59:32Z", - "forks": 1585, - "issues": 191, - "subscribers": 74, - "stars": 39959, + "pushedAt": "2025-10-17T22:14:56Z", + "forks": 1630, + "issues": 213, + "subscribers": 75, + "stars": 40422, "dependencies": 0 }, "name": "zod", @@ -109950,26 +109274,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "zod", "npm": { - "downloads": 186440975, - "weekDownloads": 31998729, - "size": 3958238, - "latestRelease": "4.1.8", - "latestReleaseDate": "2025-09-11T18:01:08.023Z" + "downloads": 199738689, + "weekDownloads": 40625430, + "size": 3957745, + "latestRelease": "4.1.12", + "latestReleaseDate": "2025-10-06T16:30:25.760Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.146, + "popularity": 0.173, "topicSearchString": "typescript schema validation type inference" }, { @@ -109991,13 +109315,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-07-21T23:24:55Z", + "updatedAt": "2025-10-04T17:14:14Z", "createdAt": "2021-07-15T08:37:57Z", - "pushedAt": "2025-07-21T23:24:55Z", - "forks": 82, - "issues": 22, - "subscribers": 11, - "stars": 5351, + "pushedAt": "2025-10-04T17:14:14Z", + "forks": 84, + "issues": 21, + "subscribers": 10, + "stars": 5409, "dependencies": 0 }, "name": "tailwind-merge", @@ -110026,24 +109350,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "tailwind-merge", "npm": { - "downloads": 53100829, - "weekDownloads": 9524518, + "downloads": 52209394, + "weekDownloads": 10970073, "size": 898277, "latestRelease": "3.3.1", "latestReleaseDate": "2025-06-10T20:04:17.692Z" }, - "score": 92, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.152, + "popularity": 0.179, "topicSearchString": "tailwindcss tailwind css classes classname classlist merge conflict override utility-classes" }, { @@ -110068,10 +109393,10 @@ "updatedAt": "2024-04-23T05:26:02Z", "createdAt": "2018-12-24T22:33:11Z", "pushedAt": "2024-04-23T05:26:02Z", - "forks": 156, - "issues": 6, - "subscribers": 17, - "stars": 9371, + "forks": 158, + "issues": 8, + "subscribers": 16, + "stars": 9452, "dependencies": 0 }, "name": "clsx", @@ -110093,25 +109418,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "clsx", "npm": { - "downloads": 155557413, - "weekDownloads": 25994824, + "downloads": 148533460, + "weekDownloads": 32588740, "size": 8555, "latestRelease": "2.1.1", "latestReleaseDate": "2024-04-23T05:26:04.645Z" }, - "score": 81, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.142, + "popularity": 0.186, "topicSearchString": "classes classname classnames" }, { @@ -110129,13 +109454,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-16T08:17:56Z", + "updatedAt": "2025-09-28T14:59:20Z", "createdAt": "2022-04-21T10:10:28Z", - "pushedAt": "2025-08-16T08:17:56Z", - "forks": 13, + "pushedAt": "2025-09-28T14:59:20Z", + "forks": 17, "issues": 3, "subscribers": 2, - "stars": 72, + "stars": 74, "dependencies": 0 }, "name": "react-native-ios-utilities", @@ -110144,7 +109469,6 @@ "registry": "https://registry.npmjs.org/", "description": "WIP", "topics": [ - "react-native", "ios", "utilities", "utility", @@ -110162,22 +109486,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-ios-utilities", "npm": { - "downloads": 161531, - "weekDownloads": 27631, - "size": 1022025, - "latestRelease": "5.1.8", - "latestReleaseDate": "2025-07-16T04:29:58.644Z" + "downloads": 155960, + "weekDownloads": 32898, + "size": 492284, + "latestRelease": "5.2.0", + "latestReleaseDate": "2025-09-28T15:00:44.307Z" }, - "score": 54, + "score": 59, "matchingScoreModifiers": [ - "Known" + "Known", + "Recently updated" ], - "popularity": 0.145, - "topicSearchString": "react-native ios utilities utility fabric paper jsi" + "popularity": 0.179, + "topicSearchString": "ios utilities utility fabric paper jsi" }, { "githubUrl": "https://github.com/iamkun/dayjs", @@ -110198,13 +109525,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T11:23:07Z", + "updatedAt": "2025-10-16T04:14:40Z", "createdAt": "2018-04-10T09:26:44Z", - "pushedAt": "2025-09-12T11:23:07Z", - "forks": 2348, - "issues": 917, - "subscribers": 278, - "stars": 48209, + "pushedAt": "2025-10-16T04:14:40Z", + "forks": 2351, + "issues": 925, + "subscribers": 277, + "stars": 48310, "dependencies": 0 }, "name": "dayjs", @@ -110230,26 +109557,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "dayjs", "npm": { - "downloads": 121393121, - "weekDownloads": 19947729, + "downloads": 120597177, + "weekDownloads": 26906840, "size": 672352, "latestRelease": "1.11.18", "latestReleaseDate": "2025-08-30T03:30:48.541Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.14, + "popularity": 0.19, "topicSearchString": "dayjs date time immutable moment date-formatting datetime" }, { @@ -110274,10 +109601,10 @@ "updatedAt": "2025-04-06T16:04:32Z", "createdAt": "2013-02-15T14:10:05Z", "pushedAt": "2025-04-06T16:04:32Z", - "forks": 86, + "forks": 87, "issues": 0, - "subscribers": 13, - "stars": 672, + "subscribers": 12, + "stars": 674, "dependencies": 0 }, "name": "html-entities", @@ -110306,24 +109633,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "html-entities", "npm": { - "downloads": 96399364, - "weekDownloads": 16130951, + "downloads": 94753649, + "weekDownloads": 20974635, "size": 132312, "latestRelease": "2.6.0", "latestReleaseDate": "2025-03-30T15:40:10.885Z" }, - "score": 92, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.142, + "popularity": 0.188, "topicSearchString": "html html-entities html-entities-encode html-entities-decode entities entities-encode entities-decode html-special-characters printable-characters ascii-characters" }, { @@ -110346,13 +109674,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-09T16:44:08Z", + "updatedAt": "2025-10-20T21:29:23Z", "createdAt": "2011-02-12T00:06:03Z", - "pushedAt": "2025-07-09T16:44:08Z", - "forks": 506, - "issues": 43, + "pushedAt": "2025-10-20T21:29:23Z", + "forks": 528, + "issues": 42, "subscribers": 102, - "stars": 5313, + "stars": 5330, "dependencies": 0 }, "name": "semver", @@ -110372,23 +109700,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1882911232, - "weekDownloads": 312434767, - "size": 97420, - "latestRelease": "7.7.2", - "latestReleaseDate": "2025-05-12T17:02:28.372Z" + "downloads": 1807487148, + "weekDownloads": 394991731, + "size": 97743, + "latestRelease": "7.7.3", + "latestReleaseDate": "2025-10-07T18:00:51.643Z" }, - "score": 92, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.141, + "popularity": 0.186, "topicSearchString": "npm-cli" }, { @@ -110411,13 +109740,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-10T14:10:04Z", + "updatedAt": "2025-10-16T15:09:02Z", "createdAt": "2019-09-10T19:23:58Z", - "pushedAt": "2025-09-10T14:10:04Z", - "forks": 3429, - "issues": 64, + "pushedAt": "2025-10-16T15:09:02Z", + "forks": 3490, + "issues": 70, "subscribers": 214, - "stars": 46623, + "stars": 47069, "dependencies": 1 }, "name": "@tanstack/query-persist-client-core", @@ -110435,24 +109764,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2537929, - "weekDownloads": 404957, - "size": 176084, - "latestRelease": "5.87.4", - "latestReleaseDate": "2025-09-10T14:10:21.886Z" + "downloads": 2605823, + "weekDownloads": 591587, + "size": 180643, + "latestRelease": "5.91.4", + "latestReleaseDate": "2025-10-16T15:15:34.495Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.136, + "popularity": 0.193, "topicSearchString": "" }, { @@ -110481,13 +109810,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T15:05:20Z", + "updatedAt": "2025-10-01T14:57:27Z", "createdAt": "2024-05-06T14:01:40Z", - "pushedAt": "2025-09-10T15:05:20Z", + "pushedAt": "2025-10-01T14:57:27Z", "forks": 3, "issues": 1, "subscribers": 0, - "stars": 39, + "stars": 42, "dependencies": 0 }, "name": "@futurejj/react-native-visibility-sensor", @@ -110496,7 +109825,6 @@ "registry": "https://registry.npmjs.org/", "description": "Component visibility sensor wrapper to detect whether or not a component is in viewport with configurable inset thresholds & percent visibility callback.", "topics": [ - "react-native", "ios", "android", "visibility-sensor", @@ -110516,22 +109844,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 89916, - "weekDownloads": 13634, - "size": 58622, - "latestRelease": "1.4.2", - "latestReleaseDate": "2025-09-09T04:27:06.566Z" + "downloads": 45093, + "weekDownloads": 10321, + "size": 59101, + "latestRelease": "1.4.4", + "latestReleaseDate": "2025-10-01T14:57:35.271Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.129, - "topicSearchString": "react-native ios android visibility-sensor visibility sensor visibilitysensor in-view inview" + "popularity": 0.195, + "topicSearchString": "ios android visibility-sensor visibility sensor visibilitysensor in-view inview" }, { "githubUrl": "https://github.com/auth0/jwt-decode", @@ -110556,8 +109884,8 @@ "pushedAt": "2025-06-23T10:18:09Z", "forks": 337, "issues": 1, - "subscribers": 138, - "stars": 3353, + "subscribers": 136, + "stars": 3362, "dependencies": 0 }, "name": "jwt-decode", @@ -110579,24 +109907,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "jwt-decode", "npm": { - "downloads": 44935855, - "weekDownloads": 7651250, + "downloads": 42442335, + "weekDownloads": 9785367, "size": 13938, "latestRelease": "4.0.0", "latestReleaseDate": "2023-10-27T08:54:17.048Z" }, - "score": 92, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.145, + "popularity": 0.196, "topicSearchString": "jwt browser dx-sdk" }, { @@ -110622,13 +109950,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", - "forks": 34, - "issues": 23, - "subscribers": 9, - "stars": 253, + "pushedAt": "2025-10-17T06:38:20Z", + "forks": 38, + "issues": 21, + "subscribers": 8, + "stars": 259, "dependencies": 1 }, "name": "@simform_solutions/react-native-audio-waveform", @@ -110636,8 +109964,6 @@ "isPrivate": false, "description": "React Native component to show audio waveform with ease in react native application ✨", "topics": [ - "react", - "react-native", "typescript", "rn", "audio", @@ -110660,23 +109986,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 9017, - "weekDownloads": 1625, - "size": 190105, - "latestRelease": "2.1.5", - "latestReleaseDate": "2025-02-27T06:20:32.769Z" + "downloads": 11761, + "weekDownloads": 2036, + "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.153, - "topicSearchString": "react react-native typescript rn audio waveform audio-waveform audio-chat chat-audio audio-visualizer component javascript library" + "popularity": 0.147, + "topicSearchString": "typescript rn audio waveform audio-waveform audio-chat chat-audio audio-visualizer component javascript library" }, { "githubUrl": "https://github.com/SimformSolutionsPvtLtd/react-native-infinite-wheel-picker", @@ -110713,8 +110040,6 @@ "isPrivate": false, "description": "Customizable wheel picker component for React Native, enabling infinite scrolling and intuitive item selection ✨", "topics": [ - "react", - "react-native", "typescript", "rn", "infinite-picker", @@ -110732,7 +110057,6 @@ "component", "android", "ios", - "react-component", "library", "selection", "wheelpicker" @@ -110747,12 +110071,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-infinite-wheel-picker", "npm": { - "downloads": 2162, - "weekDownloads": 400, + "downloads": 1876, + "weekDownloads": 386, "size": 71978, "latestRelease": "1.0.0", "latestReleaseDate": "2024-08-07T06:57:00.477Z" @@ -110762,8 +110087,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.157, - "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" + "popularity": 0.175, + "topicSearchString": "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 library selection wheelpicker" }, { "githubUrl": "https://github.com/SimformSolutionsPvtLtd/react-native-graph-kit", @@ -110792,7 +110117,7 @@ "pushedAt": "2023-12-27T11:30:22Z", "forks": 1, "issues": 0, - "subscribers": 5, + "subscribers": 4, "stars": 30, "dependencies": 2 }, @@ -110801,8 +110126,6 @@ "isPrivate": false, "description": "Personalized graphs featuring customizable options for React Native app 📈", "topics": [ - "react", - "react-native", "typescript", "rn", "chart", @@ -110832,12 +110155,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-graph-kit", "npm": { - "downloads": 23, - "weekDownloads": 3, + "downloads": 42, + "weekDownloads": 7, "size": 190111, "latestRelease": "1.0.1", "latestReleaseDate": "2023-12-27T13:07:07.720Z" @@ -110847,8 +110171,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.63, - "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" + "popularity": -0.594, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/SimformSolutionsPvtLtd/react-native-sticky-table", @@ -110876,7 +110200,7 @@ "pushedAt": "2023-12-26T15:38:05Z", "forks": 1, "issues": 2, - "subscribers": 5, + "subscribers": 4, "stars": 47, "dependencies": 1 }, @@ -110885,8 +110209,6 @@ "isPrivate": false, "description": "React Native sticky table component to elevate the app's data presentation and visualization experience ✨", "topics": [ - "react", - "react-native", "typescript", "rn", "sticky-table", @@ -110900,7 +110222,6 @@ "sticky-animated-table", "gesture-handler", "animation", - "react-component", "animated-sticky-table", "tableview", "javascript" @@ -110915,12 +110236,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sticky-table", "npm": { - "downloads": 5135, - "weekDownloads": 2071, + "downloads": 2145, + "weekDownloads": 133, "size": 73503, "latestRelease": "1.0.0", "latestReleaseDate": "2023-12-26T15:43:30.332Z" @@ -110930,8 +110252,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.343, - "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" + "popularity": 0.053, + "topicSearchString": "typescript rn sticky-table table sticky reanimated component android ios reanimated-component sticky-animated-table gesture-handler animation animated-sticky-table tableview javascript" }, { "githubUrl": "https://github.com/SimformSolutionsPvtLtd/react-native-tree-selection", @@ -110963,7 +110285,7 @@ "pushedAt": "2023-07-17T08:51:53Z", "forks": 4, "issues": 4, - "subscribers": 3, + "subscribers": 2, "stars": 46, "dependencies": 0 }, @@ -110972,8 +110294,6 @@ "isPrivate": false, "description": "A high-performance and lightweight tree selection library for React Native🎖", "topics": [ - "react", - "react-native", "typescript", "rn", "selection", @@ -110986,7 +110306,6 @@ "dropdown", "nested-dropdown", "tree-dropdown", - "react-tree", "tree-ui", "ui-components", "android", @@ -111010,12 +110329,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-tree-selection", "npm": { - "downloads": 459, - "weekDownloads": 96, + "downloads": 610, + "weekDownloads": 160, "size": 64585, "latestRelease": "1.0.1", "latestReleaseDate": "2023-07-17T11:09:34.756Z" @@ -111025,8 +110345,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.322, - "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" + "popularity": -1.276, + "topicSearchString": "typescript rn selection tree-selection select-list tree tree-view nested-tree nested-tree-dropdown dropdown nested-dropdown tree-dropdown tree-ui ui-components android ios hierarchical hierarchical-view hierarchical-dropdown component library select tree-select tree-structure" }, { "githubUrl": "https://github.com/SimformSolutionsPvtLtd/react-native-photos-gallery", @@ -111055,7 +110375,7 @@ "pushedAt": "2023-05-15T05:28:56Z", "forks": 2, "issues": 1, - "subscribers": 4, + "subscribers": 3, "stars": 63, "dependencies": 0 }, @@ -111064,8 +110384,6 @@ "isPrivate": false, "description": "A React Native custom animated photo gallery component to open and view photos ✨ ", "topics": [ - "react", - "react-native", "typescript", "rn", "photo-gallery", @@ -111086,13 +110404,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-photos-gallery", "npm": { - "downloads": 69, - "weekDownloads": 32, + "downloads": 203, + "weekDownloads": 27, "size": 116143, "latestRelease": "0.0.1", "latestReleaseDate": "2023-05-15T12:16:34.559Z" @@ -111102,8 +110421,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.1, - "topicSearchString": "react react-native typescript rn photo-gallery gallery photo reanimated component library photos" + "popularity": -1.385, + "topicSearchString": "typescript rn photo-gallery gallery photo reanimated component library photos" }, { "githubUrl": "https://github.com/SimformSolutionsPvtLtd/react-native-images-preview", @@ -111132,7 +110451,7 @@ "pushedAt": "2023-05-24T05:56:23Z", "forks": 4, "issues": 2, - "subscribers": 3, + "subscribers": 2, "stars": 41, "dependencies": 0 }, @@ -111141,14 +110460,11 @@ "isPrivate": false, "description": "A React Native animated custom image preview component ✨ ", "topics": [ - "react", - "react-native", "typescript", "rn", "photo", "reanimated", "component", - "react-component", "ios", "android", "gallery", @@ -111174,13 +110490,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-images-preview", "npm": { - "downloads": 2160, - "weekDownloads": 398, + "downloads": 1708, + "weekDownloads": 325, "size": 80884, "latestRelease": "0.0.1", "latestReleaseDate": "2023-05-25T05:21:30.526Z" @@ -111190,8 +110507,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.593, - "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" + "popularity": -0.588, + "topicSearchString": "typescript rn photo reanimated component ios android gallery pinch pinch-to-zoom mobile image-zoom image photo-preview image-preview component-library imagepreview images reanimated3" }, { "githubUrl": "https://github.com/SimformSolutionsPvtLtd/react-native-radial-slider", @@ -111220,7 +110537,7 @@ "pushedAt": "2024-02-20T10:36:22Z", "forks": 19, "issues": 6, - "subscribers": 7, + "subscribers": 6, "stars": 158, "dependencies": 0 }, @@ -111229,8 +110546,6 @@ "isPrivate": false, "description": "React Native component to select or highlight a specific value from a range of values 👌 ✨", "topics": [ - "react", - "react-native", "typescript", "slider", "radial", @@ -111253,12 +110568,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-radial-slider", "npm": { - "downloads": 5314, - "weekDownloads": 723, + "downloads": 6297, + "weekDownloads": 1852, "size": 123932, "latestRelease": "1.1.0", "latestReleaseDate": "2024-02-20T13:07:49.093Z" @@ -111268,8 +110584,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.116, - "topicSearchString": "react react-native typescript slider radial radial-slider circular-slider rn speedometer meter arc-slider circle-slider round-slider" + "popularity": 0.25, + "topicSearchString": "typescript slider radial radial-slider circular-slider rn speedometer meter arc-slider circle-slider round-slider" }, { "githubUrl": "https://github.com/SimformSolutionsPvtLtd/react-native-country-code-select", @@ -111297,7 +110613,7 @@ "pushedAt": "2022-07-11T12:17:59Z", "forks": 1, "issues": 0, - "subscribers": 6, + "subscribers": 5, "stars": 44, "dependencies": 0 }, @@ -111306,8 +110622,6 @@ "isPrivate": false, "description": "A React Native component that allows users to select a country code ✨ 🔥", "topics": [ - "react", - "react-native", "typescript", "country-code", "select-code", @@ -111331,13 +110645,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-country-code-select", "npm": { - "downloads": 140, - "weekDownloads": 14, + "downloads": 129, + "weekDownloads": 20, "size": 1208716, "latestRelease": "0.0.3", "latestReleaseDate": "2022-07-12T08:23:15.646Z" @@ -111347,8 +110662,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.413, - "topicSearchString": "react react-native typescript country-code select-code country calling-code rn country-codes country-flags country-list country-picker countrycodes countrynames" + "popularity": -1.367, + "topicSearchString": "typescript country-code select-code country calling-code rn country-codes country-flags country-list country-picker countrycodes countrynames" }, { "githubUrl": "https://github.com/SimformSolutionsPvtLtd/react-native-animation-catalog", @@ -111383,7 +110698,7 @@ "pushedAt": "2022-10-21T10:25:10Z", "forks": 3, "issues": 0, - "subscribers": 6, + "subscribers": 5, "stars": 100, "dependencies": 0 }, @@ -111392,8 +110707,6 @@ "isPrivate": false, "description": "A collection of animated React Native components 🌟🔥", "topics": [ - "react", - "react-native", "typescript", "rn", "animation", @@ -111413,13 +110726,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-animation-catalog", "npm": { - "downloads": 27, - "weekDownloads": 7, + "downloads": 36, + "weekDownloads": 3, "size": 1067086, "latestRelease": "0.0.2", "latestReleaseDate": "2022-08-04T14:11:34.310Z" @@ -111429,8 +110743,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.267, - "topicSearchString": "react react-native typescript rn animation animated-component components animated-components reanimated reanimated2" + "popularity": -1.425, + "topicSearchString": "typescript rn animation animated-component components animated-components reanimated reanimated2" }, { "githubUrl": "https://github.com/SimformSolutionsPvtLtd/react-native-spinner-button", @@ -111458,7 +110772,7 @@ "pushedAt": "2024-04-16T12:42:56Z", "forks": 14, "issues": 0, - "subscribers": 6, + "subscribers": 5, "stars": 131, "dependencies": 4 }, @@ -111474,7 +110788,6 @@ "button-with-loader", "button-with-activityindicator", "loader", - "react-native", "buttons", "ui-components", "ui-kitten", @@ -111491,12 +110804,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-spinner-button", "npm": { - "downloads": 767, - "weekDownloads": 115, + "downloads": 1302, + "weekDownloads": 225, "size": 164599, "latestRelease": "1.4.3", "latestReleaseDate": "2024-04-16T12:56:11.112Z" @@ -111506,8 +110820,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.622, - "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" + "popularity": 0.147, + "topicSearchString": "spinner-button spinner button button-with-spinner button-with-loader button-with-activityindicator loader buttons ui-components ui-kitten loading loading-animations" }, { "githubUrl": "https://github.com/ttlock/react-native-ttlock", @@ -111527,13 +110841,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T04:50:46Z", + "updatedAt": "2025-09-15T08:48:49Z", "createdAt": "2020-12-29T01:17:30Z", - "pushedAt": "2025-09-12T04:50:46Z", + "pushedAt": "2025-09-15T08:48:49Z", "forks": 16, - "issues": 21, - "subscribers": 8, - "stars": 19, + "issues": 22, + "subscribers": 7, + "stars": 21, "dependencies": 0 }, "name": "react-native-ttlock", @@ -111542,7 +110856,6 @@ "registry": "https://registry.npmjs.org/", "description": "ttlock react native sdk", "topics": [ - "react-native", "ios", "android" ], @@ -111556,23 +110869,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-ttlock", "npm": { - "downloads": 1029, - "weekDownloads": 191, + "downloads": 1360, + "weekDownloads": 359, "size": 646418, - "latestRelease": "2.2.5", - "latestReleaseDate": "2025-09-12T04:32:43.020Z" + "latestRelease": "2.2.6", + "latestReleaseDate": "2025-09-15T08:52:30.210Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.092, - "topicSearchString": "react-native ios android" + "popularity": -0.026, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/hardik27111/react-native-toastier", @@ -111618,7 +110931,6 @@ "short-message", "toast-message", "snackbar", - "react-native", "notifications", "alerts", "animated", @@ -111635,12 +110947,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-toastier", "npm": { - "downloads": 4086, - "weekDownloads": 660, + "downloads": 4899, + "weekDownloads": 1308, "size": 98812, "latestRelease": "2.0.4", "latestReleaseDate": "2025-08-06T03:57:27.069Z" @@ -111649,8 +110962,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.113, - "topicSearchString": "toast toasts component components elements element toastier toastify toastiers short-message toast-message snackbar react-native notifications alerts animated animation message" + "popularity": -0.023, + "topicSearchString": "toast toasts component components elements element toastier toastify toastiers short-message toast-message snackbar notifications alerts animated animation message" }, { "githubUrl": "https://github.com/lingui/js-lingui/tree/main/packages/core", @@ -111673,13 +110986,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T08:44:01Z", + "updatedAt": "2025-10-10T09:08:19Z", "createdAt": "2017-01-17T17:26:46Z", - "pushedAt": "2025-09-12T08:44:01Z", - "forks": 414, - "issues": 35, + "pushedAt": "2025-10-10T09:08:19Z", + "forks": 416, + "issues": 40, "subscribers": 32, - "stars": 5366, + "stars": 5427, "dependencies": 2 }, "name": "@lingui/core", @@ -111705,14 +111018,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1895148, - "weekDownloads": 303190, + "downloads": 2454763, + "weekDownloads": 538142, "size": 54099, - "latestRelease": "5.5.0", - "latestReleaseDate": "2025-09-12T09:17:48.231Z" + "latestRelease": "5.5.1", + "latestReleaseDate": "2025-10-10T09:43:49.461Z" }, "score": 97, "matchingScoreModifiers": [ @@ -111722,7 +111036,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.136, + "popularity": 0.186, "topicSearchString": "i18n i10n i9n internationalization localization translation multilingual" }, { @@ -111746,10 +111060,10 @@ "updatedAt": "2025-04-24T02:04:44Z", "createdAt": "2013-05-24T16:15:54Z", "pushedAt": "2025-04-24T02:04:44Z", - "forks": 48646, - "issues": 809, - "subscribers": 6716, - "stars": 238874, + "forks": 48943, + "issues": 805, + "subscribers": 6696, + "stars": 239935, "dependencies": 0 }, "name": "react-compiler-runtime", @@ -111767,25 +111081,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-compiler-runtime", "npm": { - "downloads": 3045568, - "weekDownloads": 496989, - "size": 45704, - "latestRelease": "19.1.0-rc.3", - "latestReleaseDate": "2025-08-28T21:52:52.652Z" + "downloads": 3476746, + "weekDownloads": 809960, + "size": 45698, + "latestRelease": "1.0.0", + "latestReleaseDate": "2025-10-07T19:19:07.561Z" }, - "score": 81, + "score": 73, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.139, + "popularity": 0.198, "topicSearchString": "" }, { @@ -111822,7 +111137,6 @@ "registry": "https://registry.npmjs.org/", "description": "Get device setting for time format in react-native", "topics": [ - "react-native", "device", "time-format", "hour-format", @@ -111839,11 +111153,13 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "rn-date-format", "npm": { - "downloads": 82, + "downloads": 28, "weekDownloads": 4, "size": 48672, "latestRelease": "1.0.1", @@ -111853,8 +111169,8 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.958, - "topicSearchString": "react-native device time-format hour-format 12-hour 24-hour" + "popularity": -0.867, + "topicSearchString": "device time-format hour-format 12-hour 24-hour" }, { "githubUrl": "https://github.com/NativeNotify/native-notify", @@ -111890,17 +111206,12 @@ "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" + "notify-push-notifications" ], "license": { "name": "MIT License", @@ -111912,23 +111223,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "native-notify", "npm": { - "downloads": 3096, - "weekDownloads": 570, + "downloads": 3764, + "weekDownloads": 532, "size": 19546, "latestRelease": "4.0.9", "latestReleaseDate": "2024-12-09T14:39:36.919Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.093, - "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" + "popularity": -0.13, + "topicSearchString": "expo push notifications notify expo-push-notifications expo-push-notification push-notifications push-notification notify-push-notifications" }, { "githubUrl": "https://github.com/SameerAther/react-native-nitro-media-kit", @@ -111961,7 +111272,6 @@ "registry": "https://registry.npmjs.org/", "description": "Media Kit Library", "topics": [ - "react-native", "ios", "android" ], @@ -111975,22 +111285,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-media-kit", "npm": { - "downloads": 65, - "weekDownloads": 20, + "downloads": 36, + "weekDownloads": 3, "size": 145564, "latestRelease": "0.1.0", "latestReleaseDate": "2025-05-08T10:22:28.953Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.733, - "topicSearchString": "react-native ios android" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.925, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/Aris-ngoy/react-native-irano", @@ -112034,7 +111344,6 @@ "registry": "https://registry.npmjs.org/", "description": "A customizable cross-platform toast notification library for React Native.", "topics": [ - "react-native", "toast", "notification", "cross-platform", @@ -112055,30 +111364,31 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-irano", "npm": { - "downloads": 630, - "weekDownloads": 329, + "downloads": 815, + "weekDownloads": 187, "size": 112491, "latestRelease": "1.1.1", "latestReleaseDate": "2024-12-26T22:23:12.127Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.555, - "topicSearchString": "react-native toast notification cross-platform ios android toast-notification irano expo-irano alert" + "popularity": -0.804, + "topicSearchString": "toast notification cross-platform ios android toast-notification irano expo-irano alert" }, { "githubUrl": "https://github.com/MaxAst/expo-share-extension", "examples": [ - "https://github.com/MaxAst/expo-share-extension/tree/main/examples" + "https://github.com/MaxAst/expo-share-extension/tree/main/example" ], "ios": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/MaxAst/expo-share-extension", @@ -112090,13 +111400,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", - "forks": 19, - "issues": 15, - "subscribers": 12, - "stars": 446, + "pushedAt": "2025-10-18T06:33:05Z", + "forks": 20, + "issues": 16, + "subscribers": 11, + "stars": 463, "dependencies": 2 }, "name": "expo-share-extension", @@ -112104,7 +111414,6 @@ "isPrivate": false, "description": "Expo config plugin for creating iOS share extensions with a custom view.", "topics": [ - "react-native", "expo", "expo-share-extension", "exposhareextension", @@ -112121,23 +111430,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-share-extension", "npm": { - "downloads": 27185, - "weekDownloads": 5873, - "size": 1199473, - "latestRelease": "4.0.1", - "latestReleaseDate": "2025-07-09T18:22:17.586Z" + "downloads": 22474, + "weekDownloads": 4454, + "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.184, - "topicSearchString": "react-native expo expo-share-extension exposhareextension ios share-extension" + "popularity": 0.168, + "topicSearchString": "expo expo-share-extension exposhareextension ios share-extension" }, { "githubUrl": "https://github.com/EvanBacon/expo-apple-colors", @@ -112145,6 +111457,7 @@ "ios": true, "android": true, "web": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/EvanBacon/expo-apple-colors", @@ -112162,7 +111475,7 @@ "forks": 4, "issues": 1, "subscribers": 3, - "stars": 70, + "stars": 77, "dependencies": 0 }, "name": "@bacons/apple-colors", @@ -112170,7 +111483,6 @@ "isPrivate": false, "description": "Use native Apple colors on all platforms", "topics": [ - "react", "typescript" ], "license": { @@ -112183,11 +111495,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 1554, - "weekDownloads": 263, + "downloads": 2099, + "weekDownloads": 326, "size": 701939, "latestRelease": "0.0.8", "latestReleaseDate": "2024-11-20T21:42:53.932Z" @@ -112197,8 +111511,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.144, - "topicSearchString": "react typescript" + "popularity": 0.132, + "topicSearchString": "typescript" }, { "githubUrl": "https://github.com/azimgd/shadowlist", @@ -112224,7 +111538,7 @@ "forks": 6, "issues": 8, "subscribers": 15, - "stars": 376, + "stars": 375, "dependencies": 0 }, "name": "shadowlist", @@ -112233,7 +111547,6 @@ "registry": "https://registry.npmjs.org/", "description": "60fps, high-performance list for React Native.", "topics": [ - "react-native", "ios", "android", "new-architecture" @@ -112248,23 +111561,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "shadowlist", "npm": { - "downloads": 63, - "weekDownloads": 11, + "downloads": 90, + "weekDownloads": 3, "size": 1112128, "latestRelease": "0.4.25", "latestReleaseDate": "2025-05-09T13:51:21.160Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": -0.593, - "topicSearchString": "react-native ios android new-architecture" + "popularity": -0.721, + "topicSearchString": "ios android new-architecture" }, { "githubUrl": "https://github.com/skiniks/react-native-shiki-engine", @@ -112291,7 +111605,7 @@ "forks": 0, "issues": 1, "subscribers": 1, - "stars": 61, + "stars": 63, "dependencies": 2 }, "name": "react-native-shiki-engine", @@ -112300,7 +111614,6 @@ "registry": "https://registry.npmjs.org/", "description": "Shiki syntax highlighting for React Native. Zero bridge overhead with native Oniguruma regex engine.", "topics": [ - "react-native", "ios", "android", "shiki", @@ -112311,9 +111624,7 @@ "turbo", "cpp", "javascript", - "jsi", - "native", - "react" + "jsi" ], "license": { "key": "mit", @@ -112325,22 +111636,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-shiki-engine", "npm": { - "downloads": 55, - "weekDownloads": 10, + "downloads": 66, + "weekDownloads": 6, "size": 8610506, "latestRelease": "0.2.0", "latestReleaseDate": "2025-08-05T21:04:38.462Z" }, - "score": 51, - "matchingScoreModifiers": [ - "Recently updated" - ], - "popularity": -0.583, - "topicSearchString": "react-native ios android shiki oniguruma regex syntax-highlighting textmate turbo cpp javascript jsi native react" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.67, + "topicSearchString": "ios android shiki oniguruma regex syntax-highlighting textmate turbo cpp javascript jsi" }, { "githubUrl": "https://github.com/googlemaps/react-native-navigation-sdk", @@ -112362,13 +111672,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T13:23:41Z", + "updatedAt": "2025-10-13T07:46:28Z", "createdAt": "2023-12-18T19:19:05Z", - "pushedAt": "2025-09-11T13:23:41Z", - "forks": 18, - "issues": 50, - "subscribers": 34, - "stars": 78, + "pushedAt": "2025-10-13T07:46:28Z", + "forks": 19, + "issues": 48, + "subscribers": 33, + "stars": 84, "dependencies": 0 }, "name": "@googlemaps/react-native-navigation-sdk", @@ -112377,7 +111687,6 @@ "registry": "https://wombat-dressing-room.appspot.com/", "description": "React Native library (Beta) for bringing Google Navigation SDK to Android and iOS apps using React.", "topics": [ - "react-native", "ios", "android", "library", @@ -112397,14 +111706,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 2093, - "weekDownloads": 301, - "size": 758133, - "latestRelease": "0.10.2", - "latestReleaseDate": "2025-09-11T13:28:57.871Z" + "downloads": 4807, + "weekDownloads": 1139, + "size": 767178, + "latestRelease": "0.11.0", + "latestReleaseDate": "2025-10-13T07:50:55.013Z" }, "score": 57, "matchingScoreModifiers": [ @@ -112412,8 +111723,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.122, - "topicSearchString": "react-native ios android library google-navigation navigation-sdk navsdk google-maps-api google-maps-platform" + "popularity": 0.201, + "topicSearchString": "ios android library google-navigation navigation-sdk navsdk google-maps-api google-maps-platform" }, { "githubUrl": "https://github.com/project-chip/matter.js/tree/main/packages/react-native", @@ -112431,13 +111742,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T18:35:47Z", + "updatedAt": "2025-10-20T06:04:39Z", "createdAt": "2022-11-04T22:38:14Z", - "pushedAt": "2025-09-12T18:35:47Z", - "forks": 80, - "issues": 11, - "subscribers": 17, - "stars": 535, + "pushedAt": "2025-10-20T06:04:39Z", + "forks": 85, + "issues": 13, + "subscribers": 16, + "stars": 568, "dependencies": 11 }, "name": "@matter/react-native", @@ -112461,14 +111772,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1387, - "weekDownloads": 309, + "downloads": 2238, + "weekDownloads": 333, "size": 281841, - "latestRelease": "0.15.3", - "latestReleaseDate": "2025-08-01T19:11:51.431Z" + "latestRelease": "0.15.6", + "latestReleaseDate": "2025-10-16T08:46:15.951Z" }, "score": 57, "matchingScoreModifiers": [ @@ -112476,7 +111788,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.19, + "popularity": 0.127, "topicSearchString": "iot home-automation matter smart-device ble" }, { @@ -112501,10 +111813,10 @@ "updatedAt": "2025-06-29T17:01:20Z", "createdAt": "2019-12-10T01:46:34Z", "pushedAt": "2025-06-29T17:01:20Z", - "forks": 29, + "forks": 30, "issues": 10, - "subscribers": 5, - "stars": 210, + "subscribers": 4, + "stars": 211, "dependencies": 3 }, "name": "i18n-js", @@ -112528,11 +111840,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1454386, - "weekDownloads": 241510, + "downloads": 1484876, + "weekDownloads": 334470, "size": 1702120, "latestRelease": "4.5.1", "latestReleaseDate": "2024-12-14T00:45:20.293Z" @@ -112543,7 +111856,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.191, "topicSearchString": "typescript javascript i18n localization internationalization" }, { @@ -112564,13 +111877,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-06-25T15:25:55Z", + "updatedAt": "2025-09-29T13:52:33Z", "createdAt": "2020-12-17T21:37:03Z", - "pushedAt": "2025-06-25T15:25:55Z", + "pushedAt": "2025-09-29T13:52:33Z", "forks": 93, - "issues": 10, + "issues": 12, "subscribers": 12, - "stars": 2315, + "stars": 2343, "dependencies": 1 }, "name": "twrnc", @@ -112580,7 +111893,6 @@ "topics": [ "tailwind", "tailwindcss", - "react-native", "classnames" ], "license": { @@ -112593,23 +111905,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 245730, - "weekDownloads": 27264, - "size": 255315, - "latestRelease": "4.9.1", - "latestReleaseDate": "2025-06-25T15:25:54.871Z" + "downloads": 307356, + "weekDownloads": 80646, + "size": 261740, + "latestRelease": "4.10.1", + "latestReleaseDate": "2025-09-29T13:52:32.902Z" }, - "score": 68, + "score": 73, "matchingScoreModifiers": [ "Popular", "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.094, - "topicSearchString": "tailwind tailwindcss react-native classnames" + "popularity": 0.223, + "topicSearchString": "tailwind tailwindcss classnames" }, { "githubUrl": "https://github.com/AakashThakur23102000/useapihook-dexterverse", @@ -112657,19 +111971,20 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "useapihook-dexterverse", "npm": { - "downloads": 36, + "downloads": 45, "weekDownloads": 0, "size": 26321, "latestRelease": "2.3.0", "latestReleaseDate": "2025-04-23T06:32:41.808Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], "popularity": -1, "topicSearchString": "useapihook api apihook" @@ -112708,7 +112023,6 @@ "registry": "https://registry.npmjs.org/", "description": "Play sounds with lowest latency in React Native using Google Oboe for Android and Audio Unit for iOS", "topics": [ - "react-native", "ios", "android", "low-latency", @@ -112726,21 +112040,23 @@ "hasTypes": false, "newArchitecture": true, "isArchived": true, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "unmaintained": true, "npmPkg": "react-native-audio-playback", "npm": { - "downloads": 160, - "weekDownloads": 24, + "downloads": 384, + "weekDownloads": 41, "size": 208181, "latestRelease": "1.1.3", "latestReleaseDate": "2025-04-19T06:36:29.589Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -1.37, - "topicSearchString": "react-native ios android low-latency audio sound high-performance" + "popularity": -1.409, + "topicSearchString": "ios android low-latency audio sound high-performance" }, { "githubUrl": "https://github.com/JairajJangle/react-native-tree-multi-select", @@ -112777,7 +112093,7 @@ "forks": 6, "issues": 2, "subscribers": 2, - "stars": 93, + "stars": 96, "dependencies": 3 }, "name": "react-native-tree-multi-select", @@ -112786,17 +112102,14 @@ "registry": "https://registry.npmjs.org/", "description": "Super-fast tree view with multi-selection capabilities, using checkboxes and search filtering.", "topics": [ - "react-native", "ios", "android", - "react-component", + "component", "treeview", "tree-view", "tree-select", "checkbox", - "react-tree-view", - "react-tree-select", - "react-checkbox-tree", + "checkbox-tree", "checkbox-list", "tree-checkbox", "tree-structure", @@ -112822,23 +112135,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-tree-multi-select", "npm": { - "downloads": 1804, - "weekDownloads": 255, + "downloads": 1931, + "weekDownloads": 313, "size": 201640, "latestRelease": "2.0.2", "latestReleaseDate": "2025-08-19T02:43:06.134Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.138, + "topicSearchString": "ios android component treeview tree-view tree-select checkbox 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" }, { "githubUrl": "https://github.com/JairajJangle/react-native-session-storage", @@ -112881,7 +112192,6 @@ "registry": "https://registry.npmjs.org/", "description": "Session Storage like module for react native for temporary session bound storage.", "topics": [ - "react-native", "session-storage", "ios", "android", @@ -112900,23 +112210,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-session-storage", "npm": { - "downloads": 1928, - "weekDownloads": 282, + "downloads": 2025, + "weekDownloads": 371, "size": 49759, "latestRelease": "2.0.1", "latestReleaseDate": "2025-05-17T20:08:05.935Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.125, - "topicSearchString": "react-native session-storage ios android async-storage storage asyn-storage volative-storage" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.094, + "topicSearchString": "session-storage ios android async-storage storage asyn-storage volative-storage" }, { "githubUrl": "https://github.com/balthazar/react-native-zeroconf", @@ -112940,7 +112248,7 @@ "updatedAt": "2024-11-16T09:12:36Z", "createdAt": "2015-10-24T17:25:19Z", "pushedAt": "2024-11-16T09:12:36Z", - "forks": 93, + "forks": 95, "issues": 46, "subscribers": 7, "stars": 237, @@ -112951,8 +112259,7 @@ "isPrivate": false, "description": ":satellite: Discover Zeroconf services using react-native", "topics": [ - "react-component", - "react-native", + "component", "zeroconf", "bonjour", "avahi", @@ -112962,8 +112269,7 @@ "android", "network-discovery", "discovery", - "broadcast", - "react" + "broadcast" ], "license": { "key": "mit", @@ -112975,29 +112281,32 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-zeroconf", "npm": { - "downloads": 114722, - "weekDownloads": 16917, + "downloads": 106896, + "weekDownloads": 26115, "size": 120997, "latestRelease": "0.13.8", "latestReleaseDate": "2023-05-18T17:10:49.468Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.125, - "topicSearchString": "react-component react-native zeroconf bonjour avahi network lan ios android network-discovery discovery broadcast react" + "popularity": 0.208, + "topicSearchString": "component zeroconf bonjour avahi network lan ios android network-discovery discovery broadcast" }, { "githubUrl": "https://github.com/fishjam-cloud/mobile-client-sdk/tree/main/packages/react-native-client", "examples": [ - "https://github.com/fishjam-cloud/mobile-client-sdk/tree/main/examples/fishjam-chat" + "https://github.com/fishjam-cloud/mobile-client-sdk/tree/main/examples/minimal-react-native", + "https://github.com/fishjam-cloud/mobile-client-sdk/tree/main/examples/audio-only", + "https://github.com/fishjam-cloud/mobile-client-sdk/tree/main/examples/video-player", + "https://github.com/fishjam-cloud/mobile-client-sdk/tree/main/examples/vision-camera" ], "npmPkg": "@fishjam-cloud/react-native-client", "images": [ @@ -113006,6 +112315,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/fishjam-cloud/mobile-client-sdk", @@ -113017,11 +112327,11 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T15:30:46Z", + "updatedAt": "2025-10-14T12:10:29Z", "createdAt": "2024-06-27T06:42:23Z", - "pushedAt": "2025-09-12T15:30:46Z", + "pushedAt": "2025-10-14T12:10:29Z", "forks": 3, - "issues": 1, + "issues": 0, "subscribers": 5, "stars": 13, "dependencies": 4 @@ -113031,7 +112341,6 @@ "isPrivate": false, "description": "A React Native client for Fishjam", "topics": [ - "react-native", "expo", "fishjam", "fishjamcloud", @@ -113051,22 +112360,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 226, - "weekDownloads": 22, - "size": 442764, - "latestRelease": "0.21.0", - "latestReleaseDate": "2025-08-26T14:32:44.149Z" + "downloads": 533, + "weekDownloads": 67, + "size": 470157, + "latestRelease": "0.22.1", + "latestReleaseDate": "2025-10-14T12:48:47.087Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.917, - "topicSearchString": "react-native expo fishjam fishjamcloud membranewebrtc webrtc streaming video audio" + "popularity": -0.893, + "topicSearchString": "expo fishjam fishjamcloud membranewebrtc webrtc streaming video audio" }, { "githubUrl": "https://github.com/saulamsal/react-native-sheet-transitions", @@ -113094,10 +112404,10 @@ "updatedAt": "2024-12-08T00:06:37Z", "createdAt": "2024-11-28T07:10:04Z", "pushedAt": "2024-12-08T00:06:37Z", - "forks": 20, + "forks": 22, "issues": 2, "subscribers": 8, - "stars": 911, + "stars": 936, "dependencies": 0 }, "name": "react-native-sheet-transitions", @@ -113105,7 +112415,6 @@ "isPrivate": false, "description": "Beautiful iOS-like sheet transitions for React Native", "topics": [ - "react-native", "sheet", "transitions", "animation" @@ -113120,12 +112429,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sheet-transitions", "npm": { - "downloads": 3476, - "weekDownloads": 165, + "downloads": 2208, + "weekDownloads": 788, "size": 49230, "latestRelease": "0.1.2", "latestReleaseDate": "2024-12-08T00:06:45.089Z" @@ -113137,8 +112447,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.04, - "topicSearchString": "react-native sheet transitions animation" + "popularity": 0.304, + "topicSearchString": "sheet transitions animation" }, { "githubUrl": "https://github.com/reagankm/rn-animated-ellipsis", @@ -113179,7 +112489,6 @@ "registry": "https://registry.npmjs.org/", "description": "A simple, customizable animated dots component for use in React Native apps. Ideal for loading screens.", "topics": [ - "react-native", "animated-ellipsis", "rn-animated-ellipsis", "loading-animation" @@ -113194,11 +112503,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 390, - "weekDownloads": 80, + "downloads": 419, + "weekDownloads": 95, "size": 13038, "latestRelease": "3.0.0", "latestReleaseDate": "2024-12-11T20:42:19.706Z" @@ -113208,8 +112518,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.824, - "topicSearchString": "react-native animated-ellipsis rn-animated-ellipsis loading-animation" + "popularity": -0.806, + "topicSearchString": "animated-ellipsis rn-animated-ellipsis loading-animation" }, { "githubUrl": "https://github.com/cmpayc/react-native-fs-turbo", @@ -113234,7 +112544,7 @@ "forks": 2, "issues": 2, "subscribers": 2, - "stars": 42, + "stars": 45, "dependencies": 0 }, "name": "react-native-fs-turbo", @@ -113243,8 +112553,6 @@ "registry": "https://registry.npmjs.org/", "description": "React-Native library for working with Android/iOS file system, written using JSI and C++ TurboModules", "topics": [ - "react", - "native", "fs", "filesystem", "javascript", @@ -113269,22 +112577,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-fs-turbo", "npm": { - "downloads": 710, - "weekDownloads": 181, + "downloads": 1873, + "weekDownloads": 182, "size": 459484, "latestRelease": "0.3.7", "latestReleaseDate": "2025-09-04T22:10:21.751Z" }, - "score": 51, - "matchingScoreModifiers": [ - "Recently updated" - ], - "popularity": -0.533, - "topicSearchString": "react native fs filesystem javascript typescript android ios library jsi turbo turbomodule download upload file-transfer" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.083, + "topicSearchString": "fs filesystem javascript typescript android ios library jsi turbo turbomodule download upload file-transfer" }, { "githubUrl": "https://github.com/jhugman/uniffi-bindgen-react-native", @@ -113303,13 +112610,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-02T15:42:39Z", + "updatedAt": "2025-10-08T18:45:36Z", "createdAt": "2024-04-17T16:55:50Z", - "pushedAt": "2025-09-02T15:42:39Z", - "forks": 21, - "issues": 19, - "subscribers": 10, - "stars": 374, + "pushedAt": "2025-10-08T18:45:36Z", + "forks": 30, + "issues": 25, + "subscribers": 11, + "stars": 403, "dependencies": 0 }, "name": "uniffi-bindgen-react-native", @@ -113318,7 +112625,6 @@ "description": "Make React-Native Turbo Modules out of Rust", "topics": [ "bindgen", - "react-native", "rust-lang" ], "license": { @@ -113328,27 +112634,27 @@ "key": "mpl-2.0", "spdxId": "MPL-2.0" }, - "hasTypes": false, + "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "uniffi-bindgen-react-native", "npm": { - "downloads": 5688, - "weekDownloads": 1188, + "downloads": 5956, + "weekDownloads": 906, "size": 1181989, "latestRelease": "0.29.3-1", "latestReleaseDate": "2025-07-30T15:31:54.419Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.178, - "topicSearchString": "bindgen react-native rust-lang" + "popularity": 0.129, + "topicSearchString": "bindgen rust-lang" }, { "githubUrl": "https://github.com/osamaqarem/drag-select", @@ -113377,7 +112683,7 @@ "forks": 2, "issues": 0, "subscribers": 2, - "stars": 120, + "stars": 123, "dependencies": 0 }, "name": "@osamaq/drag-select", @@ -113386,7 +112692,6 @@ "registry": "https://registry.npmjs.org/", "description": "👆 A React Native utility for creating a pan gesture that auto-selects items in a list, like your favorite gallery app.", "topics": [ - "react-native", "ios", "android", "drag", @@ -113408,22 +112713,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 435, - "weekDownloads": 13, + "downloads": 738, + "weekDownloads": 145, "size": 132198, "latestRelease": "0.2.0", "latestReleaseDate": "2025-02-02T20:20:12.764Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.725, - "topicSearchString": "react-native ios android drag select dragselect drag-select multiselect multi-select gesture reanimated" + "popularity": -0.582, + "topicSearchString": "ios android drag select dragselect drag-select multiselect multi-select gesture reanimated" }, { "githubUrl": "https://github.com/AakashThakur23102000/useUtils-dexterverse", @@ -113457,9 +112762,7 @@ "isPrivate": false, "description": "It is a package which conatins multiple usefull functions used for basic logic work.", "topics": [ - "utils", - "react", - "react-native" + "utils" ], "license": { "key": "mit", @@ -113471,23 +112774,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "useutils-dexterverse", "npm": { - "downloads": 7, + "downloads": 64, "weekDownloads": 0, "size": 29000, "latestRelease": "1.1.9", "latestReleaseDate": "2025-02-21T05:31:22.146Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], "popularity": -1, - "topicSearchString": "utils react react-native" + "topicSearchString": "utils" }, { "githubUrl": "https://github.com/mrousavy/nitro/tree/main/packages/react-native-nitro-modules", @@ -113512,13 +112815,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T08:13:02Z", + "updatedAt": "2025-10-20T10:31:42Z", "createdAt": "2024-06-12T10:21:40Z", - "pushedAt": "2025-09-10T08:13:02Z", - "forks": 47, - "issues": 12, - "subscribers": 18, - "stars": 1356, + "pushedAt": "2025-10-20T10:31:42Z", + "forks": 59, + "issues": 13, + "subscribers": 17, + "stars": 1443, "dependencies": 0 }, "name": "react-native-nitro-modules", @@ -113527,7 +112830,6 @@ "registry": "https://registry.npmjs.org/", "description": "Insanely fast native C++, Swift or Kotlin modules with a statically compiled binding layer to JSI.", "topics": [ - "react-native", "nitro", "ios", "android", @@ -113536,9 +112838,7 @@ "macos", "cpp", "framework", - "react", "swift", - "native", "modules", "fast", "jsi", @@ -113557,15 +112857,17 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-nitro-modules", "npm": { - "downloads": 209999, - "weekDownloads": 31684, - "size": 467786, - "latestRelease": "0.29.4", - "latestReleaseDate": "2025-09-10T08:12:36.333Z" + "downloads": 361305, + "weekDownloads": 56424, + "size": 484277, + "latestRelease": "0.31.0", + "latestReleaseDate": "2025-10-20T10:31:19.512Z" }, "score": 76, "matchingScoreModifiers": [ @@ -113573,8 +112875,8 @@ "Known", "Recently updated" ], - "popularity": 0.128, - "topicSearchString": "react-native nitro ios android visionos tvos macos cpp framework react swift native modules fast jsi turbo scaffold template views" + "popularity": 0.133, + "topicSearchString": "nitro ios android visionos tvos macos cpp framework swift modules fast jsi turbo scaffold template views" }, { "githubUrl": "https://github.com/mrousavy/nitro/tree/main/packages/nitrogen", @@ -113599,13 +112901,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-10T13:32:42Z", + "updatedAt": "2025-10-20T10:31:42Z", "createdAt": "2024-06-12T10:21:40Z", - "pushedAt": "2025-09-10T13:32:42Z", - "forks": 47, - "issues": 12, - "subscribers": 18, - "stars": 1356, + "pushedAt": "2025-10-20T10:31:42Z", + "forks": 59, + "issues": 13, + "subscribers": 17, + "stars": 1443, "dependencies": 5 }, "name": "nitrogen", @@ -113624,24 +112926,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "nitrogen", "npm": { - "downloads": 736, - "weekDownloads": 11, - "size": 780151, - "latestRelease": "0.29.4", - "latestReleaseDate": "2025-09-10T08:12:56.956Z" + "downloads": 19681, + "weekDownloads": 3767, + "size": 799423, + "latestRelease": "0.31.0", + "latestReleaseDate": "2025-10-20T10:31:37.175Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.737, + "popularity": 0.163, "topicSearchString": "" }, { @@ -113675,7 +112977,7 @@ "forks": 1, "issues": 0, "subscribers": 1, - "stars": 7, + "stars": 8, "dependencies": 0 }, "name": "react-native-drag-expand", @@ -113683,7 +112985,6 @@ "isPrivate": false, "description": "Component to use drag gesture to expand or collapse a view size.", "topics": [ - "react-native", "ios", "android", "ui", @@ -113691,7 +112992,6 @@ "expand", "collapse", "headless", - "react", "jsx" ], "license": { @@ -113704,22 +113004,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1, - "weekDownloads": 1, + "downloads": 81, + "weekDownloads": 0, "size": 91189, "latestRelease": "0.8.0", "latestReleaseDate": "2025-01-23T20:47:35.533Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], "popularity": -1, - "topicSearchString": "react-native ios android ui drag expand collapse headless react jsx" + "topicSearchString": "ios android ui drag expand collapse headless jsx" }, { "githubUrl": "https://github.com/aravind3566/react-native-in-app-updates", @@ -113755,7 +113055,6 @@ "registry": "https://registry.npmjs.org/", "description": "🎊🔔🚨 react-native-in-app-updates is a lightweight and simple-to-use library for implementing Android in-app updates. Keep your app users up-to-date seamlessly with minimal effort. (Android only) 🚨🔔🎊", "topics": [ - "react-native", "android", "in-app-updates", "update-flow", @@ -113778,22 +113077,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-in-app-updates", "npm": { - "downloads": 905, - "weekDownloads": 140, + "downloads": 2030, + "weekDownloads": 467, "size": 23621, "latestRelease": "0.2.2", "latestReleaseDate": "2025-06-30T08:28:58.666Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.868, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.054, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/MihirGrand/react-native-serialport-windows", @@ -113831,7 +113130,6 @@ "registry": "https://registry.npmjs.org/", "description": "Serial Communication for React Native Windows", "topics": [ - "react-native", "windows", "serial", "serialport" @@ -113846,20 +113144,22 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-serialport-windows", "npm": { - "downloads": 27, - "weekDownloads": 8, + "downloads": 6, + "weekDownloads": 2, "size": 53928, "latestRelease": "1.0.1", "latestReleaseDate": "2025-08-08T07:20:21.309Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.733, - "topicSearchString": "react-native windows serial serialport" + "popularity": -0.6, + "topicSearchString": "windows serial serialport" }, { "githubUrl": "https://github.com/aravind3566/react-native-install-unknown-apps", @@ -113897,7 +113197,6 @@ "registry": "https://registry.npmjs.org/", "description": "📲🚨 A lightweight React Native library to manage and enable the 'Install Unknown Apps' permission on Android devices. Ideal for apps that need to install APK files from external sources. (Android only) 🚨📲", "topics": [ - "react-native", "android", "install-unknown-apps", "apk-installer", @@ -113922,23 +113221,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-install-unknown-apps", "npm": { - "downloads": 93, - "weekDownloads": 32, + "downloads": 59, + "weekDownloads": 8, "size": 23118, "latestRelease": "0.1.1", "latestReleaseDate": "2024-12-26T01:13:42.388Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.695, - "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" + "popularity": -0.877, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/iliapnmrv/react-native-urovo", @@ -113973,7 +113273,6 @@ "registry": "https://registry.npmjs.org/", "description": "React native bindings for urovo scanners", "topics": [ - "react-native", "android", "urovo" ], @@ -113987,20 +113286,24 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-urovo", "npm": { - "downloads": 105, - "weekDownloads": 4, - "size": 221590, - "latestRelease": "1.1.0", - "latestReleaseDate": "2025-03-27T09:39:29.557Z" + "downloads": 785, + "weekDownloads": 7, + "size": 376440, + "latestRelease": "1.2.0-beta.4", + "latestReleaseDate": "2025-10-05T18:14:31.576Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": -0.967, - "topicSearchString": "react-native android urovo" + "score": 35, + "matchingScoreModifiers": [ + "Not updated recently" + ], + "popularity": -0.992, + "topicSearchString": "android urovo" }, { "githubUrl": "https://github.com/oblador/react-native-nitro-haptics", @@ -114024,10 +113327,10 @@ "updatedAt": "2025-02-26T10:03:40Z", "createdAt": "2024-12-26T09:13:36Z", "pushedAt": "2025-02-26T10:03:40Z", - "forks": 2, - "issues": 2, + "forks": 3, + "issues": 3, "subscribers": 3, - "stars": 155, + "stars": 165, "dependencies": 0 }, "name": "react-native-nitro-haptics", @@ -114036,7 +113339,6 @@ "registry": "https://registry.npmjs.org/", "description": "📳 Low Latency Haptic Feedback with Worklet Support for React Native", "topics": [ - "react-native", "nitro", "nitro-module", "haptics", @@ -114054,23 +113356,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-haptics", "npm": { - "downloads": 2757, - "weekDownloads": 366, + "downloads": 3809, + "weekDownloads": 601, "size": 93632, "latestRelease": "0.1.0", "latestReleaseDate": "2025-02-26T10:04:09.322Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.113, - "topicSearchString": "react-native nitro nitro-module haptics haptic-feedback reanimated worklet" + "popularity": 0.134, + "topicSearchString": "nitro nitro-module haptics haptic-feedback reanimated worklet" }, { "githubUrl": "https://github.com/RomanSytnyk/blur-app-in-recents", @@ -114100,7 +113403,7 @@ "forks": 1, "issues": 0, "subscribers": 1, - "stars": 10, + "stars": 12, "dependencies": 0 }, "name": "@roman.sytnyk/blur-app-in-recents", @@ -114108,7 +113411,6 @@ "isPrivate": false, "description": "A React Native module for Expo that prevents sensitive content from being visible in the app in Recents menu of iOS & Android.", "topics": [ - "react-native", "expo", "@roman.sytnyk/blur-app-in-recents", "blur", @@ -114127,11 +113429,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 24, - "weekDownloads": 1, + "downloads": 70, + "weekDownloads": 0, "size": 33192, "latestRelease": "0.1.2", "latestReleaseDate": "2024-12-24T16:24:38.228Z" @@ -114141,8 +113445,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.96, - "topicSearchString": "react-native expo @roman.sytnyk/blur-app-in-recents blur recents android ios typescript" + "popularity": -1, + "topicSearchString": "expo @roman.sytnyk/blur-app-in-recents blur recents android ios typescript" }, { "githubUrl": "https://github.com/ShivamJoker/react-native-quick-aws4", @@ -114165,7 +113469,7 @@ "pushedAt": "2023-09-25T17:10:35Z", "forks": 0, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 5, "dependencies": 2 }, @@ -114174,7 +113478,6 @@ "isPrivate": false, "description": "Make Faster Requests to AWS Services using the REST API", "topics": [ - "react-native", "aws4", "aws-api", "aws-sdk" @@ -114189,23 +113492,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, + "unmaintained": true, "npmPkg": "react-native-quick-aws4", "npm": { - "downloads": 5, - "weekDownloads": 1, + "downloads": 38, + "weekDownloads": 0, "size": 20048, "latestRelease": "1.0.3", "latestReleaseDate": "2023-03-19T13:48:04.929Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.8, - "topicSearchString": "react-native aws4 aws-api aws-sdk" + "popularity": -1, + "topicSearchString": "aws4 aws-api aws-sdk" }, { "githubUrl": "https://github.com/patlux/react-native-bluetooth-state-manager/tree/master/packages/react-native-bluetooth-state-manager", @@ -114226,10 +113530,10 @@ "updatedAt": "2025-09-12T11:14:37Z", "createdAt": "2018-05-04T08:42:17Z", "pushedAt": "2025-09-12T11:14:37Z", - "forks": 36, - "issues": 1, - "subscribers": 4, - "stars": 72, + "forks": 35, + "issues": 2, + "subscribers": 3, + "stars": 74, "dependencies": 0 }, "name": "react-native-bluetooth-state-manager", @@ -114237,9 +113541,6 @@ "isPrivate": false, "description": "Manage the bluetooth state of your device", "topics": [ - "react-native", - "react", - "native", "bluetooth", "state", "manager" @@ -114254,23 +113555,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-bluetooth-state-manager", "npm": { - "downloads": 44066, - "weekDownloads": 5976, + "downloads": 46765, + "weekDownloads": 11121, "size": 113784, "latestRelease": "2.0.4", "latestReleaseDate": "2025-09-12T11:14:50.131Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": 0.115, - "topicSearchString": "react-native react native bluetooth state manager" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.202, + "topicSearchString": "bluetooth state manager" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-video", @@ -114282,6 +113582,7 @@ "web": true, "tvos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -114293,13 +113594,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T18:37:51Z", + "updatedAt": "2025-10-13T09:55:09Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-10T18:37:51Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-13T09:55:09Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-video", @@ -114307,7 +113608,6 @@ "isPrivate": false, "description": "A cross-platform, performant video component for React Native and Expo with Web support", "topics": [ - "react-native", "expo", "video", "player" @@ -114322,27 +113622,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-video", "npm": { - "downloads": 675766, - "weekDownloads": 152087, + "downloads": 712159, + "weekDownloads": 150149, "size": 1256729, "latestRelease": "3.0.11", "latestReleaseDate": "2025-09-10T18:40:10.405Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.191, - "topicSearchString": "react-native expo video player" + "popularity": 0.179, + "topicSearchString": "expo video player" }, { "githubUrl": "https://github.com/samitha9125/react-native-timezone", @@ -114389,12 +113690,14 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-timezone", "npm": { - "downloads": 9789, - "weekDownloads": 1221, + "downloads": 9628, + "weekDownloads": 1933, "size": 47769, "latestRelease": "3.1.0", "latestReleaseDate": "2024-12-14T09:14:17.242Z" @@ -114403,7 +113706,7 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": 0.106, + "popularity": 0.171, "topicSearchString": "" }, { @@ -114438,7 +113741,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native component that displays items in a row with overflow indicator(+n)", "topics": [ - "react-native", "ios", "android" ], @@ -114452,20 +113754,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-overflow-row", "npm": { - "downloads": 95, - "weekDownloads": 10, + "downloads": 82, + "weekDownloads": 28, "size": 754457, "latestRelease": "1.0.9", "latestReleaseDate": "2025-06-24T07:20:40.633Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.909, - "topicSearchString": "react-native ios android" + "popularity": -0.705, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/web-ridge/react-native-use-form", @@ -114497,7 +113801,7 @@ "forks": 2, "issues": 2, "subscribers": 1, - "stars": 97, + "stars": 98, "dependencies": 1 }, "name": "react-native-use-form", @@ -114506,7 +113810,6 @@ "registry": "https://registry.npmjs.org/", "description": "Simple form library for React Native with great UX for developer and end-user", "topics": [ - "react-native", "ios", "android" ], @@ -114520,22 +113823,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-use-form", "npm": { - "downloads": 179, - "weekDownloads": 27, + "downloads": 266, + "weekDownloads": 13, "size": 294775, "latestRelease": "0.17.3", "latestReleaseDate": "2025-04-15T22:07:40.261Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.621, - "topicSearchString": "react-native ios android" + "popularity": -0.708, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/web-ridge/react-native-paper-tabs", @@ -114563,10 +113867,10 @@ "updatedAt": "2025-04-12T11:49:45Z", "createdAt": "2020-12-24T20:35:25Z", "pushedAt": "2025-04-12T11:49:45Z", - "forks": 40, - "issues": 14, + "forks": 42, + "issues": 13, "subscribers": 3, - "stars": 236, + "stars": 237, "dependencies": 1 }, "name": "react-native-paper-tabs", @@ -114575,14 +113879,12 @@ "registry": "https://registry.npmjs.org/", "description": "Smooth and fast cross platform Material Design Tabs for React Native Paper", "topics": [ - "react-native", "ios", "android", "material-design", "tabs", "viewpager", "web", - "react", "material", "paper", "material-design-tabs" @@ -114597,22 +113899,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-paper-tabs", "npm": { - "downloads": 24873, - "weekDownloads": 4231, + "downloads": 22229, + "weekDownloads": 5140, "size": 968856, "latestRelease": "0.11.4", "latestReleaseDate": "2025-04-12T11:48:56.500Z" }, - "score": 54, + "score": 43, "matchingScoreModifiers": [ - "Known" + "Known", + "Not updated recently" ], - "popularity": 0.145, - "topicSearchString": "react-native ios android material-design tabs viewpager web react material paper material-design-tabs" + "popularity": 0.197, + "topicSearchString": "ios android material-design tabs viewpager web material paper material-design-tabs" }, { "githubUrl": "https://github.com/web-ridge/react-native-ridge-navigation", @@ -114640,7 +113945,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, @@ -114652,10 +113957,8 @@ "registry": "https://registry.npmjs.org/", "description": "Simple, performant & type-safe cross platform navigation in React Native / React Native Web", "topics": [ - "react-native", "ios", "android", - "react", "navigation", "web", "typescript" @@ -114670,20 +113973,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-ridge-navigation", "npm": { - "downloads": 118, - "weekDownloads": 21, + "downloads": 314, + "weekDownloads": 13, "size": 1738745, "latestRelease": "3.0.16", "latestReleaseDate": "2025-08-04T21:48:06.783Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.594, - "topicSearchString": "react-native ios android react navigation web typescript" + "popularity": -0.714, + "topicSearchString": "ios android navigation web typescript" }, { "githubUrl": "https://github.com/indiespirit/react-native-chart-kit", @@ -114703,10 +114008,10 @@ "updatedAt": "2022-02-08T04:03:57Z", "createdAt": "2017-12-20T02:30:08Z", "pushedAt": "2022-02-08T04:03:57Z", - "forks": 649, + "forks": 652, "issues": 404, "subscribers": 14, - "stars": 3031, + "stars": 3040, "dependencies": 3 }, "name": "react-native-chart-kit", @@ -114716,7 +114021,6 @@ "topics": [ "chart", "chart-kit", - "react-native", "expo", "charts", "graphs" @@ -114731,13 +114035,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-chart-kit", "npm": { - "downloads": 362191, - "weekDownloads": 63257, + "downloads": 393585, + "weekDownloads": 81758, "size": 399072, "latestRelease": "6.12.0", "latestReleaseDate": "2022-02-08T04:08:27.067Z" @@ -114751,8 +114056,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.602, - "topicSearchString": "chart chart-kit react-native expo charts graphs" + "popularity": -0.573, + "topicSearchString": "chart chart-kit expo charts graphs" }, { "githubUrl": "https://github.com/invertase/react-native-firebase/tree/main/packages/installations", @@ -114772,13 +114077,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T15:47:00Z", + "updatedAt": "2025-10-14T12:32:07Z", "createdAt": "2017-02-01T12:01:03Z", - "pushedAt": "2025-09-08T15:47:00Z", - "forks": 2216, - "issues": 54, - "subscribers": 163, - "stars": 12075, + "pushedAt": "2025-10-14T12:32:07Z", + "forks": 2223, + "issues": 59, + "subscribers": 164, + "stars": 12110, "dependencies": 0 }, "name": "@react-native-firebase/installations", @@ -114786,8 +114091,6 @@ "isPrivate": false, "description": "React Native Firebase - Installations", "topics": [ - "react", - "react-native", "firebase", "installations" ], @@ -114801,31 +114104,32 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 89030, - "weekDownloads": 15499, - "size": 77127, - "latestRelease": "23.3.1", - "latestReleaseDate": "2025-09-08T15:47:48.856Z" + "downloads": 91881, + "weekDownloads": 19013, + "size": 77491, + "latestRelease": "23.4.1", + "latestReleaseDate": "2025-10-14T12:32:56.395Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.148, - "topicSearchString": "react react-native firebase installations" + "popularity": 0.176, + "topicSearchString": "firebase installations" }, { "githubUrl": "https://github.com/didomi/react-native", "npmPkg": "@didomi/react-native", "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/didomi/react-native", @@ -114837,14 +114141,14 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-11T09:32:57Z", + "updatedAt": "2025-10-17T09:41:09Z", "createdAt": "2021-05-18T15:24:40Z", - "pushedAt": "2025-08-11T09:32:57Z", + "pushedAt": "2025-10-17T09:41:09Z", "forks": 3, - "issues": 11, - "subscribers": 8, + "issues": 12, + "subscribers": 7, "stars": 9, - "dependencies": 0 + "dependencies": 1 }, "name": "@didomi/react-native", "fullName": "didomi/react-native", @@ -114852,7 +114156,6 @@ "registry": "https://registry.npmjs.org/", "description": "Didomi SDK for React Native", "topics": [ - "react-native", "ios", "android" ], @@ -114866,22 +114169,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 10511, - "weekDownloads": 1547, - "size": 414048, - "latestRelease": "2.15.0", - "latestReleaseDate": "2025-08-11T09:52:14.726Z" + "downloads": 12264, + "weekDownloads": 2594, + "size": 416448, + "latestRelease": "2.16.0", + "latestReleaseDate": "2025-10-10T16:35:50.137Z" }, - "score": 32, + "score": 38, "matchingScoreModifiers": [ "GPL license", + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.125, - "topicSearchString": "react-native ios android" + "popularity": -0.07, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/liveakshay/expo-spellchecker", @@ -114917,7 +114222,6 @@ "isPrivate": false, "description": "Expo module that exposes underlying native spell checker (iOS and android) and word completions (iOS only) - to react-native apps, via TypeScript interface.", "topics": [ - "react-native", "expo", "expo-spellchecker", "expospellchecker", @@ -114936,23 +114240,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-spellchecker", "npm": { - "downloads": 3, - "weekDownloads": 0, + "downloads": 42, + "weekDownloads": 6, "size": 6698535, "latestRelease": "1.0.2", "latestReleaseDate": "2025-01-09T01:23:34.178Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1, - "topicSearchString": "react-native expo expo-spellchecker expospellchecker spellchecker dictionary word-completion word-prediction" + "popularity": -0.867, + "topicSearchString": "expo expo-spellchecker expospellchecker spellchecker dictionary word-completion word-prediction" }, { "githubUrl": "https://github.com/Kommunicate-io/Kommunicate-React-Native-SDK", @@ -114974,12 +114279,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-06-26T11:31:30Z", + "updatedAt": "2025-10-10T14:29:46Z", "createdAt": "2019-08-01T11:26:48Z", - "pushedAt": "2025-06-26T11:31:30Z", + "pushedAt": "2025-10-10T14:29:46Z", "forks": 5, "issues": 5, - "subscribers": 5, + "subscribers": 4, "stars": 30, "dependencies": 0 }, @@ -114988,7 +114293,6 @@ "isPrivate": false, "description": "The Kommunicate React Native SDK enables quick integration of AI chatbots powered by OpenAI ChatGPT, Google Gemini, and Anthropic Claude into React Native apps. It acts as a React Native wrapper to bridge our iOS and Android SDKs, supporting NLP, hybrid chat, and real-time messaging for seamless automation.", "topics": [ - "react-native", "ai-chatbot", "android", "app-framework", @@ -114996,29 +114300,30 @@ "chatbot", "cross-platform", "ios", - "mobile", - "react" + "mobile" ], "license": null, "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 147, - "weekDownloads": 62, - "size": 107210, - "latestRelease": "2.5.2", - "latestReleaseDate": "2025-06-13T10:27:46.212Z" + "downloads": 630, + "weekDownloads": 157, + "size": 121256, + "latestRelease": "2.5.5", + "latestReleaseDate": "2025-10-10T15:53:27.027Z" }, - "score": 32, + "score": 38, "matchingScoreModifiers": [ "No license", + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.385, - "topicSearchString": "react-native ai-chatbot android app-framework chat chatbot cross-platform ios mobile react" + "popularity": -0.538, + "topicSearchString": "ai-chatbot android app-framework chat chatbot cross-platform ios mobile" }, { "githubUrl": "https://github.com/reduxjs/redux-toolkit/tree/master/packages/toolkit", @@ -115043,13 +114348,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-03T01:55:20Z", + "updatedAt": "2025-10-17T02:53:01Z", "createdAt": "2018-03-03T21:21:53Z", - "pushedAt": "2025-09-03T01:55:20Z", - "forks": 1226, - "issues": 207, - "subscribers": 70, - "stars": 11080, + "pushedAt": "2025-10-17T02:53:01Z", + "forks": 1238, + "issues": 208, + "subscribers": 71, + "stars": 11110, "dependencies": 6 }, "name": "@reduxjs/toolkit", @@ -115058,7 +114363,6 @@ "description": "The official, opinionated, batteries-included toolset for efficient Redux development", "topics": [ "redux", - "react", "starter", "toolkit", "reducer", @@ -115077,26 +114381,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 27669194, - "weekDownloads": 4679442, - "size": 6842520, - "latestRelease": "2.9.0", - "latestReleaseDate": "2025-09-03T01:54:49.350Z" + "downloads": 27790873, + "weekDownloads": 6091194, + "size": 6869116, + "latestRelease": "2.9.1", + "latestReleaseDate": "2025-10-17T02:52:30.645Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.144, - "topicSearchString": "redux react starter toolkit reducer slice immer immutable redux-toolkit" + "popularity": 0.186, + "topicSearchString": "redux starter toolkit reducer slice immer immutable redux-toolkit" }, { "githubUrl": "https://github.com/reduxjs/react-redux", @@ -115124,10 +114428,10 @@ "updatedAt": "2025-09-04T21:35:07Z", "createdAt": "2015-07-11T17:32:01Z", "pushedAt": "2025-09-04T21:35:07Z", - "forks": 3307, + "forks": 3309, "issues": 25, - "subscribers": 399, - "stars": 23497, + "subscribers": 398, + "stars": 23504, "dependencies": 2 }, "name": "react-redux", @@ -115135,7 +114439,6 @@ "isPrivate": false, "description": "Official React bindings for Redux", "topics": [ - "react", "reactjs", "redux" ], @@ -115149,26 +114452,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-redux", "npm": { - "downloads": 49243285, - "weekDownloads": 8263328, + "downloads": 48007257, + "weekDownloads": 10633294, "size": 822524, "latestRelease": "9.2.0", "latestReleaseDate": "2024-12-10T23:06:45.755Z" }, - "score": 97, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.143, - "topicSearchString": "react reactjs redux" + "popularity": 0.188, + "topicSearchString": "reactjs redux" }, { "githubUrl": "https://github.com/reduxjs/redux", @@ -115192,13 +114494,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-04T21:33:29Z", + "updatedAt": "2025-10-21T07:41:12Z", "createdAt": "2015-05-29T23:53:15Z", - "pushedAt": "2025-09-04T21:33:29Z", - "forks": 14865, + "pushedAt": "2025-10-21T07:41:12Z", + "forks": 14861, "issues": 39, - "subscribers": 1261, - "stars": 61329, + "subscribers": 1255, + "stars": 61365, "dependencies": 0 }, "name": "redux", @@ -115228,25 +114530,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "redux", "npm": { - "downloads": 66921080, - "weekDownloads": 11236630, + "downloads": 64717905, + "weekDownloads": 14375464, "size": 289804, "latestRelease": "5.0.1", "latestReleaseDate": "2023-12-23T16:47:28.099Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.143, + "popularity": 0.189, "topicSearchString": "redux reducer state predictable functional immutable hot live replay flux elm" }, { @@ -115268,13 +114570,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-03-16T19:38:31Z", + "updatedAt": "2025-09-26T01:13:08Z", "createdAt": "2015-07-01T11:06:45Z", - "pushedAt": "2025-03-16T19:38:31Z", - "forks": 658, + "pushedAt": "2025-09-26T01:13:08Z", + "forks": 659, "issues": 31, - "subscribers": 163, - "stars": 19061, + "subscribers": 162, + "stars": 19062, "dependencies": 0 }, "name": "reselect", @@ -115282,7 +114584,6 @@ "isPrivate": false, "description": "Selector library for Redux", "topics": [ - "react", "redux", "memoized-selectors" ], @@ -115296,26 +114597,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "reselect", "npm": { - "downloads": 53646990, - "weekDownloads": 9051182, + "downloads": 53508911, + "weekDownloads": 11896778, "size": 646106, "latestRelease": "5.1.1", "latestReleaseDate": "2024-06-01T22:16:06.224Z" }, - "score": 81, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.143, - "topicSearchString": "react redux memoized-selectors" + "popularity": 0.189, + "topicSearchString": "redux memoized-selectors" }, { "githubUrl": "https://github.com/reduxjs/redux-thunk", @@ -115341,8 +114642,8 @@ "pushedAt": "2025-03-16T00:23:17Z", "forks": 1021, "issues": 0, - "subscribers": 168, - "stars": 17752, + "subscribers": 167, + "stars": 17750, "dependencies": 0 }, "name": "redux-thunk", @@ -115366,25 +114667,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "redux-thunk", "npm": { - "downloads": 36394714, - "weekDownloads": 6104914, + "downloads": 35183894, + "weekDownloads": 7880676, "size": 26757, "latestRelease": "3.1.0", "latestReleaseDate": "2023-12-04T13:50:37.326Z" }, - "score": 81, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.143, + "popularity": 0.19, "topicSearchString": "redux thunk middleware redux-middleware flux" }, { @@ -115406,13 +114707,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-02T19:42:02Z", + "updatedAt": "2025-10-01T19:14:40Z", "createdAt": "2012-02-17T14:19:43Z", - "pushedAt": "2025-09-02T19:42:02Z", - "forks": 11940, - "issues": 3744, - "subscribers": 1348, - "stars": 75661, + "pushedAt": "2025-10-01T19:14:40Z", + "forks": 11946, + "issues": 3755, + "subscribers": 1346, + "stars": 75739, "dependencies": 1 }, "name": "@fortawesome/fontawesome-svg-core", @@ -115437,25 +114738,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8905556, - "weekDownloads": 1495506, - "size": 430859, - "latestRelease": "7.0.1", - "latestReleaseDate": "2025-09-02T19:22:48.549Z" + "downloads": 8313047, + "weekDownloads": 1836428, + "size": 438956, + "latestRelease": "7.1.0", + "latestReleaseDate": "2025-10-01T19:33:58.264Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.143, + "popularity": 0.188, "topicSearchString": "font awesome fontawesome icon svg bootstrap" }, { @@ -115476,13 +114777,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-02T19:42:02Z", + "updatedAt": "2025-10-01T19:14:40Z", "createdAt": "2012-02-17T14:19:43Z", - "pushedAt": "2025-09-02T19:42:02Z", - "forks": 11940, - "issues": 3744, - "subscribers": 1348, - "stars": 75661, + "pushedAt": "2025-10-01T19:14:40Z", + "forks": 11946, + "issues": 3755, + "subscribers": 1346, + "stars": 75739, "dependencies": 1 }, "name": "@fortawesome/free-brands-svg-icons", @@ -115500,14 +114801,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2895482, - "weekDownloads": 497067, + "downloads": 2745299, + "weekDownloads": 587670, "size": 2251366, - "latestRelease": "7.0.1", - "latestReleaseDate": "2025-09-02T19:29:08.542Z" + "latestRelease": "7.1.0", + "latestReleaseDate": "2025-10-01T19:39:12.619Z" }, "score": 86, "matchingScoreModifiers": [ @@ -115518,7 +114820,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.146, + "popularity": 0.182, "topicSearchString": "font awesome fontawesome icon svg bootstrap" }, { @@ -115539,13 +114841,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-02T19:42:02Z", + "updatedAt": "2025-10-01T19:14:40Z", "createdAt": "2012-02-17T14:19:43Z", - "pushedAt": "2025-09-02T19:42:02Z", - "forks": 11940, - "issues": 3744, - "subscribers": 1348, - "stars": 75661, + "pushedAt": "2025-10-01T19:14:40Z", + "forks": 11946, + "issues": 3755, + "subscribers": 1346, + "stars": 75739, "dependencies": 1 }, "name": "@fortawesome/free-regular-svg-icons", @@ -115563,14 +114865,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4306896, - "weekDownloads": 748651, + "downloads": 4080435, + "weekDownloads": 892142, "size": 698777, - "latestRelease": "7.0.1", - "latestReleaseDate": "2025-09-02T19:28:44.800Z" + "latestRelease": "7.1.0", + "latestReleaseDate": "2025-10-01T19:38:48.790Z" }, "score": 86, "matchingScoreModifiers": [ @@ -115581,7 +114884,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.186, "topicSearchString": "font awesome fontawesome icon svg bootstrap" }, { @@ -115602,13 +114905,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-02T19:42:02Z", + "updatedAt": "2025-10-01T19:14:40Z", "createdAt": "2012-02-17T14:19:43Z", - "pushedAt": "2025-09-02T19:42:02Z", - "forks": 11940, - "issues": 3744, - "subscribers": 1348, - "stars": 75661, + "pushedAt": "2025-10-01T19:14:40Z", + "forks": 11946, + "issues": 3755, + "subscribers": 1346, + "stars": 75739, "dependencies": 1 }, "name": "@fortawesome/free-solid-svg-icons", @@ -115626,14 +114929,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8574551, - "weekDownloads": 1433183, - "size": 5063259, - "latestRelease": "7.0.1", - "latestReleaseDate": "2025-09-02T19:28:04.550Z" + "downloads": 7979345, + "weekDownloads": 1760503, + "size": 5063436, + "latestRelease": "7.1.0", + "latestReleaseDate": "2025-10-01T19:38:23.286Z" }, "score": 86, "matchingScoreModifiers": [ @@ -115644,7 +114948,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.188, "topicSearchString": "font awesome fontawesome icon svg bootstrap" }, { @@ -115670,7 +114974,7 @@ "forks": 5, "issues": 0, "subscribers": 1, - "stars": 74, + "stars": 75, "dependencies": 0 }, "name": "react-native-motion-tabs", @@ -115679,11 +114983,9 @@ "registry": "https://registry.npmjs.org/", "description": "🎨 A lightweight, customizable animated bottom tabs navigator for React Native.", "topics": [ - "react-native", "ios", "android", "bottom-tabs", - "react", "navigation", "screens", "reactnative", @@ -115700,12 +115002,14 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-motion-tabs", "npm": { - "downloads": 30, - "weekDownloads": 1, + "downloads": 487, + "weekDownloads": 7, "size": 72446, "latestRelease": "1.0.12", "latestReleaseDate": "2025-01-03T12:27:43.896Z" @@ -115714,8 +115018,8 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.721, - "topicSearchString": "react-native ios android bottom-tabs react navigation screens reactnative typescript expo" + "popularity": -0.738, + "topicSearchString": "ios android bottom-tabs navigation screens reactnative typescript expo" }, { "githubUrl": "https://github.com/vantuan88291/react-native-ota-hot-update", @@ -115723,6 +115027,7 @@ "android": true, "expo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/vantuan88291/react-native-ota-hot-update", @@ -115734,13 +115039,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-01T08:41:13Z", + "updatedAt": "2025-10-11T12:00:51Z", "createdAt": "2024-08-16T03:13:36Z", - "pushedAt": "2025-09-01T08:41:13Z", - "forks": 61, - "issues": 11, + "pushedAt": "2025-10-11T12:00:51Z", + "forks": 65, + "issues": 12, "subscribers": 8, - "stars": 555, + "stars": 568, "dependencies": 1 }, "name": "react-native-ota-hot-update", @@ -115769,12 +115074,14 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-ota-hot-update", "npm": { - "downloads": 8842, - "weekDownloads": 1700, + "downloads": 8447, + "weekDownloads": 1965, "size": 248478, "latestRelease": "2.3.4", "latestReleaseDate": "2025-09-01T08:41:28.349Z" @@ -115784,7 +115091,7 @@ "Known", "Recently updated" ], - "popularity": 0.163, + "popularity": 0.198, "topicSearchString": "hot-update ota code-push update hotupdate codepush ota-hot-update custom-ota rn-hotupdate" }, { @@ -115803,13 +115110,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-01-14T10:49:02Z", + "updatedAt": "2025-10-02T22:17:45Z", "createdAt": "2022-11-01T19:23:36Z", - "pushedAt": "2025-01-14T10:49:02Z", - "forks": 46, - "issues": 9, + "pushedAt": "2025-10-02T22:17:45Z", + "forks": 49, + "issues": 4, "subscribers": 9, - "stars": 193, + "stars": 198, "dependencies": 0 }, "name": "react-native-passkey", @@ -115818,7 +115125,6 @@ "registry": "https://registry.npmjs.org/", "description": "Passkeys for React Native", "topics": [ - "react-native", "ios", "android", "passkey", @@ -115835,24 +115141,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-passkey", "npm": { - "downloads": 174930, - "weekDownloads": 29292, - "size": 113994, - "latestRelease": "3.1.0", - "latestReleaseDate": "2025-01-14T10:35:07.912Z" + "downloads": 130468, + "weekDownloads": 24959, + "size": 123279, + "latestRelease": "3.3.1", + "latestReleaseDate": "2025-10-02T22:17:44.792Z" }, - "score": 41, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.142, - "topicSearchString": "react-native ios android passkey authentication auth" + "popularity": 0.163, + "topicSearchString": "ios android passkey authentication auth" }, { "githubUrl": "https://github.com/PlayerData/react-native-mcu-manager/tree/main/react-native-mcu-manager", @@ -115874,12 +115180,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-02T12:12:35Z", + "updatedAt": "2025-10-15T08:34:34Z", "createdAt": "2021-03-16T11:17:37Z", - "pushedAt": "2025-09-02T12:12:35Z", + "pushedAt": "2025-10-15T08:34:34Z", "forks": 10, "issues": 1, - "subscribers": 12, + "subscribers": 11, "stars": 24, "dependencies": 0 }, @@ -115888,7 +115194,6 @@ "isPrivate": false, "description": "React Native Wrappers for MCUMgr's Android / iOS client libraries", "topics": [ - "react-native", "ios", "android", "mcumgr" @@ -115903,22 +115208,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 20164, - "weekDownloads": 4315, - "size": 65192, - "latestRelease": "4.3.23", - "latestReleaseDate": "2025-09-09T16:37:15.836Z" + "downloads": 19117, + "weekDownloads": 4292, + "size": 65190, + "latestRelease": "4.3.34", + "latestReleaseDate": "2025-10-21T15:27:55.442Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.068, - "topicSearchString": "react-native ios android mcumgr" + "popularity": -0.059, + "topicSearchString": "ios android mcumgr" }, { "githubUrl": "https://github.com/THEOplayer/react-native-theoplayer", @@ -115939,6 +115245,7 @@ "tvos": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/THEOplayer/react-native-theoplayer", @@ -115950,13 +115257,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-08T09:06:27Z", + "updatedAt": "2025-10-21T12:38:28Z", "createdAt": "2022-06-06T09:18:31Z", - "pushedAt": "2025-09-08T09:06:27Z", + "pushedAt": "2025-10-21T12:38:28Z", "forks": 29, - "issues": 1, + "issues": 0, "subscribers": 6, - "stars": 90, + "stars": 96, "dependencies": 2 }, "name": "react-native-theoplayer", @@ -115965,7 +115272,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native THEOplayerView component", "topics": [ - "react-native", "theoplayer", "ios", "android", @@ -115983,23 +115289,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-theoplayer", "npm": { - "downloads": 19604, - "weekDownloads": 2620, - "size": 2530878, - "latestRelease": "9.10.0", - "latestReleaseDate": "2025-08-19T20:14:23.128Z" + "downloads": 27703, + "weekDownloads": 7165, + "size": 2619749, + "latestRelease": "10.2.1", + "latestReleaseDate": "2025-10-21T13:02:13.252Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.114, - "topicSearchString": "react-native theoplayer ios android video video-player video-streaming" + "popularity": 0.22, + "topicSearchString": "theoplayer ios android video video-player video-streaming" }, { "githubUrl": "https://github.com/gronxb/hot-updater/tree/main/packages/react-native", @@ -116010,6 +115316,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/gronxb/hot-updater", @@ -116021,13 +115328,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-09T16:30:39Z", + "updatedAt": "2025-10-20T15:23:43Z", "createdAt": "2023-10-22T15:56:45Z", - "pushedAt": "2025-09-09T16:30:39Z", - "forks": 85, - "issues": 30, - "subscribers": 9, - "stars": 993, + "pushedAt": "2025-10-20T15:23:43Z", + "forks": 93, + "issues": 37, + "subscribers": 11, + "stars": 1054, "dependencies": 4 }, "name": "@hot-updater/react-native", @@ -116035,7 +115342,6 @@ "isPrivate": false, "description": "React Native OTA solution for self-hosted", "topics": [ - "react-native", "code-push", "code-push", "eas", @@ -116054,14 +115360,16 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npm": { - "downloads": 22379, - "weekDownloads": 3380, - "size": 286005, - "latestRelease": "0.20.10", - "latestReleaseDate": "2025-09-09T16:32:59.423Z" + "downloads": 24387, + "weekDownloads": 5246, + "size": 299648, + "latestRelease": "0.20.15", + "latestReleaseDate": "2025-10-20T15:25:53.149Z" }, "score": 76, "matchingScoreModifiers": [ @@ -116069,8 +115377,8 @@ "Known", "Recently updated" ], - "popularity": 0.128, - "topicSearchString": "react-native code-push code-push eas eas-update expo expo-update self-hosted" + "popularity": 0.183, + "topicSearchString": "code-push code-push eas eas-update expo expo-update self-hosted" }, { "githubUrl": "https://github.com/yunusyavuz16/react-native-trendy", @@ -116111,7 +115419,6 @@ "registry": "https://registry.npmjs.org/", "description": "A powerful, customizable, and type-safe styling library for React Native applications that supports light and dark themes with ease.", "topics": [ - "react-native", "ios", "android" ], @@ -116125,11 +115432,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-trendy", "npm": { - "downloads": 8, + "downloads": 71, "weekDownloads": 0, "size": 1848827, "latestRelease": "1.1.0", @@ -116140,7 +115449,7 @@ "Not updated recently" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/matinzd/expo-health-connect", @@ -116149,6 +115458,7 @@ ], "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/matinzd/expo-health-connect", @@ -116166,7 +115476,7 @@ "forks": 5, "issues": 1, "subscribers": 2, - "stars": 8, + "stars": 10, "dependencies": 0 }, "name": "expo-health-connect", @@ -116174,7 +115484,6 @@ "isPrivate": false, "description": "Expo integration for react-native-health-connect", "topics": [ - "react-native", "expo", "expo-health-connect", "expohealthconnect" @@ -116189,23 +115498,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-health-connect", "npm": { - "downloads": 17153, - "weekDownloads": 2895, + "downloads": 18183, + "weekDownloads": 4022, "size": 13238, "latestRelease": "0.1.1", "latestReleaseDate": "2024-07-31T17:07:32.223Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.107, - "topicSearchString": "react-native expo expo-health-connect expohealthconnect" + "popularity": -0.062, + "topicSearchString": "expo expo-health-connect expohealthconnect" }, { "githubUrl": "https://github.com/suhaotian/xior", @@ -116228,9 +115538,9 @@ "createdAt": "2024-02-20T00:14:38Z", "pushedAt": "2025-07-13T21:48:15Z", "forks": 10, - "issues": 4, + "issues": 3, "subscribers": 5, - "stars": 382, + "stars": 391, "dependencies": 1 }, "name": "xior", @@ -116274,12 +115584,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "xior", "npm": { - "downloads": 73544, - "weekDownloads": 14082, + "downloads": 85312, + "weekDownloads": 18808, "size": 231185, "latestRelease": "0.7.8", "latestReleaseDate": "2025-04-09T22:41:39.323Z" @@ -116289,7 +115600,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.187, "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" }, { @@ -116309,12 +115620,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-05-27T06:33:33Z", + "updatedAt": "2025-10-03T07:07:10Z", "createdAt": "2021-02-09T02:27:07Z", - "pushedAt": "2025-05-27T06:33:33Z", - "forks": 5, + "pushedAt": "2025-10-03T07:07:10Z", + "forks": 8, "issues": 7, - "subscribers": 3, + "subscribers": 2, "stars": 127, "dependencies": 2 }, @@ -116329,8 +115640,7 @@ "buffer", "compatible", "dataview", - "uint8array", - "react-native" + "uint8array" ], "license": { "name": "MIT License", @@ -116342,22 +115652,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 418594, - "weekDownloads": 49671, + "downloads": 457933, + "weekDownloads": 117459, "size": 83684, - "latestRelease": "6.1.0", - "latestReleaseDate": "2025-05-27T06:33:37.881Z" + "latestRelease": "6.1.1", + "latestReleaseDate": "2025-10-03T07:07:25.969Z" }, - "score": 51, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.101, - "topicSearchString": "arraybuffer browser browserify buffer compatible dataview uint8array react-native" + "popularity": 0.218, + "topicSearchString": "arraybuffer browser browserify buffer compatible dataview uint8array" }, { "githubUrl": "https://github.com/bugsnag/bugsnag-expo/tree/next/packages/expo", @@ -116379,13 +115690,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-05-21T14:51:36Z", + "updatedAt": "2025-09-15T15:42:13Z", "createdAt": "2018-04-03T23:36:10Z", - "pushedAt": "2025-05-21T14:51:36Z", + "pushedAt": "2025-09-15T15:42:13Z", "forks": 5, - "issues": 8, - "subscribers": 22, - "stars": 11, + "issues": 7, + "subscribers": 21, + "stars": 12, "dependencies": 15 }, "name": "@bugsnag/expo", @@ -116395,7 +115706,6 @@ "topics": [ "bugsnag", "expo", - "react-native", "exception", "error", "javascript", @@ -116414,21 +115724,20 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 47953, - "weekDownloads": 9201, + "downloads": 34456, + "weekDownloads": 8065, "size": 12044, - "latestRelease": "53.0.0", - "latestReleaseDate": "2025-05-21T14:51:50.790Z" + "latestRelease": "54.0.0", + "latestReleaseDate": "2025-09-15T11:41:11.549Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.087, - "topicSearchString": "bugsnag expo react-native exception error javascript monitoring reporting stability mobile" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.051, + "topicSearchString": "bugsnag expo exception error javascript monitoring reporting stability mobile" }, { "githubUrl": "https://github.com/bugsnag/bugsnag-js/tree/next/packages/react-native", @@ -116450,13 +115759,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-06-18T15:21:28Z", + "updatedAt": "2025-10-13T10:50:03Z", "createdAt": "2013-02-05T19:06:33Z", - "pushedAt": "2025-06-18T15:21:28Z", - "forks": 252, - "issues": 59, - "subscribers": 46, - "stars": 879, + "pushedAt": "2025-10-13T10:50:03Z", + "forks": 254, + "issues": 58, + "subscribers": 45, + "stars": 883, "dependencies": 12 }, "name": "@bugsnag/react-native", @@ -116465,7 +115774,6 @@ "description": "Bugsnag error reporter for React Native applications", "topics": [ "bugsnag", - "react-native", "exception", "error", "javascript", @@ -116484,22 +115792,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 280518, - "weekDownloads": 46495, - "size": 17000158, - "latestRelease": "8.4.0", - "latestReleaseDate": "2025-06-18T15:22:37.881Z" + "downloads": 299424, + "weekDownloads": 78626, + "size": 16854070, + "latestRelease": "8.7.0", + "latestReleaseDate": "2025-10-13T10:50:56.678Z" }, - "score": 70, + "score": 76, "matchingScoreModifiers": [ "Popular", - "Known" + "Known", + "Recently updated" ], - "popularity": 0.141, - "topicSearchString": "bugsnag react-native exception error javascript monitoring reporting stability mobile" + "popularity": 0.223, + "topicSearchString": "bugsnag exception error javascript monitoring reporting stability mobile" }, { "githubUrl": "https://github.com/bugsnag/bugsnag-js-performance/tree/next/packages/platforms/react-native", @@ -116521,12 +115832,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-05T09:46:49Z", + "updatedAt": "2025-10-09T16:16:44Z", "createdAt": "2023-02-01T11:08:05Z", - "pushedAt": "2025-09-05T09:46:49Z", + "pushedAt": "2025-10-09T16:16:44Z", "forks": 6, - "issues": 2, - "subscribers": 20, + "issues": 3, + "subscribers": 19, "stars": 7, "dependencies": 4 }, @@ -116545,20 +115856,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 14513, - "weekDownloads": 3172, - "size": 153440, - "latestRelease": "3.0.0", - "latestReleaseDate": "2025-08-13T14:10:11.259Z" + "downloads": 10221, + "weekDownloads": 2420, + "size": 155662, + "latestRelease": "3.1.0", + "latestReleaseDate": "2025-09-24T16:03:09.028Z" }, "score": 51, "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.064, + "popularity": -0.049, "topicSearchString": "" }, { @@ -116592,8 +115905,6 @@ "isPrivate": false, "description": "Simpler (and more testable) expo-notifications event handling", "topics": [ - "react", - "native", "expo", "expo-notifications" ], @@ -116607,21 +115918,20 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 43, - "weekDownloads": 1, + "downloads": 104, + "weekDownloads": 2, "size": 8692, "latestRelease": "0.0.18", "latestReleaseDate": "2025-07-08T08:48:29.448Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.98, - "topicSearchString": "react native expo expo-notifications" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.983, + "topicSearchString": "expo expo-notifications" }, { "githubUrl": "https://github.com/benjamineruvieru/react-native-pdf-from-image", @@ -116657,7 +115967,6 @@ "registry": "https://registry.npmjs.org/", "description": "Generate PDF documents from an array of images.", "topics": [ - "react-native", "ios", "android", "pdf-generation", @@ -116666,8 +115975,7 @@ "pdf", "image", "document-creation", - "image-processing", - "pdf-generation-react" + "image-processing" ], "license": { "key": "mit", @@ -116679,20 +115987,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-pdf-from-image", "npm": { - "downloads": 2389, - "weekDownloads": 351, + "downloads": 2847, + "weekDownloads": 526, "size": 77624, "latestRelease": "0.3.5", "latestReleaseDate": "2025-02-28T06:32:23.548Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.125, - "topicSearchString": "react-native ios android pdf-generation library image-to-pdf pdf image document-creation image-processing pdf-generation-react" + "popularity": -0.093, + "topicSearchString": "ios android pdf-generation library image-to-pdf pdf image document-creation image-processing" }, { "githubUrl": "https://github.com/benjamineruvieru/rn-text-touch-highlight", @@ -116729,10 +116039,8 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Text Touch Highlighter is a user friendly component library that enables users to effortlessly tap and drag to highlight text in React Native applications.", "topics": [ - "react-native", "ios", "android", - "react", "highlight", "text", "gesture", @@ -116760,22 +116068,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-text-touch-highlight", "npm": { - "downloads": 58, - "weekDownloads": 9, + "downloads": 107, + "weekDownloads": 29, "size": 727370, "latestRelease": "0.4.0", "latestReleaseDate": "2025-02-04T19:20:39.105Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.862, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.768, + "topicSearchString": "ios android 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" }, { "githubUrl": "https://github.com/benjamineruvieru/react-native-type-animation", @@ -116812,7 +116119,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Type Animation is a component library that allows you to create engaging typewriter-style text animations in your React Native applications.", "topics": [ - "react-native", "ios", "android", "type-animation", @@ -116829,22 +116135,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-type-animation", "npm": { - "downloads": 32156, - "weekDownloads": 6068, + "downloads": 38506, + "weekDownloads": 8039, "size": 747088, "latestRelease": "0.4.4", "latestReleaseDate": "2025-05-10T20:46:45.076Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.09, - "topicSearchString": "react-native ios android type-animation typing typinganimation" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.073, + "topicSearchString": "ios android type-animation typing typinganimation" }, { "githubUrl": "https://github.com/oxidia/style-variance-authority", @@ -116882,8 +116187,7 @@ "sva", "style", "styles", - "variants", - "react-native" + "variants" ], "license": { "key": "apache-2.0", @@ -116895,11 +116199,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 24, - "weekDownloads": 1, + "downloads": 65, + "weekDownloads": 5, "size": 18836, "latestRelease": "1.0.5", "latestReleaseDate": "2025-01-31T00:05:49.147Z" @@ -116909,8 +116214,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.96, - "topicSearchString": "style-variance-authority sva style styles variants react-native" + "popularity": -0.933, + "topicSearchString": "style-variance-authority sva style styles variants" }, { "githubUrl": "https://github.com/MatiPl01/react-native-sortables/tree/main/packages/react-native-sortables", @@ -116929,13 +116234,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-13T14:26:14Z", + "updatedAt": "2025-09-16T11:11:42Z", "createdAt": "2024-04-30T15:09:38Z", - "pushedAt": "2025-09-13T14:26:14Z", - "forks": 18, - "issues": 9, - "subscribers": 4, - "stars": 739, + "pushedAt": "2025-09-16T11:11:42Z", + "forks": 19, + "issues": 7, + "subscribers": 3, + "stars": 774, "dependencies": 0 }, "name": "react-native-sortables", @@ -116953,7 +116258,6 @@ "grid", "haptic-feedback", "haptics", - "react-native", "reanimated", "reorder", "sortable", @@ -116970,24 +116274,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-sortables", "npm": { - "downloads": 70579, - "weekDownloads": 8214, - "size": 1016355, - "latestRelease": "1.9.0", - "latestReleaseDate": "2025-09-13T14:26:23.505Z" + "downloads": 63950, + "weekDownloads": 12546, + "size": 1017797, + "latestRelease": "1.9.2", + "latestReleaseDate": "2025-09-16T11:11:52.305Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.099, - "topicSearchString": "draggable draggable-flex draggable-grid flex gesture-handler gestures grid haptic-feedback haptics react-native reanimated reorder sortable sortable-flex sortable-grid" + "popularity": 0.167, + "topicSearchString": "draggable draggable-flex draggable-grid flex gesture-handler gestures grid haptic-feedback haptics reanimated reorder sortable sortable-flex sortable-grid" }, { "githubUrl": "https://github.com/callstackincubator/react-native-fast-io/tree/main/packages/react-native-fast-io", @@ -117013,7 +116316,7 @@ "forks": 6, "issues": 10, "subscribers": 22, - "stars": 301, + "stars": 328, "dependencies": 3 }, "name": "react-native-fast-io", @@ -117021,7 +116324,6 @@ "isPrivate": false, "description": "Modern IO for React Native, built on top of Nitro and Web standards", "topics": [ - "react-native", "websocket", "fetch", "io", @@ -117040,12 +116342,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-fast-io", "npm": { - "downloads": 16, - "weekDownloads": 8, + "downloads": 52, + "weekDownloads": 12, "size": 491195, "latestRelease": "0.2.0", "latestReleaseDate": "2024-12-20T20:44:06.620Z" @@ -117056,8 +116360,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.217, - "topicSearchString": "react-native websocket fetch io streams nitro nitro-modules nitrogen" + "popularity": -0.55, + "topicSearchString": "websocket fetch io streams nitro nitro-modules nitrogen" }, { "githubUrl": "https://github.com/callstackincubator/polygen/tree/master/packages/polygen", @@ -117080,10 +116384,10 @@ "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": 190, + "stars": 205, "dependencies": 2 }, "name": "@callstack/polygen", @@ -117092,7 +116396,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Module for running WebAssembly modules, with native performance.", "topics": [ - "react-native", "ios", "android", "webassembly", @@ -117108,21 +116411,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 23, - "weekDownloads": 9, + "downloads": 36, + "weekDownloads": 1, "size": 467033, "latestRelease": "0.2.1", "latestReleaseDate": "2025-03-20T17:11:28.160Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.39, - "topicSearchString": "react-native ios android webassembly wasm" + "popularity": -0.725, + "topicSearchString": "ios android webassembly wasm" }, { "githubUrl": "https://github.com/react-native-documents/document-picker/tree/main/packages/document-viewer", @@ -117143,13 +116448,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-09T11:55:00Z", + "updatedAt": "2025-10-16T08:23:33Z", "createdAt": "2016-06-28T14:58:12Z", - "pushedAt": "2025-09-09T11:55:00Z", - "forks": 423, - "issues": 11, + "pushedAt": "2025-10-16T08:23:33Z", + "forks": 429, + "issues": 10, "subscribers": 10, - "stars": 1459, + "stars": 1470, "dependencies": 0 }, "name": "@react-native-documents/viewer", @@ -117157,7 +116462,6 @@ "isPrivate": false, "description": "A react native interface to preview documents", "topics": [ - "react-native", "document", "viewer", "preview", @@ -117173,24 +116477,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 14426, - "weekDownloads": 1943, - "size": 38888, - "latestRelease": "1.0.2", - "latestReleaseDate": "2025-09-12T20:50:05.385Z" + "downloads": 27422, + "weekDownloads": 6784, + "size": 38525, + "latestRelease": "1.0.3", + "latestReleaseDate": "2025-09-20T20:10:53.419Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.114, - "topicSearchString": "react-native document viewer preview quicklook" + "popularity": 0.21, + "topicSearchString": "document viewer preview quicklook" }, { "githubUrl": "https://github.com/software-mansion-labs/react-native-css-animations", @@ -117213,7 +116518,7 @@ "forks": 0, "issues": 0, "subscribers": 3, - "stars": 56, + "stars": 57, "dependencies": 0 }, "name": "react-native-css-animations", @@ -117222,7 +116527,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native CSS Animation presets for Reanimated 4", "topics": [ - "react-native", "reanimated", "css-animations", "css-transitions", @@ -117239,12 +116543,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-css-animations", "npm": { - "downloads": 16, - "weekDownloads": 0, + "downloads": 33, + "weekDownloads": 3, "size": 27378, "latestRelease": "0.1.1", "latestReleaseDate": "2025-01-22T11:12:49.727Z" @@ -117254,13 +116559,14 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native reanimated css-animations css-transitions ios android" + "popularity": -0.664, + "topicSearchString": "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", @@ -117275,10 +116581,10 @@ "updatedAt": "2025-07-31T05:34:30Z", "createdAt": "2021-08-08T09:05:43Z", "pushedAt": "2025-07-31T05:34:30Z", - "forks": 35, + "forks": 36, "issues": 27, "subscribers": 5, - "stars": 64, + "stars": 65, "dependencies": 0 }, "name": "react-native-tiktok", @@ -117287,7 +116593,6 @@ "registry": "https://registry.npmjs.org/", "description": "Get authorized using 𝗧𝗶𝗸𝗧𝗼𝗸 📱", "topics": [ - "react-native", "ios", "android" ], @@ -117301,12 +116606,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-tiktok", "npm": { - "downloads": 868, - "weekDownloads": 80, + "downloads": 999, + "weekDownloads": 305, "size": 31613, "latestRelease": "2.1.16", "latestReleaseDate": "2025-07-31T05:26:23.524Z" @@ -117315,8 +116622,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.672, - "topicSearchString": "react-native ios android" + "popularity": -0.49, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/otago-dev/otago", @@ -117333,9 +116640,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-01T16:30:57Z", + "updatedAt": "2025-10-20T08:26:22Z", "createdAt": "2024-03-14T16:15:00Z", - "pushedAt": "2025-09-01T16:30:57Z", + "pushedAt": "2025-10-20T08:26:22Z", "forks": 0, "issues": 0, "subscribers": 1, @@ -117350,15 +116657,16 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "otago", "npm": { - "downloads": 241, - "weekDownloads": 11, - "size": 40604, - "latestRelease": "2.2.9", - "latestReleaseDate": "2025-09-01T16:31:02.728Z" + "downloads": 245, + "weekDownloads": 15, + "size": 40605, + "latestRelease": "2.2.10", + "latestReleaseDate": "2025-10-01T08:15:51.458Z" }, "score": 38, "matchingScoreModifiers": [ @@ -117366,7 +116674,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.961, + "popularity": -0.947, "topicSearchString": "" }, { @@ -117395,10 +116703,10 @@ "updatedAt": "2025-05-12T06:00:54Z", "createdAt": "2024-04-20T06:22:22Z", "pushedAt": "2025-05-12T06:00:54Z", - "forks": 31, - "issues": 10, + "forks": 35, + "issues": 12, "subscribers": 3, - "stars": 205, + "stars": 222, "dependencies": 1 }, "name": "@siteed/expo-audio-stream", @@ -117407,7 +116715,6 @@ "registry": "https://registry.npmjs.org", "description": "DEPRECATED: Use @siteed/expo-audio-studio instead. This package now serves as a compatibility wrapper.", "topics": [ - "react-native", "expo", "audio", "deprecated" @@ -117422,11 +116729,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 344, - "weekDownloads": 28, + "downloads": 1184, + "weekDownloads": 41, "size": 8998, "latestRelease": "2.2.0", "latestReleaseDate": "2025-03-04T09:08:25.201Z" @@ -117436,8 +116744,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.68, - "topicSearchString": "react-native expo audio deprecated" + "popularity": 0.029, + "topicSearchString": "expo audio deprecated" }, { "githubUrl": "https://github.com/deeeed/expo-audio-stream/tree/main/packages/expo-audio-ui", @@ -117462,10 +116770,10 @@ "updatedAt": "2025-07-31T07:29:17Z", "createdAt": "2024-04-20T06:22:22Z", "pushedAt": "2025-07-31T07:29:17Z", - "forks": 31, - "issues": 10, + "forks": 35, + "issues": 12, "subscribers": 3, - "stars": 205, + "stars": 222, "dependencies": 0 }, "name": "@siteed/expo-audio-ui", @@ -117474,7 +116782,6 @@ "registry": "https://registry.npmjs.org/", "description": "UI experiments for @siteed/expo-audio-studio", "topics": [ - "react-native", "expo", "expo-audio-studio", "expoaudiostudio" @@ -117489,11 +116796,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 881, - "weekDownloads": 29, + "downloads": 999, + "weekDownloads": 199, "size": 196346, "latestRelease": "0.7.0", "latestReleaseDate": "2025-07-31T07:29:39.708Z" @@ -117503,8 +116811,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.722, - "topicSearchString": "react-native expo expo-audio-studio expoaudiostudio" + "popularity": -0.581, + "topicSearchString": "expo expo-audio-studio expoaudiostudio" }, { "githubUrl": "https://github.com/gitn00b1337/expo-widgets", @@ -117515,6 +116823,7 @@ "ios": true, "android": true, "web": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/mike-stewart-dev/expo-widgets", @@ -117529,10 +116838,10 @@ "updatedAt": "2025-06-19T13:18:56Z", "createdAt": "2023-07-24T17:39:05Z", "pushedAt": "2025-06-19T13:18:56Z", - "forks": 33, - "issues": 7, + "forks": 34, + "issues": 9, "subscribers": 2, - "stars": 277, + "stars": 289, "dependencies": 0 }, "name": "@bittingz/expo-widgets", @@ -117540,7 +116849,6 @@ "isPrivate": false, "description": "Bringing widget functionality to expo!", "topics": [ - "react-native", "expo", "expo-widgets", "expowidgets" @@ -117555,11 +116863,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 8080, - "weekDownloads": 1474, + "downloads": 9043, + "weekDownloads": 1847, "size": 148730, "latestRelease": "3.0.2", "latestReleaseDate": "2025-07-07T17:51:48.934Z" @@ -117569,8 +116879,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.155, - "topicSearchString": "react-native expo expo-widgets expowidgets" + "popularity": 0.174, + "topicSearchString": "expo expo-widgets expowidgets" }, { "githubUrl": "https://github.com/statelyai/xstate/tree/main/packages/core", @@ -117594,13 +116904,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-30T14:31:20Z", + "updatedAt": "2025-10-11T04:49:56Z", "createdAt": "2015-09-14T15:04:15Z", - "pushedAt": "2025-08-30T14:31:20Z", - "forks": 1314, + "pushedAt": "2025-10-11T04:49:56Z", + "forks": 1321, "issues": 109, - "subscribers": 190, - "stars": 28708, + "subscribers": 188, + "stars": 28827, "dependencies": 0 }, "name": "xstate", @@ -117627,14 +116937,15 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 10695271, - "weekDownloads": 1778105, - "size": 2181153, - "latestRelease": "5.21.0", - "latestReleaseDate": "2025-08-30T14:33:00.421Z" + "downloads": 10138952, + "weekDownloads": 2209580, + "size": 2189291, + "latestRelease": "5.23.0", + "latestReleaseDate": "2025-10-11T04:51:32.726Z" }, "score": 86, "matchingScoreModifiers": [ @@ -117645,7 +116956,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.141, + "popularity": 0.185, "topicSearchString": "statechart state-machine finite-state-machine finite-automata scxml state interpreter graph" }, { @@ -117666,13 +116977,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-22T00:13:33Z", + "updatedAt": "2025-10-17T20:11:12Z", "createdAt": "2015-09-14T15:04:15Z", - "pushedAt": "2025-08-22T00:13:33Z", - "forks": 1314, + "pushedAt": "2025-10-17T20:11:12Z", + "forks": 1321, "issues": 109, - "subscribers": 190, - "stars": 28708, + "subscribers": 188, + "stars": 28827, "dependencies": 0 }, "name": "@xstate/store", @@ -117693,14 +117004,15 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 154064, - "weekDownloads": 27535, - "size": 106187, - "latestRelease": "3.9.2", - "latestReleaseDate": "2025-08-22T00:15:08.923Z" + "downloads": 209833, + "weekDownloads": 57955, + "size": 110740, + "latestRelease": "3.11.1", + "latestReleaseDate": "2025-10-17T20:12:55.319Z" }, "score": 86, "matchingScoreModifiers": [ @@ -117711,7 +117023,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.152, + "popularity": 0.235, "topicSearchString": "store state" }, { @@ -117735,10 +117047,10 @@ "updatedAt": "2025-06-21T19:38:14Z", "createdAt": "2015-09-14T15:04:15Z", "pushedAt": "2025-06-21T19:38:14Z", - "forks": 1314, + "forks": 1321, "issues": 109, - "subscribers": 190, - "stars": 28708, + "subscribers": 188, + "stars": 28827, "dependencies": 2 }, "name": "@xstate/react", @@ -117752,7 +117064,6 @@ "scxml", "state", "graph", - "react", "hook" ], "license": { @@ -117765,11 +117076,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5941571, - "weekDownloads": 1014976, + "downloads": 5743423, + "weekDownloads": 1282786, "size": 36230, "latestRelease": "6.0.0", "latestReleaseDate": "2025-06-19T16:18:00.485Z" @@ -117782,8 +117094,8 @@ "Lots of open issues", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "state machine statechart scxml state graph react hook" + "popularity": 0.19, + "topicSearchString": "state machine statechart scxml state graph hook" }, { "githubUrl": "https://github.com/EdgarJMesquita/expo-totp", @@ -117820,7 +117132,6 @@ "isPrivate": false, "description": "Allow TOTP(Time-based One-Time Password) code generation for react native expo", "topics": [ - "react-native", "expo", "expo-totp", "expototp" @@ -117835,12 +117146,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-totp", "npm": { - "downloads": 2, - "weekDownloads": 0, + "downloads": 11, + "weekDownloads": 1, "size": 29133, "latestRelease": "2.0.0", "latestReleaseDate": "2025-02-08T19:49:56.478Z" @@ -117850,8 +117163,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native expo expo-totp expototp" + "popularity": -0.9, + "topicSearchString": "expo expo-totp expototp" }, { "githubUrl": "https://github.com/sellpy/react-native-scroll-anchor", @@ -117888,7 +117201,6 @@ "registry": "https://registry.npmjs.org/", "description": "Hooks and utilities to simplify scrolling to elements in React Native.", "topics": [ - "react-native", "scroll", "anchor", "scroll-to", @@ -117905,11 +117217,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1530, - "weekDownloads": 162, + "downloads": 1457, + "weekDownloads": 448, "size": 81706, "latestRelease": "0.1.1", "latestReleaseDate": "2024-04-24T14:55:20.994Z" @@ -117919,8 +117232,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.16, - "topicSearchString": "react-native scroll anchor scroll-to ios android" + "popularity": 0.012, + "topicSearchString": "scroll anchor scroll-to ios android" }, { "githubUrl": "https://github.com/tlow92/expo-key-event", @@ -117946,9 +117259,9 @@ "createdAt": "2024-12-29T21:20:39Z", "pushedAt": "2025-04-25T07:45:17Z", "forks": 5, - "issues": 7, + "issues": 8, "subscribers": 3, - "stars": 26, + "stars": 28, "dependencies": 0 }, "name": "expo-key-event", @@ -117956,7 +117269,6 @@ "isPrivate": false, "description": "Provides an interface for reading key events such as from external bluetooth keyboards on Android, iOS and Web.", "topics": [ - "react-native", "expo", "expo-key-event", "expokeyevent", @@ -117976,22 +117288,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-key-event", "npm": { - "downloads": 1439, - "weekDownloads": 201, + "downloads": 1445, + "weekDownloads": 426, "size": 67702, "latestRelease": "1.4.0", "latestReleaseDate": "2025-04-25T07:44:59.689Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": 0.119, - "topicSearchString": "react-native expo expo-key-event expokeyevent keyboard-event key-event hid-event expo-module key-events" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.251, + "topicSearchString": "expo expo-key-event expokeyevent keyboard-event key-event hid-event expo-module key-events" }, { "githubUrl": "https://github.com/ShinMini/react-native-inner-shadow", @@ -118016,9 +117328,9 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-06-17T00:15:51Z", + "updatedAt": "2025-09-17T05:52:45Z", "createdAt": "2025-01-22T00:20:09Z", - "pushedAt": "2025-06-17T00:15:51Z", + "pushedAt": "2025-09-17T05:52:45Z", "forks": 0, "issues": 1, "subscribers": 1, @@ -118031,7 +117343,6 @@ "registry": "https://registry.npmjs.org/", "description": "Inner Shadows with linear design UI in react-native", "topics": [ - "react-native", "inner-shadow", "android", "ios", @@ -118045,7 +117356,6 @@ "gradient", "linear-gradient", "neumorphism", - "react", "reanimated", "skia", "skia-canvas", @@ -118061,22 +117371,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-inner-shadow", "npm": { - "downloads": 914, - "weekDownloads": 134, - "size": 234695, - "latestRelease": "2.3.1", - "latestReleaseDate": "2025-06-17T00:17:46.584Z" + "downloads": 1061, + "weekDownloads": 210, + "size": 277259, + "latestRelease": "2.4.0", + "latestReleaseDate": "2025-09-17T06:07:50.629Z" }, "score": 43, "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.875, - "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" + "popularity": -0.081, + "topicSearchString": "inner-shadow android ios linear-shadow linear-inner-shadow inset-shadow shadow shadow-pressable shadow-toggle shadows gradient linear-gradient neumorphism reanimated skia skia-canvas reactnativeinnershadow" }, { "githubUrl": "https://github.com/WrathChaos/react-native-segmented-control-2", @@ -118105,10 +117416,10 @@ "updatedAt": "2025-09-08T14:44:25Z", "createdAt": "2022-06-05T14:18:21Z", "pushedAt": "2025-09-08T14:44:25Z", - "forks": 6, + "forks": 7, "issues": 1, - "subscribers": 2, - "stars": 52, + "subscribers": 1, + "stars": 54, "dependencies": 0 }, "name": "react-native-segmented-control-2", @@ -118120,8 +117431,6 @@ "segmented-control-2", "freakycoder", "kuray", - "react", - "react-native", "javascript", "ui-lib", "rn", @@ -118144,30 +117453,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-segmented-control-2", "npm": { - "downloads": 6401, - "weekDownloads": 1332, + "downloads": 6298, + "weekDownloads": 1228, "size": 59474, "latestRelease": "2.1.1", "latestReleaseDate": "2025-09-08T14:51:04.891Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": 0.177, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.166, + "topicSearchString": "segmented-control segmented-control-2 freakycoder kuray javascript ui-lib rn android app-dev app-development apple application development google ios" }, { "githubUrl": "https://github.com/s77rt/react-native-markdown", "npmPkg": "@s77rt/react-native-markdown", - "images": [ - "https://raw.githubusercontent.com/s77rt/react-native-markdown/main/assets/demo.gif" - ], "ios": true, "android": true, "web": true, @@ -118189,7 +117493,7 @@ "forks": 0, "issues": 9, "subscribers": 1, - "stars": 28, + "stars": 30, "dependencies": 0 }, "name": "@s77rt/react-native-markdown", @@ -118197,7 +117501,6 @@ "isPrivate": false, "description": "Drop-in replacements for React Native components with a built-in Markdown formatter.", "topics": [ - "react-native", "markdown" ], "license": { @@ -118210,19 +117513,23 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 58, - "weekDownloads": 9, + "downloads": 76, + "weekDownloads": 11, "size": 449017, "latestRelease": "1.0.0", "latestReleaseDate": "2025-04-19T20:50:44.058Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": -0.612, - "topicSearchString": "react-native markdown" + "score": 35, + "matchingScoreModifiers": [ + "Not updated recently" + ], + "popularity": -0.621, + "topicSearchString": "markdown" }, { "githubUrl": "https://github.com/s77rt/react-native-viewshot", @@ -118247,7 +117554,7 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 1, + "stars": 2, "dependencies": 0 }, "name": "@s77rt/react-native-viewshot", @@ -118255,7 +117562,6 @@ "isPrivate": false, "description": "A React Native module to capture views.", "topics": [ - "react-native", "viewshot" ], "license": { @@ -118268,11 +117574,13 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 12, - "weekDownloads": 4, + "downloads": 42, + "weekDownloads": 1, "size": 11635, "latestRelease": "0.0.2", "latestReleaseDate": "2024-09-12T13:14:00.731Z" @@ -118281,8 +117589,8 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.6, - "topicSearchString": "react-native viewshot" + "popularity": -0.978, + "topicSearchString": "viewshot" }, { "githubUrl": "https://github.com/s77rt/react-native-contacts", @@ -118307,7 +117615,7 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 3, + "stars": 4, "dependencies": 0 }, "name": "@s77rt/react-native-contacts", @@ -118315,7 +117623,6 @@ "isPrivate": false, "description": "A React Native module to get contacts.", "topics": [ - "react-native", "contacts" ], "license": { @@ -118328,11 +117635,13 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 90, - "weekDownloads": 11, + "downloads": 106, + "weekDownloads": 13, "size": 20625, "latestRelease": "0.1.1", "latestReleaseDate": "2024-09-24T00:58:39.484Z" @@ -118341,8 +117650,8 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.895, - "topicSearchString": "react-native contacts" + "popularity": -0.892, + "topicSearchString": "contacts" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-audio", @@ -118355,6 +117664,7 @@ "tvos": true, "web": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -118366,13 +117676,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-13T10:03:35Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-13T10:03:35Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-audio", @@ -118380,7 +117690,6 @@ "isPrivate": false, "description": "A cross-platform audio library for React Native and Expo apps.", "topics": [ - "react-native", "expo", "expo-audio", "audio", @@ -118397,27 +117706,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-audio", "npm": { - "downloads": 365546, - "weekDownloads": 58665, - "size": 630493, - "latestRelease": "1.0.11", - "latestReleaseDate": "2025-09-11T20:26:48.483Z" + "downloads": 492887, + "weekDownloads": 103762, + "size": 639220, + "latestRelease": "1.0.13", + "latestReleaseDate": "2025-09-18T21:32:55.128Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.136, - "topicSearchString": "react-native expo expo-audio audio ios android" + "popularity": 0.179, + "topicSearchString": "expo expo-audio audio ios android" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-maps", @@ -118427,6 +117737,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -118438,13 +117749,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-08T12:16:39Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-08T12:16:39Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-maps", @@ -118452,7 +117763,6 @@ "isPrivate": false, "description": "Provides a Map component that uses Google Maps on Android and Apple Maps on iOS.", "topics": [ - "react-native", "expo", "ui-components" ], @@ -118466,27 +117776,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-maps", "npm": { - "downloads": 42588, - "weekDownloads": 6798, - "size": 335675, - "latestRelease": "0.12.7", - "latestReleaseDate": "2025-09-11T20:24:16.635Z" + "downloads": 52716, + "weekDownloads": 11185, + "size": 336551, + "latestRelease": "0.12.8", + "latestReleaseDate": "2025-10-01T00:22:45.736Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.136, - "topicSearchString": "react-native expo ui-components" + "popularity": 0.18, + "topicSearchString": "expo ui-components" }, { "githubUrl": "https://github.com/AakashThakur23102000/useRealmStorage-dexterverse", @@ -118520,12 +117831,11 @@ "isPrivate": false, "description": "A lightweight wrapper around RealmDB for managing key-value storage in React Native, similar to AsyncStorage. This package provides an easy-to-use interface for storing, retrieving, and managing persistent data.", "topics": [ - "react-native", "async-storage", "asyncstorage", "storage", "realm", - "@realm/react", + "@realm/", "hooks" ], "license": { @@ -118538,23 +117848,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "userealmstorage-dexterverse", "npm": { - "downloads": 2, + "downloads": 28, "weekDownloads": 0, "size": 9018, "latestRelease": "1.0.6", "latestReleaseDate": "2025-02-19T10:12:22.723Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], "popularity": -1, - "topicSearchString": "react-native async-storage asyncstorage storage realm @realm/react hooks" + "topicSearchString": "async-storage asyncstorage storage realm @realm/ hooks" }, { "githubUrl": "https://github.com/AppZung/react-native-code-push", @@ -118578,10 +117888,10 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-19T08:39:01Z", + "updatedAt": "2025-10-14T18:38:18Z", "createdAt": "2025-01-13T13:22:38Z", - "pushedAt": "2025-08-19T08:39:01Z", - "forks": 13, + "pushedAt": "2025-10-14T18:38:18Z", + "forks": 14, "issues": 3, "subscribers": 4, "stars": 101, @@ -118594,7 +117904,6 @@ "topics": [ "appzung", "codepush", - "react-native", "code", "push", "ota", @@ -118605,7 +117914,6 @@ "appcenter", "code-push", "ota-update", - "react", "updates" ], "license": { @@ -118618,22 +117926,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 3584, - "weekDownloads": 565, - "size": 1303217, - "latestRelease": "11.0.0", - "latestReleaseDate": "2025-08-19T08:43:39.580Z" + "downloads": 3088, + "weekDownloads": 583, + "size": 1303828, + "latestRelease": "11.0.1", + "latestReleaseDate": "2025-10-14T18:47:30.650Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.134, - "topicSearchString": "appzung codepush react-native code push ota live-updates hot-updates expo-updates expo-ota appcenter code-push ota-update react updates" + "popularity": 0.161, + "topicSearchString": "appzung codepush code push ota live-updates hot-updates expo-updates expo-ota appcenter code-push ota-update updates" }, { "githubUrl": "https://github.com/kuatsu/react-native-boost/tree/master/packages/react-native-boost", @@ -118660,9 +117968,9 @@ "createdAt": "2025-02-23T00:58:20Z", "pushedAt": "2025-06-11T23:10:05Z", "forks": 7, - "issues": 2, + "issues": 1, "subscribers": 4, - "stars": 400, + "stars": 406, "dependencies": 4 }, "name": "react-native-boost", @@ -118671,7 +117979,6 @@ "registry": "https://registry.npmjs.org", "description": "🚀 Boost your React Native app's performance with a single line of code", "topics": [ - "react-native", "ios", "android", "performance", @@ -118689,23 +117996,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-boost", "npm": { - "downloads": 12800, - "weekDownloads": 2038, + "downloads": 19575, + "weekDownloads": 6367, "size": 223892, "latestRelease": "0.6.2", "latestReleaseDate": "2025-06-11T21:28:16.702Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.135, - "topicSearchString": "react-native ios android performance optimization bundle optimize" + "popularity": 0.527, + "topicSearchString": "ios android performance optimization bundle optimize" }, { "githubUrl": "https://github.com/fabrizioiacobucci/expo-googlenearby-connection", @@ -118739,7 +118046,6 @@ "isPrivate": false, "description": "Expo module for Google Nearby Connection SDK", "topics": [ - "react-native", "expo", "expo-googlenearby-connection", "expogooglenearbyconnection", @@ -118759,23 +118065,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-googlenearby-connection", "npm": { - "downloads": 3, + "downloads": 16, "weekDownloads": 0, "size": 206419, "latestRelease": "0.1.4", "latestReleaseDate": "2025-01-28T10:47:58.560Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], "popularity": -1, - "topicSearchString": "react-native expo expo-googlenearby-connection expogooglenearbyconnection nearby-connection android google-nearby google-nearby-connections kotlin-android" + "topicSearchString": "expo expo-googlenearby-connection expogooglenearbyconnection nearby-connection android google-nearby google-nearby-connections kotlin-android" }, { "githubUrl": "https://github.com/maniac-tech/react-native-expo-read-sms", @@ -118796,9 +118103,9 @@ "createdAt": "2022-07-02T15:54:12Z", "pushedAt": "2025-04-22T17:23:41Z", "forks": 31, - "issues": 11, + "issues": 13, "subscribers": 1, - "stars": 73, + "stars": 74, "dependencies": 0 }, "name": "@maniac-tech/react-native-expo-read-sms", @@ -118806,7 +118113,6 @@ "isPrivate": false, "description": "Library to read incoming SMS in Android for Expo (React Native)", "topics": [ - "react-native", "sms", "read-sms", "android-sms", @@ -118824,21 +118130,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 158, - "weekDownloads": 27, + "downloads": 297, + "weekDownloads": 29, "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.604, - "topicSearchString": "react-native sms read-sms android-sms android expo sms-notification" + "popularity": -0.666, + "topicSearchString": "sms read-sms android-sms android expo sms-notification" }, { "githubUrl": "https://github.com/Ucekay/react-native-image-playground", @@ -118864,7 +118172,7 @@ "forks": 2, "issues": 0, "subscribers": 3, - "stars": 95, + "stars": 96, "dependencies": 0 }, "name": "react-native-apple-image-playground", @@ -118872,7 +118180,6 @@ "isPrivate": false, "description": "A React Native package to integrate Apple's Image Playground API, enabling AI-powered image generation for iOS 18.2+.", "topics": [ - "react-native", "expo", "image-playground", "reactnativeimageplayground" @@ -118887,10 +118194,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 1, + "downloads": 18, "weekDownloads": 0, "size": 22560, "latestRelease": "0.2.3", @@ -118902,7 +118211,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native expo image-playground reactnativeimageplayground" + "topicSearchString": "expo image-playground reactnativeimageplayground" }, { "githubUrl": "https://github.com/niteshbalusu11/react-native-nitro-tor", @@ -118922,13 +118231,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-24T15:26:49Z", + "updatedAt": "2025-09-26T15:31:09Z", "createdAt": "2025-02-16T20:45:13Z", - "pushedAt": "2025-07-24T15:26:49Z", + "pushedAt": "2025-09-26T15:31:09Z", "forks": 1, "issues": 0, "subscribers": 2, - "stars": 15, + "stars": 18, "dependencies": 0 }, "name": "react-native-nitro-tor", @@ -118937,7 +118246,6 @@ "registry": "https://registry.npmjs.org/", "description": "A Tor Daemon and Onion Routing Client for React Native using pure C++ NitroModules.", "topics": [ - "react-native", "ios", "android", "tor", @@ -118957,22 +118265,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-tor", "npm": { - "downloads": 87, - "weekDownloads": 14, - "size": 201597504, - "latestRelease": "0.2.8", - "latestReleaseDate": "2025-07-24T15:52:32.893Z" + "downloads": 316, + "weekDownloads": 84, + "size": 201598185, + "latestRelease": "0.3.0", + "latestReleaseDate": "2025-09-26T16:08:54.549Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.86, - "topicSearchString": "react-native ios android tor nitro-modules new-architecture onion onion-service socks5" + "popularity": -0.773, + "topicSearchString": "ios android tor nitro-modules new-architecture onion onion-service socks5" }, { "githubUrl": "https://github.com/danilrafiqi/react-native-stepper-ui", @@ -119011,7 +118322,6 @@ "isPrivate": false, "description": "A simple and fully customizable React Native component to create stepper ui.", "topics": [ - "react-native", "ios", "android" ], @@ -119025,12 +118335,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-stepper-ui", "npm": { - "downloads": 1291, - "weekDownloads": 198, + "downloads": 1059, + "weekDownloads": 227, "size": 12301, "latestRelease": "0.0.9", "latestReleaseDate": "2020-07-06T05:11:50.446Z" @@ -119041,8 +118352,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.131, - "topicSearchString": "react-native ios android" + "popularity": 0.182, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/LegendApp/legend-list", @@ -119071,13 +118382,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-09T08:44:40Z", + "updatedAt": "2025-10-21T15:16:07Z", "createdAt": "2024-11-20T09:02:32Z", - "pushedAt": "2025-09-09T08:44:40Z", - "forks": 74, - "issues": 86, + "pushedAt": "2025-10-21T15:16:07Z", + "forks": 81, + "issues": 89, "subscribers": 18, - "stars": 2537, + "stars": 2649, "dependencies": 1 }, "name": "@legendapp/list", @@ -119086,8 +118397,6 @@ "registry": "https://registry.npmjs.org/", "description": "A high-performance list component for React Native", "topics": [ - "react", - "react-native", "list" ], "license": { @@ -119100,25 +118409,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 161624, - "weekDownloads": 24208, - "size": 287892, - "latestRelease": "2.0.4", - "latestReleaseDate": "2025-09-08T17:21:15.504Z" + "downloads": 203235, + "weekDownloads": 43652, + "size": 302965, + "latestRelease": "2.0.14", + "latestReleaseDate": "2025-10-21T15:16:06.970Z" }, - "score": 62, + "score": 65, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.127, - "topicSearchString": "react react-native list" + "popularity": 0.183, + "topicSearchString": "list" }, { "githubUrl": "https://github.com/colaquecez/expo-selectable-text", @@ -119152,7 +118461,6 @@ "isPrivate": false, "description": "A React Native library that enables customizable text selection functionality on Android by using Kotlin.", "topics": [ - "react-native", "expo", "expo-selectable-text", "exposelectabletext" @@ -119167,23 +118475,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-selectable-text", "npm": { - "downloads": 81, - "weekDownloads": 19, + "downloads": 67, + "weekDownloads": 16, "size": 20918, "latestRelease": "0.4.0", "latestReleaseDate": "2025-01-19T22:22:22.513Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.8, - "topicSearchString": "react-native expo expo-selectable-text exposelectabletext" + "popularity": -0.787, + "topicSearchString": "expo expo-selectable-text exposelectabletext" }, { "githubUrl": "https://github.com/huextrat/react-native-ios-translate-sheet", @@ -119203,9 +118512,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-13T19:56:47Z", + "updatedAt": "2025-10-21T01:44:25Z", "createdAt": "2025-02-27T19:32:47Z", - "pushedAt": "2025-09-13T19:56:47Z", + "pushedAt": "2025-10-21T01:44:25Z", "forks": 1, "issues": 1, "subscribers": 1, @@ -119218,7 +118527,6 @@ "registry": "https://registry.npmjs.org/", "description": "SwiftUI Translate Sheet on React Native", "topics": [ - "react-native", "ios", "translate", "sheet", @@ -119234,12 +118542,14 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-ios-translate-sheet", "npm": { - "downloads": 109, - "weekDownloads": 9, + "downloads": 73, + "weekDownloads": 2, "size": 77692, "latestRelease": "1.4.8", "latestReleaseDate": "2025-08-28T02:15:26.394Z" @@ -119248,8 +118558,8 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.678, - "topicSearchString": "react-native ios translate sheet swiftui" + "popularity": -0.726, + "topicSearchString": "ios translate sheet swiftui" }, { "githubUrl": "https://github.com/huextrat/react-native-ios-translate-tasks", @@ -119269,13 +118579,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-13T00:04:42Z", + "updatedAt": "2025-10-21T02:26:29Z", "createdAt": "2025-02-28T15:31:16Z", - "pushedAt": "2025-09-13T00:04:42Z", + "pushedAt": "2025-10-21T02:26:29Z", "forks": 0, "issues": 1, "subscribers": 1, - "stars": 17, + "stars": 19, "dependencies": 0 }, "name": "react-native-ios-translate-tasks", @@ -119284,7 +118594,6 @@ "registry": "https://registry.npmjs.org/", "description": "SwiftUI Translate Tasks on React Native", "topics": [ - "react-native", "ios", "android", "translate", @@ -119302,12 +118611,14 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-ios-translate-tasks", "npm": { - "downloads": 152, - "weekDownloads": 11, + "downloads": 342, + "weekDownloads": 103, "size": 79972, "latestRelease": "1.1.7", "latestReleaseDate": "2025-08-28T02:05:31.030Z" @@ -119316,8 +118627,8 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.937, - "topicSearchString": "react-native ios android translate task tasks swiftui" + "popularity": -0.742, + "topicSearchString": "ios android translate task tasks swiftui" }, { "githubUrl": "https://github.com/raouldandresy/react-native-momentum-carousel", @@ -119351,10 +118662,7 @@ "isPrivate": false, "description": "A React Native carousel component enables smooth and interactive image or content sliders with swiping capabilities. Ideal for showcasing multiple items or images in a compact space, this carousel can be customized with features like infinite scrolling, pagination, and custom animations. It supports both horizontal and vertical orientations and allows for seamless user interaction, making it an excellent tool for creating engaging mobile applications. Additionally, provides options to integrate touch gestures and configure autoplay settings.", "topics": [ - "react-native", - "carousel", - "react", - "native" + "carousel" ], "license": { "key": "mit", @@ -119366,12 +118674,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-momentum-carousel", "npm": { - "downloads": 292, - "weekDownloads": 74, + "downloads": 920, + "weekDownloads": 70, "size": 137141, "latestRelease": "2.0.0", "latestReleaseDate": "2025-03-02T09:54:32.622Z" @@ -119381,8 +118690,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.782, - "topicSearchString": "react-native carousel react native" + "popularity": -0.935, + "topicSearchString": "carousel" }, { "githubUrl": "https://github.com/anday013/react-native-phone-entry", @@ -119409,13 +118718,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-14T03:08:04Z", + "updatedAt": "2025-09-28T21:59:43Z", "createdAt": "2025-02-10T23:02:18Z", - "pushedAt": "2025-08-14T03:08:04Z", - "forks": 4, - "issues": 4, + "pushedAt": "2025-09-28T21:59:43Z", + "forks": 5, + "issues": 6, "subscribers": 1, - "stars": 53, + "stars": 58, "dependencies": 3 }, "name": "react-native-phone-entry", @@ -119424,14 +118733,12 @@ "registry": "https://registry.npmjs.org/", "description": "Simple and fully modifiable Phone Number Input Component for React Native", "topics": [ - "react-native", "ios", "android", "component", "expo", "input", "phone-input", - "react", "app" ], "license": { @@ -119444,20 +118751,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-phone-entry", "npm": { - "downloads": 1896, - "weekDownloads": 344, - "size": 178744, - "latestRelease": "0.2.3", - "latestReleaseDate": "2025-06-25T22:37:59.291Z" + "downloads": 3175, + "weekDownloads": 498, + "size": 179394, + "latestRelease": "0.2.4", + "latestReleaseDate": "2025-09-28T21:59:40.876Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": 0.154, - "topicSearchString": "react-native ios android component expo input phone-input react app" + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": 0.133, + "topicSearchString": "ios android component expo input phone-input app" }, { "githubUrl": "https://github.com/dayaki/react-native-app-shortcuts", @@ -119494,7 +118805,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native package for iOS UIApplicationShortcutItem and Android App Shortcuts", "topics": [ - "react-native", "ios", "android", "shortcuts", @@ -119512,11 +118822,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 12, - "weekDownloads": 0, + "downloads": 34, + "weekDownloads": 7, "size": 47753, "latestRelease": "1.1.0", "latestReleaseDate": "2025-03-01T03:18:33.661Z" @@ -119525,8 +118837,8 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -1, - "topicSearchString": "react-native ios android shortcuts quick-actions uiapplicationshortcutitem app-shortcuts" + "popularity": -0.825, + "topicSearchString": "ios android shortcuts quick-actions uiapplicationshortcutitem app-shortcuts" }, { "githubUrl": "https://github.com/BrijenMakwana/react-native-multistep", @@ -119557,10 +118869,10 @@ "updatedAt": "2025-02-21T04:41:38Z", "createdAt": "2025-02-03T10:36:19Z", "pushedAt": "2025-02-21T04:41:38Z", - "forks": 0, + "forks": 1, "issues": 1, "subscribers": 1, - "stars": 2, + "stars": 3, "dependencies": 0 }, "name": "@brijen/react-native-multistep", @@ -119569,7 +118881,6 @@ "registry": "https://registry.npmjs.org/", "description": "A lightweight multi-step view component for React Native with smooth transitions using Reanimated", "topics": [ - "react-native", "forms", "multi-step-form", "multi-step", @@ -119590,22 +118901,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 54, - "weekDownloads": 9, + "downloads": 63, + "weekDownloads": 11, "size": 138119, "latestRelease": "1.0.0", "latestReleaseDate": "2025-02-21T04:42:04.698Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.85, - "topicSearchString": "react-native forms multi-step-form multi-step stepper wizard reanimated ui ios android" + "popularity": -0.843, + "topicSearchString": "forms multi-step-form multi-step stepper wizard reanimated ui ios android" }, { "githubUrl": "https://github.com/mhpdev-com/react-native-speech", @@ -119627,13 +118938,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-13T20:21:41Z", + "updatedAt": "2025-10-17T20:36:53Z", "createdAt": "2025-02-21T07:12:03Z", - "pushedAt": "2025-09-13T20:21:41Z", - "forks": 7, + "pushedAt": "2025-10-17T20:36:53Z", + "forks": 8, "issues": 0, "subscribers": 1, - "stars": 37, + "stars": 44, "dependencies": 0 }, "name": "@mhpdev/react-native-speech", @@ -119642,7 +118953,6 @@ "registry": "https://registry.npmjs.org/", "description": "A high-performance React Native library for text-to-speech on iOS and Android.", "topics": [ - "react-native", "ios", "android", "speech", @@ -119664,21 +118974,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 445, - "weekDownloads": 70, - "size": 162123, - "latestRelease": "1.2.0", - "latestReleaseDate": "2025-09-09T18:40:55.913Z" + "downloads": 832, + "weekDownloads": 130, + "size": 129211, + "latestRelease": "1.3.0", + "latestReleaseDate": "2025-10-17T20:34:36.282Z" }, "score": 51, "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.615, - "topicSearchString": "react-native ios android speech tts text-to-speech voice highlighted highlight-text highlighter highlighted-text" + "popularity": -0.617, + "topicSearchString": "ios android speech tts text-to-speech voice highlighted highlight-text highlighter highlighted-text" }, { "githubUrl": "https://github.com/TomAtterton/expo-translate-text", @@ -119705,10 +119017,10 @@ "updatedAt": "2025-03-06T09:09:39Z", "createdAt": "2025-03-05T10:52:50Z", "pushedAt": "2025-03-06T09:09:39Z", - "forks": 1, + "forks": 2, "issues": 0, "subscribers": 1, - "stars": 16, + "stars": 17, "dependencies": 0 }, "name": "expo-translate-text", @@ -119716,7 +119028,6 @@ "isPrivate": false, "description": "An expo module used to handle translating text in an app.", "topics": [ - "react-native", "expo", "expo-translate-text", "expotranslatetext" @@ -119731,23 +119042,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-translate-text", "npm": { - "downloads": 117, - "weekDownloads": 21, + "downloads": 196, + "weekDownloads": 32, "size": 46052, "latestRelease": "0.1.0", "latestReleaseDate": "2025-03-05T11:34:42.380Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.844, - "topicSearchString": "react-native expo expo-translate-text expotranslatetext" + "popularity": -0.861, + "topicSearchString": "expo expo-translate-text expotranslatetext" }, { "githubUrl": "https://github.com/Kushalchg/nepali-picker", @@ -119777,7 +119089,7 @@ "updatedAt": "2025-07-14T14:32:02Z", "createdAt": "2024-09-21T08:49:12Z", "pushedAt": "2025-07-14T14:32:02Z", - "forks": 4, + "forks": 5, "issues": 0, "subscribers": 1, "stars": 24, @@ -119807,20 +119119,19 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 296, - "weekDownloads": 40, + "downloads": 250, + "weekDownloads": 44, "size": 241575, "latestRelease": "1.0.9", "latestReleaseDate": "2025-07-14T14:35:20.213Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.884, + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.848, "topicSearchString": "nepali nepali-picker nepali-date-picker date-picker calendar-picker ios android" }, { @@ -119842,13 +119153,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T19:04:13Z", + "updatedAt": "2025-10-13T16:41:01Z", "createdAt": "2018-06-21T21:15:55Z", - "pushedAt": "2025-09-11T19:04:13Z", - "forks": 104, - "issues": 53, - "subscribers": 17, - "stars": 1036, + "pushedAt": "2025-10-13T16:41:01Z", + "forks": 103, + "issues": 44, + "subscribers": 15, + "stars": 1063, "dependencies": 1 }, "name": "react-native-purchases-ui", @@ -119856,7 +119167,6 @@ "isPrivate": false, "description": "React Native in-app purchases and subscriptions made easy. Supports iOS and Android.", "topics": [ - "react-native", "in-app-purchase", "subscriptions", "iap", @@ -119874,25 +119184,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-purchases-ui", "npm": { - "downloads": 114623, - "weekDownloads": 19294, - "size": 260849, - "latestRelease": "9.4.2", - "latestReleaseDate": "2025-09-11T18:42:48.312Z" + "downloads": 142588, + "weekDownloads": 30992, + "size": 262311, + "latestRelease": "9.5.4", + "latestReleaseDate": "2025-10-10T12:42:16.745Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.143, - "topicSearchString": "react-native in-app-purchase subscriptions iap ios apple android" + "popularity": 0.185, + "topicSearchString": "in-app-purchase subscriptions iap ios apple android" }, { "githubUrl": "https://github.com/newrelic/newrelic-react-native-agent", @@ -119902,6 +119212,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/newrelic/newrelic-react-native-agent", @@ -119913,12 +119224,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-28T18:08:44Z", + "updatedAt": "2025-10-10T18:01:38Z", "createdAt": "2021-12-06T21:50:29Z", - "pushedAt": "2025-08-28T18:08:44Z", + "pushedAt": "2025-10-10T18:01:38Z", "forks": 26, - "issues": 10, - "subscribers": 14, + "issues": 12, + "subscribers": 13, "stars": 19, "dependencies": 4 }, @@ -119928,8 +119239,7 @@ "registry": "https://registry.npmjs.org/", "description": "New Relic Mobile Agent SDK for React-Native Applications", "topics": [ - "new-relic", - "react-native" + "new-relic" ], "license": { "key": "apache-2.0", @@ -119941,23 +119251,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "newrelic-react-native-agent", "npm": { - "downloads": 107213, - "weekDownloads": 17393, - "size": 346843, - "latestRelease": "1.5.9", - "latestReleaseDate": "2025-08-28T18:09:58.723Z" + "downloads": 85864, + "weekDownloads": 20039, + "size": 350100, + "latestRelease": "1.5.11", + "latestReleaseDate": "2025-10-10T18:02:51.777Z" }, - "score": 59, + "score": 51, "matchingScoreModifiers": [ - "Known", "Recently updated" ], - "popularity": -0.112, - "topicSearchString": "new-relic react-native" + "popularity": -0.052, + "topicSearchString": "new-relic" }, { "githubUrl": "https://github.com/saadqbal/react-native-notification-sounds", @@ -119991,8 +119302,7 @@ "isPrivate": false, "description": "Native notification sounds list. returns the id, title and url of the sounds. works for iOS and Android", "topics": [ - "react-native", - "native-sounds", + "sounds", "notifications-sounds" ], "license": { @@ -120005,13 +119315,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-notification-sounds", "npm": { - "downloads": 7926, - "weekDownloads": 1361, + "downloads": 6227, + "weekDownloads": 1448, "size": 666294, "latestRelease": "0.5.8", "latestReleaseDate": "2023-08-07T17:03:39.560Z" @@ -120021,8 +119332,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, - "topicSearchString": "react-native native-sounds notifications-sounds" + "popularity": -0.552, + "topicSearchString": "sounds notifications-sounds" }, { "githubUrl": "https://github.com/okwasniewski/react-native-emoji-popup", @@ -120049,7 +119360,7 @@ "forks": 6, "issues": 0, "subscribers": 2, - "stars": 163, + "stars": 167, "dependencies": 0 }, "name": "react-native-emoji-popup", @@ -120058,7 +119369,6 @@ "registry": "https://registry.npmjs.org/", "description": "Native Emoji Picker for React Native", "topics": [ - "react-native", "ios", "android" ], @@ -120072,20 +119382,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-emoji-popup", "npm": { - "downloads": 2340, - "weekDownloads": 310, + "downloads": 2781, + "weekDownloads": 561, "size": 51071, "latestRelease": "0.3.3", "latestReleaseDate": "2025-08-12T18:03:07.301Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": 0.113, - "topicSearchString": "react-native ios android" + "popularity": 0.172, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/callstackincubator/react-native-legal/tree/main/packages/react-native-legal", @@ -120096,12 +119408,13 @@ "images": [ "https://raw.githubusercontent.com/callstackincubator/react-native-legal/refs/heads/main/static/android-expo.gif", "https://raw.githubusercontent.com/callstackincubator/react-native-legal/refs/heads/main/static/android-tv.gif", - "https://raw.githubusercontent.com/callstackincubator/react-native-legal/refs/heads/main/static/ios-expo.gif", + "https://raw.githubusercontent.com/callstackincubator/react-native-legal/refs/heads/main/static/ios-bare.gif", "https://raw.githubusercontent.com/callstackincubator/react-native-legal/refs/heads/main/static/tvos.gif" ], "ios": true, "android": true, "tvos": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/callstackincubator/react-native-legal", @@ -120117,9 +119430,9 @@ "createdAt": "2023-08-07T11:01:51Z", "pushedAt": "2025-09-12T18:20:05Z", "forks": 7, - "issues": 6, + "issues": 7, "subscribers": 5, - "stars": 295, + "stars": 311, "dependencies": 4 }, "name": "react-native-legal", @@ -120128,7 +119441,6 @@ "registry": "https://registry.npmjs.org/", "description": "Acknowledge OSS libraries used in your React Native app", "topics": [ - "react-native", "oss", "license", "acknowledgements", @@ -120144,24 +119456,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-legal", "npm": { - "downloads": 9093, - "weekDownloads": 1452, + "downloads": 11625, + "weekDownloads": 2083, "size": 130274, "latestRelease": "1.6.0", "latestReleaseDate": "2025-09-12T18:22:02.510Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.136, - "topicSearchString": "react-native oss license acknowledgements license-management" + "popularity": 0.152, + "topicSearchString": "oss license acknowledgements license-management" }, { "githubUrl": "https://github.com/callstack/react-native-brownfield", @@ -120182,13 +119494,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-09T12:35:20Z", + "updatedAt": "2025-10-18T12:21:23Z", "createdAt": "2019-07-15T12:33:29Z", - "pushedAt": "2025-09-09T12:35:20Z", + "pushedAt": "2025-10-18T12:21:23Z", "forks": 26, - "issues": 24, - "subscribers": 11, - "stars": 421, + "issues": 25, + "subscribers": 10, + "stars": 430, "dependencies": 0 }, "name": "@callstack/react-native-brownfield", @@ -120197,7 +119509,6 @@ "description": "Set of helpers to make your brownfield integration smooth and easy.", "topics": [ "brownfield", - "native", "integration" ], "license": { @@ -120210,30 +119521,32 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 2764, - "weekDownloads": 370, + "downloads": 5083, + "weekDownloads": 978, "size": 71205, "latestRelease": "1.2.0", "latestReleaseDate": "2025-07-25T08:18:57.232Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.114, - "topicSearchString": "brownfield native integration" + "popularity": 0.164, + "topicSearchString": "brownfield integration" }, { "githubUrl": "https://github.com/software-mansion/react-native-executorch/tree/main/packages/react-native-executorch", "examples": [ - "https://github.com/software-mansion/react-native-executorch/tree/main/examples/computer-vision", - "https://github.com/software-mansion/react-native-executorch/tree/main/examples/llama", - "https://github.com/software-mansion/react-native-executorch/tree/main/examples/speech-to-text" + "https://github.com/software-mansion/react-native-executorch/tree/main/apps/computer-vision", + "https://github.com/software-mansion/react-native-executorch/tree/main/apps/llm", + "https://github.com/software-mansion/react-native-executorch/tree/main/apps/speech-to-text", + "https://github.com/software-mansion/react-native-executorch/tree/main/apps/text-embeddings" ], "ios": true, "android": true, @@ -120249,13 +119562,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T16:18:58Z", + "updatedAt": "2025-10-17T13:54:17Z", "createdAt": "2024-10-16T10:58:16Z", - "pushedAt": "2025-09-12T16:18:58Z", - "forks": 44, - "issues": 68, - "subscribers": 12, - "stars": 936, + "pushedAt": "2025-10-17T13:54:17Z", + "forks": 49, + "issues": 58, + "subscribers": 14, + "stars": 1036, "dependencies": 7 }, "name": "react-native-executorch", @@ -120264,7 +119577,6 @@ "registry": "https://registry.npmjs.org/", "description": "An easy way to run AI models in React Native with ExecuTorch", "topics": [ - "react-native", "ios", "android", "executorch", @@ -120284,15 +119596,17 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-executorch", "npm": { - "downloads": 2515, - "weekDownloads": 242, - "size": 179687282, - "latestRelease": "0.5.4", - "latestReleaseDate": "2025-09-10T13:35:34.231Z" + "downloads": 4309, + "weekDownloads": 590, + "size": 294783120, + "latestRelease": "0.5.12", + "latestReleaseDate": "2025-10-17T14:17:54.408Z" }, "score": 76, "matchingScoreModifiers": [ @@ -120300,14 +119614,11 @@ "Known", "Recently updated" ], - "popularity": 0.082, - "topicSearchString": "react-native ios android executorch ai llm coreml xnnpack llama" + "popularity": 0.116, + "topicSearchString": "ios android executorch ai llm coreml xnnpack llama" }, { "githubUrl": "https://github.com/kubilaysalih/react-native-attributify", - "examples": [ - "https://github.com/kubilaysalih/react-native-attributify/tree/main/example" - ], "ios": true, "android": true, "github": { @@ -120327,7 +119638,7 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 11, + "stars": 12, "dependencies": 0 }, "name": "react-native-attributify", @@ -120335,7 +119646,6 @@ "isPrivate": false, "description": "🧑‍🎨 react-native-attributify like nativewind and unocss with attributes", "topics": [ - "react-native", "styling", "utility", "css-in-js", @@ -120352,23 +119662,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-attributify", "npm": { - "downloads": 1479, - "weekDownloads": 214, + "downloads": 313, + "weekDownloads": 5, "size": 354225, "latestRelease": "0.1.0-alpha.28", "latestReleaseDate": "2025-08-21T19:31:36.661Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.127, - "topicSearchString": "react-native styling utility css-in-js atomic-css typescript" + "popularity": -0.986, + "topicSearchString": "styling utility css-in-js atomic-css typescript" }, { "githubUrl": "https://github.com/Splicer97/react-native-android-keyboard-adjust", @@ -120404,9 +119714,8 @@ "registry": "https://registry.npmjs.org/", "description": "Simple android native module to manipulate the behavior of keyboard", "topics": [ - "react-native", "android", - "@splicer97/android-keyboard-adjust", + "@splicer97/-android-keyboard-adjust", "android-keyboard-adjust", "@rn-android-keyboard-adjust", "keyboard-adjust", @@ -120423,11 +119732,13 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 13, - "weekDownloads": 4, + "downloads": 40, + "weekDownloads": 7, "size": 76599, "latestRelease": "0.2.0", "latestReleaseDate": "2025-03-16T08:54:44.684Z" @@ -120436,8 +119747,8 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": -0.733, - "topicSearchString": "react-native android @splicer97/android-keyboard-adjust android-keyboard-adjust @rn-android-keyboard-adjust keyboard-adjust keyboard adjust" + "popularity": -0.844, + "topicSearchString": "android @splicer97/-android-keyboard-adjust android-keyboard-adjust @rn-android-keyboard-adjust keyboard-adjust keyboard adjust" }, { "githubUrl": "https://github.com/pioner92/react-native-img-buffer-save", @@ -120464,7 +119775,7 @@ "forks": 1, "issues": 0, "subscribers": 1, - "stars": 15, + "stars": 16, "dependencies": 0 }, "name": "react-native-img-buffer-save", @@ -120473,7 +119784,6 @@ "registry": "https://registry.npmjs.org/", "description": "💪 A native solution to save raw image buffers (ArrayBuffer / Uint8Array) directly to the device gallery using JSI for maximum performance", "topics": [ - "react-native", "ios", "android", "jsi", @@ -120497,8 +119807,6 @@ "save-gallery", "img-buffer", "image-buffer", - "native-module", - "jsi-react-native", "module", "image-gallery", "img-gallery", @@ -120515,23 +119823,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-img-buffer-save", "npm": { - "downloads": 27, - "weekDownloads": 0, + "downloads": 53, + "weekDownloads": 12, "size": 30477, "latestRelease": "0.1.7", "latestReleaseDate": "2025-03-17T18:43:24.644Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1, - "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" + "popularity": -0.8, + "topicSearchString": "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 module image-gallery img-gallery save-img-buffer save-to-gallery" }, { "githubUrl": "https://github.com/pioner92/react-native-xxhash", @@ -120552,13 +119861,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-03-16T22:32:23Z", + "updatedAt": "2025-09-27T19:14:33Z", "createdAt": "2025-01-17T21:17:28Z", - "pushedAt": "2025-03-16T22:32:23Z", - "forks": 1, + "pushedAt": "2025-09-27T19:14:33Z", + "forks": 2, "issues": 0, "subscribers": 1, - "stars": 16, + "stars": 18, "dependencies": 0 }, "name": "react-native-xxhash", @@ -120567,15 +119876,12 @@ "registry": "https://registry.npmjs.org/", "description": "💪 A high-performance React Native library for generating xxHash hashes using C++ and JSI", "topics": [ - "react-native", "ios", "android", "xxhash", "hash", "fast", "xxhash3", - "xxhash3-react-native", - "hash-react-native", "hash-xxhash", "jsi", "cpp", @@ -120585,7 +119891,6 @@ "xxhash-cpp", "xxhash3-jsi", "xxhash3-cpp", - "react", "jni", "quickhash", "xxhash-library" @@ -120600,23 +119905,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-xxhash", "npm": { - "downloads": 70, - "weekDownloads": 9, - "size": 303296, - "latestRelease": "0.1.7", - "latestReleaseDate": "2025-01-19T16:20:40.481Z" + "downloads": 181, + "weekDownloads": 5, + "size": 303350, + "latestRelease": "0.1.8", + "latestReleaseDate": "2025-09-27T19:14:29.744Z" }, - "score": 32, + "score": 51, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.887, - "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" + "popularity": -0.976, + "topicSearchString": "ios android xxhash hash fast xxhash3 hash-xxhash jsi cpp fast-hash quick-hash xxhash-jsi xxhash-cpp xxhash3-jsi xxhash3-cpp jni quickhash xxhash-library" }, { "githubUrl": "https://github.com/pioner92/react-native-config-jsi", @@ -120652,19 +119957,15 @@ "registry": "https://registry.npmjs.org/", "description": "⚡️ Fast JSI-based library to access .env variables natively with C++ performance.", "topics": [ - "react-native", "ios", "android", "jsi", "cpp", "config", - "jsi-react-native", "config-cpp", "env", "config-jsi", "jni", - "native-module", - "react-config", "module" ], "license": { @@ -120677,23 +119978,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-config-jsi", "npm": { - "downloads": 29, - "weekDownloads": 3, + "downloads": 36, + "weekDownloads": 7, "size": 43671, "latestRelease": "0.1.10", "latestReleaseDate": "2025-03-17T11:56:53.615Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.9, - "topicSearchString": "react-native ios android jsi cpp config jsi-react-native config-cpp env config-jsi jni native-module react-config module" + "popularity": -0.825, + "topicSearchString": "ios android jsi cpp config config-cpp env config-jsi jni module" }, { "githubUrl": "https://github.com/dcangulo/react-native-render-lynx", @@ -120703,6 +120005,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/dcangulo/react-native-render-lynx", @@ -120720,7 +120023,7 @@ "forks": 0, "issues": 0, "subscribers": 2, - "stars": 12, + "stars": 13, "dependencies": 0 }, "name": "react-native-render-lynx", @@ -120728,7 +120031,6 @@ "isPrivate": false, "description": "Render a LynxJS bundle in your React Native application.", "topics": [ - "react-native", "lynx", "lynx-js", "lynxjs" @@ -120743,20 +120045,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-render-lynx", "npm": { - "downloads": 42, - "weekDownloads": 4, + "downloads": 130, + "weekDownloads": 23, "size": 56338, "latestRelease": "0.3.0", "latestReleaseDate": "2025-03-25T12:25:46.453Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": -0.911, - "topicSearchString": "react-native lynx lynx-js lynxjs" + "score": 35, + "matchingScoreModifiers": [ + "Not updated recently" + ], + "popularity": -0.847, + "topicSearchString": "lynx lynx-js lynxjs" }, { "githubUrl": "https://github.com/JuanSeBestia/react-native-wifi-reborn", @@ -120766,6 +120072,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/JuanSeBestia/react-native-wifi-reborn", @@ -120783,7 +120090,7 @@ "forks": 129, "issues": 3, "subscribers": 12, - "stars": 438, + "stars": 445, "dependencies": 0 }, "name": "react-native-wifi-reborn", @@ -120791,8 +120098,6 @@ "isPrivate": false, "description": "A react-native implementation for viewing and connecting to Wifi networks on Android and iOS devices.", "topics": [ - "react", - "react-native", "android", "ios", "wifi", @@ -120808,23 +120113,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-wifi-reborn", "npm": { - "downloads": 65081, - "weekDownloads": 9666, + "downloads": 68821, + "weekDownloads": 16418, "size": 121300, "latestRelease": "4.13.6", "latestReleaseDate": "2025-06-25T08:41:16.075Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.126, - "topicSearchString": "react react-native android ios wifi connect" + "popularity": 0.203, + "topicSearchString": "android ios wifi connect" }, { "githubUrl": "https://github.com/HelpkitHQ/helpkit-help-center-react-native", @@ -120861,7 +120166,6 @@ "isPrivate": false, "description": "React Native SDK for embedding Notion-powered HelpKit help centers in your mobile app", "topics": [ - "react-native", "help-center", "help-desk", "helpkit", @@ -120882,23 +120186,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 15, + "downloads": 202, "weekDownloads": 0, "size": 172201, "latestRelease": "0.1.5", "latestReleaseDate": "2025-03-19T12:27:38.361Z" }, - "score": 22, + "score": 24, "matchingScoreModifiers": [ "GPL license", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], "popularity": -1, - "topicSearchString": "react-native help-center help-desk helpkit notion documentation knowledge-base customer-support faq mobile" + "topicSearchString": "help-center help-desk helpkit notion documentation knowledge-base customer-support faq mobile" }, { "githubUrl": "https://github.com/google-gemini/generative-ai-js", @@ -120922,10 +120226,10 @@ "updatedAt": "2025-08-08T18:29:13Z", "createdAt": "2023-12-04T15:59:56Z", "pushedAt": "2025-08-08T18:29:13Z", - "forks": 299, - "issues": 41, - "subscribers": 30, - "stars": 1230, + "forks": 301, + "issues": 44, + "subscribers": 29, + "stars": 1227, "dependencies": 0 }, "name": "@google/generative-ai", @@ -120943,11 +120247,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5213475, - "weekDownloads": 997874, + "downloads": 5098985, + "weekDownloads": 1093632, "size": 419936, "latestRelease": "0.24.1", "latestReleaseDate": "2025-04-29T17:48:21.897Z" @@ -120959,7 +120264,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.163, + "popularity": 0.182, "topicSearchString": "" }, { @@ -120967,8 +120272,10 @@ "examples": [ "https://github.com/pioner92/react-native-auto-skeleton/tree/main/example" ], + "android": true, "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/pioner92/react-native-auto-skeleton", @@ -120980,13 +120287,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-05-29T15:30:42Z", + "updatedAt": "2025-09-27T22:59:16Z", "createdAt": "2025-03-22T12:15:43Z", - "pushedAt": "2025-05-29T15:30:42Z", - "forks": 7, - "issues": 5, + "pushedAt": "2025-09-27T22:59:16Z", + "forks": 8, + "issues": 3, "subscribers": 3, - "stars": 286, + "stars": 301, "dependencies": 0 }, "name": "react-native-auto-skeleton", @@ -120995,7 +120302,6 @@ "registry": "https://registry.npmjs.org/", "description": "🚀 Automatically generates skeleton based on your existing UI layout without manual configuration.", "topics": [ - "react-native", "ios", "android", "skeleton", @@ -121024,7 +120330,7 @@ "placeholder-loader", "loader", "ui", - "native-component", + "component", "fabric" ], "license": { @@ -121037,22 +120343,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-auto-skeleton", "npm": { - "downloads": 4109, - "weekDownloads": 1090, - "size": 122728, - "latestRelease": "0.1.26", - "latestReleaseDate": "2025-05-29T15:30:40.031Z" + "downloads": 4885, + "weekDownloads": 901, + "size": 106538, + "latestRelease": "0.1.28", + "latestReleaseDate": "2025-09-27T22:59:13.853Z" }, - "score": 54, + "score": 59, "matchingScoreModifiers": [ - "Known" + "Known", + "Recently updated" ], - "popularity": 0.226, - "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" + "popularity": 0.157, + "topicSearchString": "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 component fabric" }, { "githubUrl": "https://github.com/IvanIhnatsiuk/react-native-advanced-input-mask/tree/main/package", @@ -121078,13 +120387,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-03T20:42:10Z", + "updatedAt": "2025-10-06T13:51:08Z", "createdAt": "2024-02-05T13:53:01Z", - "pushedAt": "2025-09-03T20:42:10Z", - "forks": 7, + "pushedAt": "2025-10-06T13:51:08Z", + "forks": 10, "issues": 12, "subscribers": 1, - "stars": 193, + "stars": 204, "dependencies": 0 }, "name": "react-native-advanced-input-mask", @@ -121093,7 +120402,6 @@ "registry": "https://registry.npmjs.org/", "description": "Text input mask for React Native on iOS, Android and web. Synchronous and easy formatting without hustle", "topics": [ - "react-native", "ios", "android", "web", @@ -121120,22 +120428,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 48592, - "weekDownloads": 9050, - "size": 385154, - "latestRelease": "1.4.5", - "latestReleaseDate": "2025-09-05T19:59:03.749Z" + "downloads": 53543, + "weekDownloads": 11855, + "size": 385180, + "latestRelease": "1.4.6", + "latestReleaseDate": "2025-10-06T15:37:52.706Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": 0.158, - "topicSearchString": "react-native ios android web text-input masking input component form validation formatting phone-input credit-card-input date-input time-input mask" + "popularity": 0.188, + "topicSearchString": "ios android web text-input masking input component form validation formatting phone-input credit-card-input date-input time-input mask" }, { "githubUrl": "https://github.com/KoreanThinker/react-native-translator", @@ -121163,8 +120473,8 @@ "pushedAt": "2025-08-07T07:26:15Z", "forks": 10, "issues": 3, - "subscribers": 3, - "stars": 90, + "subscribers": 2, + "stars": 93, "dependencies": 1 }, "name": "react-native-translator", @@ -121174,7 +120484,6 @@ "topics": [ "translator", "translate", - "react-native", "typescript", "google-translate", "deepl" @@ -121189,12 +120498,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-translator", "npm": { - "downloads": 597, - "weekDownloads": 89, + "downloads": 593, + "weekDownloads": 132, "size": 27094, "latestRelease": "2.0.0", "latestReleaseDate": "2025-08-07T07:29:02.274Z" @@ -121203,8 +120513,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.623, - "topicSearchString": "translator translate react-native typescript google-translate deepl" + "popularity": -0.56, + "topicSearchString": "translator translate typescript google-translate deepl" }, { "githubUrl": "https://github.com/corasan/image-compressor/tree/main/package", @@ -121214,6 +120524,7 @@ ], "android": true, "ios": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/corasan/image-compressor", @@ -121231,7 +120542,7 @@ "forks": 2, "issues": 1, "subscribers": 2, - "stars": 36, + "stars": 38, "dependencies": 0 }, "name": "@corasan/image-compressor", @@ -121240,7 +120551,6 @@ "registry": "https://registry.npmjs.org/", "description": "A template for Nitro Modules.", "topics": [ - "react-native", "nitro", "expo", "image", @@ -121259,21 +120569,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "nitro" }, "npm": { - "downloads": 34, - "weekDownloads": 0, + "downloads": 169, + "weekDownloads": 14, "size": 72644702, "latestRelease": "0.3.3", "latestReleaseDate": "2025-03-26T00:26:14.628Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1, - "topicSearchString": "react-native nitro expo image compression compressor image-compressor image-compressor" + "popularity": -0.678, + "topicSearchString": "nitro expo image compression compressor image-compressor image-compressor" }, { "githubUrl": "https://github.com/ronickg/react-native-nitro-bip39/tree/main/packages/react-native-nitro-bip39", @@ -121308,7 +120620,6 @@ "registry": "https://registry.npmjs.org/", "description": "A template for Nitro Modules.", "topics": [ - "react-native", "nitro" ], "license": { @@ -121321,12 +120632,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-bip39", "npm": { - "downloads": 746, - "weekDownloads": 244, + "downloads": 357, + "weekDownloads": 64, "size": 2680120, "latestRelease": "0.0.6", "latestReleaseDate": "2025-05-01T12:01:02.764Z" @@ -121335,8 +120648,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.721, - "topicSearchString": "react-native nitro" + "popularity": -0.848, + "topicSearchString": "nitro" }, { "githubUrl": "https://github.com/patrickkabwe/react-native-nitro-in-app-browser", @@ -121357,22 +120670,21 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-27T06:57:14Z", + "updatedAt": "2025-10-11T06:36:09Z", "createdAt": "2024-10-20T18:21:37Z", - "pushedAt": "2025-08-27T06:57:14Z", + "pushedAt": "2025-10-11T06:36:09Z", "forks": 0, "issues": 1, "subscribers": 2, - "stars": 43, + "stars": 50, "dependencies": 0 }, "name": "react-native-nitro-in-app-browser", "fullName": "patrickkabwe/react-native-nitro-in-app-browser", "isPrivate": false, "registry": "https://registry.npmjs.org/", - "description": "A Simple React Native Nitro module for in-app browser.", + "description": "A Simple Nitro module to open an in-app browser in your React Native app.", "topics": [ - "react-native", "nitro", "in-app-browser", "in-app-browser-module", @@ -121388,23 +120700,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-in-app-browser", "npm": { - "downloads": 169, - "weekDownloads": 71, + "downloads": 389, + "weekDownloads": 25, "size": 108468, "latestRelease": "2.0.0", "latestReleaseDate": "2025-08-17T08:11:54.474Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.386, - "topicSearchString": "react-native nitro in-app-browser in-app-browser-module nitro-in-app-browser" + "popularity": -0.695, + "topicSearchString": "nitro in-app-browser in-app-browser-module nitro-in-app-browser" }, { "githubUrl": "https://github.com/litecoin-foundation/react-native-turbo-scrypt", @@ -121439,7 +120752,6 @@ "registry": "https://registry.npmjs.org/", "description": "⚡ fast Scrypt implementation for React Native via Nitromodules", "topics": [ - "react-native", "nitro" ], "license": { @@ -121452,12 +120764,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-turbo-scrypt", "npm": { - "downloads": 20, - "weekDownloads": 4, + "downloads": 35, + "weekDownloads": 0, "size": 53325, "latestRelease": "0.0.7", "latestReleaseDate": "2025-03-25T01:54:34.525Z" @@ -121467,8 +120781,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.8, - "topicSearchString": "react-native nitro" + "popularity": -1, + "topicSearchString": "nitro" }, { "githubUrl": "https://github.com/cdiddy77/react-native-llm-mediapipe", @@ -121503,7 +120817,6 @@ "registry": "https://registry.npmjs.org/", "description": "Run an LLM on iOS & Android devices using React Native", "topics": [ - "react-native", "ios", "android", "mediapipe", @@ -121520,12 +120833,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-llm-mediapipe", "npm": { - "downloads": 124, - "weekDownloads": 15, + "downloads": 120, + "weekDownloads": 18, "size": 56729, "latestRelease": "0.5.0", "latestReleaseDate": "2024-10-05T16:10:43.789Z" @@ -121535,8 +120850,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.647, - "topicSearchString": "react-native ios android mediapipe llm local-llm" + "popularity": -0.621, + "topicSearchString": "ios android mediapipe llm local-llm" }, { "githubUrl": "https://github.com/holepunchto/react-native-bare-kit", @@ -121557,13 +120872,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-12T11:22:08Z", + "updatedAt": "2025-10-17T13:34:54Z", "createdAt": "2024-09-04T07:58:43Z", - "pushedAt": "2025-09-12T11:22:08Z", - "forks": 7, + "pushedAt": "2025-10-17T13:34:54Z", + "forks": 8, "issues": 0, "subscribers": 11, - "stars": 33, + "stars": 34, "dependencies": 3 }, "name": "react-native-bare-kit", @@ -121581,21 +120896,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-bare-kit", "npm": { - "downloads": 6365, - "weekDownloads": 1140, - "size": 237968868, - "latestRelease": "0.9.2", - "latestReleaseDate": "2025-09-12T11:24:16.033Z" + "downloads": 2793, + "weekDownloads": 788, + "size": 322955045, + "latestRelease": "0.10.2", + "latestReleaseDate": "2025-10-17T13:36:46.084Z" }, "score": 51, "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.152, + "popularity": 0.24, "topicSearchString": "" }, { @@ -121620,7 +120937,7 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 5, + "stars": 6, "dependencies": 4 }, "name": "rn-build-version", @@ -121628,7 +120945,6 @@ "isPrivate": false, "description": "A React Native tool for managing versionCode and versionName in your Android build.gradle file, with support for building APKs and AABs. It simplifies version management by providing interactive prompts and automates backups and changelog updates.", "topics": [ - "react-native", "management", "version-management", "android", @@ -121655,22 +120971,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-build-version", "npm": { - "downloads": 18, - "weekDownloads": 1, + "downloads": 37, + "weekDownloads": 0, "size": 15301, "latestRelease": "1.2.2", "latestReleaseDate": "2025-03-28T05:14:54.391Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "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" + "popularity": -1, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/jeremybarbet/expo-testflight", @@ -121693,7 +121010,7 @@ "forks": 0, "issues": 0, "subscribers": 2, - "stars": 10, + "stars": 12, "dependencies": 0 }, "name": "expo-testflight", @@ -121701,7 +121018,6 @@ "isPrivate": false, "description": "A simple expo module to check if the app is running on TestFlight", "topics": [ - "react-native", "expo", "expo-testflight", "expotestflight" @@ -121716,23 +121032,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-testflight", "npm": { - "downloads": 4434, - "weekDownloads": 597, + "downloads": 4374, + "weekDownloads": 823, "size": 5614, "latestRelease": "0.3.0", "latestReleaseDate": "2025-03-20T16:42:11.691Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.136, - "topicSearchString": "react-native expo expo-testflight expotestflight" + "popularity": -0.09, + "topicSearchString": "expo expo-testflight expotestflight" }, { "githubUrl": "https://github.com/expo/config-plugins/tree/main/packages/react-native-blob-util", @@ -121740,6 +121057,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/config-plugins", @@ -121751,13 +121069,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-06-02T23:49:03Z", + "updatedAt": "2025-09-24T15:24:19Z", "createdAt": "2021-06-24T00:37:58Z", - "pushedAt": "2025-06-02T23:49:03Z", - "forks": 124, - "issues": 43, - "subscribers": 9, - "stars": 529, + "pushedAt": "2025-09-24T15:24:19Z", + "forks": 125, + "issues": 41, + "subscribers": 7, + "stars": 539, "dependencies": 0 }, "name": "@config-plugins/react-native-blob-util", @@ -121766,7 +121084,6 @@ "description": "Config plugin to auto configure react-native-blob-util on prebuild", "topics": [ "blob-util", - "react-native", "expo" ], "license": { @@ -121779,23 +121096,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true }, "npm": { - "downloads": 203007, - "weekDownloads": 37212, - "size": 8855, - "latestRelease": "11.0.0", - "latestReleaseDate": "2025-06-02T23:49:32.603Z" + "downloads": 173414, + "weekDownloads": 40859, + "size": 7350, + "latestRelease": "12.0.0", + "latestReleaseDate": "2025-09-24T15:23:31.174Z" }, - "score": 68, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.156, - "topicSearchString": "blob-util react-native expo" + "popularity": 0.2, + "topicSearchString": "blob-util expo" }, { "githubUrl": "https://github.com/expo/config-plugins/tree/main/packages/react-native-pdf", @@ -121803,6 +121121,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/config-plugins", @@ -121814,13 +121133,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-06-02T23:49:03Z", + "updatedAt": "2025-09-24T15:24:19Z", "createdAt": "2021-06-24T00:37:58Z", - "pushedAt": "2025-06-02T23:49:03Z", - "forks": 124, - "issues": 43, - "subscribers": 9, - "stars": 529, + "pushedAt": "2025-09-24T15:24:19Z", + "forks": 125, + "issues": 41, + "subscribers": 7, + "stars": 539, "dependencies": 0 }, "name": "@config-plugins/react-native-pdf", @@ -121829,7 +121148,6 @@ "description": "Config plugin to auto configure react-native-pdf on prebuild", "topics": [ "pdf", - "react-native", "expo" ], "license": { @@ -121842,23 +121160,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true }, "npm": { - "downloads": 195078, - "weekDownloads": 35389, - "size": 7930, - "latestRelease": "11.0.0", - "latestReleaseDate": "2025-06-02T23:49:32.670Z" + "downloads": 166194, + "weekDownloads": 39162, + "size": 6242, + "latestRelease": "12.0.0", + "latestReleaseDate": "2025-09-24T15:23:42.767Z" }, - "score": 68, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.154, - "topicSearchString": "pdf react-native expo" + "popularity": 0.2, + "topicSearchString": "pdf expo" }, { "githubUrl": "https://github.com/brix/crypto-js", @@ -121881,10 +121200,10 @@ "updatedAt": "2023-10-24T22:01:45Z", "createdAt": "2013-04-08T20:16:40Z", "pushedAt": "2023-10-24T22:01:45Z", - "forks": 2448, - "issues": 256, - "subscribers": 254, - "stars": 16292, + "forks": 2457, + "issues": 261, + "subscribers": 252, + "stars": 16322, "dependencies": 0 }, "name": "crypto-js", @@ -121923,26 +121242,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "crypto-js", "npm": { - "downloads": 41406695, - "weekDownloads": 7009642, + "downloads": 39634725, + "weekDownloads": 8968095, "size": 486947, "latestRelease": "4.2.0", "latestReleaseDate": "2023-10-24T22:20:29.229Z" }, - "score": 70, + "score": 73, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.144, + "popularity": 0.192, "topicSearchString": "security crypto hash md5 sha1 sha-1 sha256 sha-256 rc4 rabbit aes des pbkdf2 hmac ofb cfb ctr cbc base64 base64url" }, { @@ -121966,10 +121285,10 @@ "updatedAt": "2025-09-08T08:25:07Z", "createdAt": "2014-10-06T10:24:22Z", "pushedAt": "2025-09-08T08:25:07Z", - "forks": 1824, - "issues": 629, - "subscribers": 209, - "stars": 36111, + "forks": 1836, + "issues": 632, + "subscribers": 205, + "stars": 36210, "dependencies": 0 }, "name": "date-fns", @@ -121996,26 +121315,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "date-fns", "npm": { - "downloads": 145022203, - "weekDownloads": 24701143, + "downloads": 142772153, + "weekDownloads": 31374931, "size": 22601076, "latestRelease": "4.1.0", "latestReleaseDate": "2024-09-17T04:37:03.810Z" }, - "score": 86, + "score": 81, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.145, + "popularity": 0.187, "topicSearchString": "javascript date modules utilities nodejs time date-fns hacktoberfest" }, { @@ -122037,13 +121356,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-03T03:35:33Z", + "updatedAt": "2025-09-17T05:44:04Z", "createdAt": "2024-08-16T05:20:34Z", - "pushedAt": "2025-09-03T03:35:33Z", - "forks": 21, - "issues": 5, + "pushedAt": "2025-09-17T05:44:04Z", + "forks": 22, + "issues": 4, "subscribers": 3, - "stars": 149, + "stars": 164, "dependencies": 1 }, "name": "react-native-audio-pro", @@ -122052,7 +121371,6 @@ "registry": "https://registry.npmjs.org/", "description": "⚡️ High-performance audio playback for React Native — modern, background-friendly, and built for real-world apps like music, audiobooks & podcasts.", "topics": [ - "react-native", "ios", "android", "web" @@ -122067,23 +121385,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-audio-pro", "npm": { - "downloads": 2370, - "weekDownloads": 343, - "size": 278665, - "latestRelease": "10.0.1", - "latestReleaseDate": "2025-08-05T03:03:46.896Z" + "downloads": 2568, + "weekDownloads": 566, + "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.123, - "topicSearchString": "react-native ios android web" + "popularity": 0.187, + "topicSearchString": "ios android web" }, { "githubUrl": "https://github.com/i18next/i18next", @@ -122106,13 +121425,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-05T11:29:50Z", + "updatedAt": "2025-10-10T11:52:00Z", "createdAt": "2011-12-16T12:37:42Z", - "pushedAt": "2025-09-05T11:29:50Z", - "forks": 668, - "issues": 8, - "subscribers": 85, - "stars": 8278, + "pushedAt": "2025-10-10T11:52:00Z", + "forks": 674, + "issues": 9, + "subscribers": 84, + "stars": 8323, "dependencies": 1 }, "name": "i18next", @@ -122144,25 +121463,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "i18next", "npm": { - "downloads": 40755343, - "weekDownloads": 6788925, - "size": 557231, - "latestRelease": "25.5.2", - "latestReleaseDate": "2025-09-05T11:30:25.406Z" + "downloads": 40072588, + "weekDownloads": 8993107, + "size": 558277, + "latestRelease": "25.6.0", + "latestReleaseDate": "2025-10-10T11:52:40.679Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.142, + "popularity": 0.191, "topicSearchString": "i18next internationalization i18n translation localization l10n globalization gettext ecosystem flexibility nodejs deno javascript" }, { @@ -122184,13 +121503,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T11:37:38Z", + "updatedAt": "2025-10-15T18:39:08Z", "createdAt": "2024-09-17T10:55:35Z", - "pushedAt": "2025-09-11T11:37:38Z", + "pushedAt": "2025-10-15T18:39:08Z", "forks": 0, "issues": 0, "subscribers": 15, - "stars": 12, + "stars": 13, "dependencies": 0 }, "name": "posthog-react-native-session-replay", @@ -122199,7 +121518,6 @@ "registry": "https://registry.npmjs.org/", "description": "Session Replay for React Native", "topics": [ - "react-native", "ios", "android" ], @@ -122213,23 +121531,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "posthog-react-native-session-replay", "npm": { - "downloads": 139221, - "weekDownloads": 21434, - "size": 36541, - "latestRelease": "1.1.4", - "latestReleaseDate": "2025-09-11T11:40:08.850Z" + "downloads": 190032, + "weekDownloads": 42774, + "size": 37712, + "latestRelease": "1.2.1", + "latestReleaseDate": "2025-10-15T18:42:00.265Z" }, - "score": 49, + "score": 59, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Known", + "Recently updated" ], - "popularity": -0.119, - "topicSearchString": "react-native ios android" + "popularity": -0.059, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/pioner92/rn-fade-wrapper", @@ -122239,6 +121559,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/pioner92/rn-fade-wrapper", @@ -122250,13 +121571,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-05-15T17:55:42Z", + "updatedAt": "2025-09-28T12:29:51Z", "createdAt": "2025-04-02T19:25:56Z", - "pushedAt": "2025-05-15T17:55:42Z", + "pushedAt": "2025-09-28T12:29:51Z", "forks": 2, "issues": 0, "subscribers": 1, - "stars": 66, + "stars": 71, "dependencies": 0 }, "name": "rn-fade-wrapper", @@ -122265,12 +121586,10 @@ "registry": "https://registry.npmjs.org/", "description": "🔥 React Native fade gradient wrapper for scroll views and overlays", "topics": [ - "react-native", "ios", "android", - "native-component", - "app.plugin.js", "component", + "app.plugin.js", "wrapper", "fade", "fade-wrapper", @@ -122293,20 +121612,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "rn-fade-wrapper", "npm": { - "downloads": 1646, - "weekDownloads": 185, - "size": 75008, - "latestRelease": "0.1.9", - "latestReleaseDate": "2025-05-15T17:55:40.372Z" + "downloads": 396, + "weekDownloads": 84, + "size": 62279, + "latestRelease": "0.1.10", + "latestReleaseDate": "2025-09-28T12:29:47.927Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": 0.096, - "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" + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.569, + "topicSearchString": "ios android component app.plugin.js wrapper fade fade-wrapper fade-in fade-out fade-container fade-view fade-in-out fade-gradient gradient fade-component" }, { "githubUrl": "https://github.com/tschoffelen/react-native-check-version", @@ -122330,7 +121653,7 @@ "createdAt": "2018-10-19T08:17:36Z", "pushedAt": "2025-05-14T00:01:54Z", "forks": 26, - "issues": 3, + "issues": 4, "subscribers": 4, "stars": 236, "dependencies": 0 @@ -122340,12 +121663,9 @@ "isPrivate": false, "description": "🥕 Get the latest version of your app.", "topics": [ - "react", - "native", "version", "checker", "check", - "react-native", "update", "ios", "android", @@ -122363,23 +121683,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-check-version", "npm": { - "downloads": 107870, - "weekDownloads": 18488, + "downloads": 86285, + "weekDownloads": 21729, "size": 11672, "latestRelease": "1.4.0", "latestReleaseDate": "2025-05-20T08:04:40.089Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.146, - "topicSearchString": "react native version checker check react-native update ios android versions app-store google-play" + "popularity": 0.214, + "topicSearchString": "version checker check update ios android versions app-store google-play" }, { "githubUrl": "https://github.com/livekit/client-sdk-react-native", @@ -122401,14 +121721,14 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-09T09:02:22Z", + "updatedAt": "2025-10-16T11:57:07Z", "createdAt": "2022-03-06T12:01:38Z", - "pushedAt": "2025-08-09T09:02:22Z", - "forks": 51, - "issues": 37, - "subscribers": 20, - "stars": 206, - "dependencies": 11 + "pushedAt": "2025-10-16T11:57:07Z", + "forks": 53, + "issues": 41, + "subscribers": 18, + "stars": 222, + "dependencies": 12 }, "name": "@livekit/react-native", "fullName": "livekit/client-sdk-react-native", @@ -122416,7 +121736,6 @@ "registry": "https://registry.npmjs.org/", "description": "Official React Native SDK for LiveKit.", "topics": [ - "react-native", "ios", "android", "livekit", @@ -122432,22 +121751,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 90605, - "weekDownloads": 12798, - "size": 884027, - "latestRelease": "2.9.1", - "latestReleaseDate": "2025-08-09T08:51:52.517Z" + "downloads": 57955, + "weekDownloads": 14707, + "size": 909920, + "latestRelease": "2.9.3", + "latestReleaseDate": "2025-10-13T18:07:53.405Z" }, - "score": 51, + "score": 57, "matchingScoreModifiers": [ "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.12, - "topicSearchString": "react-native ios android livekit webrtc" + "popularity": 0.216, + "topicSearchString": "ios android livekit webrtc" }, { "githubUrl": "https://github.com/livekit/react-native-webrtc", @@ -122470,12 +121791,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-09T08:35:08Z", + "updatedAt": "2025-10-03T15:26:28Z", "createdAt": "2021-06-04T22:25:32Z", - "pushedAt": "2025-08-09T08:35:08Z", - "forks": 29, - "issues": 11, - "subscribers": 1, + "pushedAt": "2025-10-03T15:26:28Z", + "forks": 30, + "issues": 13, + "subscribers": 0, "stars": 20, "dependencies": 3 }, @@ -122484,8 +121805,7 @@ "isPrivate": false, "description": "The WebRTC module for React Native", "topics": [ - "react-component", - "react-native", + "component", "ios", "android", "webrtc" @@ -122500,21 +121820,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 98923, - "weekDownloads": 14325, - "size": 1371161, - "latestRelease": "137.0.1", - "latestReleaseDate": "2025-08-09T08:36:37.382Z" + "downloads": 66726, + "weekDownloads": 15665, + "size": 1410364, + "latestRelease": "137.0.2", + "latestReleaseDate": "2025-09-18T13:46:42.084Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.127, - "topicSearchString": "react-component react-native ios android webrtc" + "popularity": -0.05, + "topicSearchString": "component ios android webrtc" }, { "githubUrl": "https://github.com/livekit/client-sdk-js", @@ -122537,14 +121859,14 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T11:09:12Z", + "updatedAt": "2025-10-21T15:02:41Z", "createdAt": "2020-11-03T06:15:40Z", - "pushedAt": "2025-09-11T11:09:12Z", - "forks": 214, + "pushedAt": "2025-10-21T15:02:41Z", + "forks": 226, "issues": 26, "subscribers": 28, - "stars": 494, - "dependencies": 9 + "stars": 516, + "dependencies": 10 }, "name": "livekit-client", "fullName": "livekit/client-sdk-js", @@ -122565,14 +121887,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1063659, - "weekDownloads": 177544, - "size": 6807007, - "latestRelease": "2.15.7", - "latestReleaseDate": "2025-09-11T11:10:17.830Z" + "downloads": 1105627, + "weekDownloads": 248050, + "size": 7265837, + "latestRelease": "2.15.12", + "latestReleaseDate": "2025-10-20T17:11:55.614Z" }, "score": 73, "matchingScoreModifiers": [ @@ -122581,7 +121904,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.142, + "popularity": 0.191, "topicSearchString": "typescript javascript webrtc" }, { @@ -122611,7 +121934,7 @@ "forks": 72, "issues": 29, "subscribers": 1, - "stars": 159, + "stars": 161, "dependencies": 0 }, "name": "@supersami/rn-foreground-service", @@ -122619,8 +121942,6 @@ "isPrivate": false, "description": "Foreground Service for React Native made with ❤ ", "topics": [ - "react", - "react-native", "android", "foreground", "service", @@ -122638,22 +121959,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 9267, - "weekDownloads": 1648, + "downloads": 7357, + "weekDownloads": 1784, "size": 65645, "latestRelease": "2.2.5", "latestReleaseDate": "2025-04-02T06:55:57.083Z" }, - "score": 51, + "score": 41, "matchingScoreModifiers": [ "Known", + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.151, - "topicSearchString": "react react-native android foreground service background java android-application" + "popularity": 0.206, + "topicSearchString": "android foreground service background java android-application" }, { "githubUrl": "https://github.com/LegendApp/legend-state", @@ -122682,13 +122005,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-31T16:08:11Z", + "updatedAt": "2025-10-20T16:11:35Z", "createdAt": "2022-07-21T07:06:08Z", - "pushedAt": "2025-08-31T16:08:11Z", - "forks": 121, - "issues": 176, - "subscribers": 25, - "stars": 3867, + "pushedAt": "2025-10-20T16:11:35Z", + "forks": 125, + "issues": 179, + "subscribers": 23, + "stars": 3928, "dependencies": 1 }, "name": "@legendapp/state", @@ -122697,8 +122020,6 @@ "registry": "https://registry.npmjs.org/", "description": "Legend-State is a super fast and powerful state library that enables fine-grained reactivity and easy automatic persistence", "topics": [ - "react", - "react-native", "state", "hooks", "proxy" @@ -122713,25 +122034,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 121451, - "weekDownloads": 24825, + "downloads": 100834, + "weekDownloads": 22463, "size": 992478, "latestRelease": "2.1.15", "latestReleaseDate": "2024-08-30T18:05:31.880Z" }, - "score": 62, + "score": 65, "matchingScoreModifiers": [ "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.174, - "topicSearchString": "react react-native state hooks proxy" + "popularity": 0.189, + "topicSearchString": "state hooks proxy" }, { "githubUrl": "https://github.com/w88975/expo-click-outside", @@ -122753,13 +122074,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-04-07T14:45:08Z", + "updatedAt": "2025-10-09T02:09:19Z", "createdAt": "2025-04-07T03:52:26Z", - "pushedAt": "2025-04-07T14:45:08Z", - "forks": 0, + "pushedAt": "2025-10-09T02:09:19Z", + "forks": 4, "issues": 0, "subscribers": 1, - "stars": 8, + "stars": 10, "dependencies": 0 }, "name": "expo-click-outside", @@ -122767,7 +122088,6 @@ "isPrivate": false, "description": "A way to listen click outside of react-native and Expo (use native platform api).", "topics": [ - "react-native", "click-outside", "expo", "expo-click-outside", @@ -122783,22 +122103,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-click-outside", "npm": { - "downloads": 95, - "weekDownloads": 8, - "size": 47117, - "latestRelease": "0.1.0", - "latestReleaseDate": "2025-04-07T13:52:31.113Z" + "downloads": 250, + "weekDownloads": 69, + "size": 48082, + "latestRelease": "0.1.1", + "latestReleaseDate": "2025-10-09T02:07:45.003Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.927, - "topicSearchString": "react-native click-outside expo expo-click-outside expoclickoutside" + "popularity": -0.762, + "topicSearchString": "click-outside expo expo-click-outside expoclickoutside" }, { "githubUrl": "https://github.com/versatica/mediasoup-client", @@ -122816,14 +122138,14 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-07T15:53:46Z", + "updatedAt": "2025-10-20T18:07:16Z", "createdAt": "2017-07-18T16:44:51Z", - "pushedAt": "2025-09-07T15:53:46Z", - "forks": 239, - "issues": 3, - "subscribers": 45, - "stars": 633, - "dependencies": 10 + "pushedAt": "2025-10-20T18:07:16Z", + "forks": 245, + "issues": 4, + "subscribers": 43, + "stars": 638, + "dependencies": 9 }, "name": "mediasoup-client", "fullName": "versatica/mediasoup-client", @@ -122848,24 +122170,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "mediasoup-client", "npm": { - "downloads": 161547, - "weekDownloads": 29530, - "size": 577065, - "latestRelease": "3.15.6", - "latestReleaseDate": "2025-09-02T14:29:03.121Z" + "downloads": 160993, + "weekDownloads": 34008, + "size": 594299, + "latestRelease": "3.17.0", + "latestReleaseDate": "2025-10-20T18:08:46.621Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.155, + "popularity": 0.18, "topicSearchString": "webrtc ortc browser nodejs javascript sfu client-library" }, { @@ -122899,7 +122221,6 @@ "registry": "https://registry.npmjs.org/", "description": "A powerful, fully-featured checkbox component for React Native, built with TypeScript and designed for maximum flexibility, accessibility, and performance. Supports custom images, rich animations, grouped checkboxes, haptic feedback, and ready for the new architecture support.", "topics": [ - "react-native", "checkbox", "advanced-checkbox", "animation", @@ -122919,22 +122240,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-advanced-checkbox", "npm": { - "downloads": 854, - "weekDownloads": 128, + "downloads": 647, + "weekDownloads": 141, "size": 29087, "latestRelease": "2.0.6", "latestReleaseDate": "2025-05-13T09:13:12.799Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.872, - "topicSearchString": "react-native checkbox advanced-checkbox animation haptic accessibility group-checkbox android ios" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.814, + "topicSearchString": "checkbox advanced-checkbox animation haptic accessibility group-checkbox android ios" }, { "githubUrl": "https://github.com/mahdidavoodi7/bottom-sheet-stepper", @@ -122964,7 +122284,7 @@ "forks": 5, "issues": 3, "subscribers": 3, - "stars": 286, + "stars": 291, "dependencies": 0 }, "name": "bottom-sheet-stepper", @@ -122973,7 +122293,6 @@ "registry": "https://registry.npmjs.org/", "description": "A lightweight and customizable stepper component for React Native, built on top of @gorhom/bottom-sheet. Easily manage multi-step flows in a modal bottom sheet with smooth animations and full control.", "topics": [ - "react-native", "bottom-sheet", "stepper", "wizard", @@ -122997,12 +122316,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "bottom-sheet-stepper", "npm": { - "downloads": 219, - "weekDownloads": 11, + "downloads": 124, + "weekDownloads": 56, "size": 19354, "latestRelease": "0.1.8", "latestReleaseDate": "2025-06-08T07:31:13.057Z" @@ -123012,8 +122332,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": -0.707, - "topicSearchString": "react-native bottom-sheet stepper wizard multi-step modal bottom-sheet-stepper onboarding reanimated gorhom gesture-handler component expo" + "popularity": -0.364, + "topicSearchString": "bottom-sheet stepper wizard multi-step modal bottom-sheet-stepper onboarding reanimated gorhom gesture-handler component expo" }, { "githubUrl": "https://github.com/mahdidavoodi7/expo-image-compare", @@ -123052,7 +122372,6 @@ "description": "A customizable before-after image comparison slider for React Native & Expo using Reanimated v3.", "topics": [ "expo", - "react-native", "image-compare", "before-after-slider", "reanimated", @@ -123069,22 +122388,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-image-compare", "npm": { - "downloads": 110, - "weekDownloads": 18, + "downloads": 88, + "weekDownloads": 12, "size": 15927, "latestRelease": "1.0.0", "latestReleaseDate": "2025-04-09T08:42:14.449Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.856, - "topicSearchString": "expo react-native image-compare before-after-slider reanimated gesture-handler compare" + "popularity": -0.88, + "topicSearchString": "expo image-compare before-after-slider reanimated gesture-handler compare" }, { "githubUrl": "https://github.com/s77rt/react-native-sodium", @@ -123107,9 +122428,9 @@ "createdAt": "2025-04-01T10:09:32Z", "pushedAt": "2025-05-09T20:35:53Z", "forks": 0, - "issues": 2, + "issues": 3, "subscribers": 2, - "stars": 4, + "stars": 5, "dependencies": 0 }, "name": "@s77rt/react-native-sodium", @@ -123117,7 +122438,6 @@ "isPrivate": false, "description": "A fast cryptography module for React Native using libsodium.", "topics": [ - "react-native", "cryptography", "crypto", "encryption", @@ -123139,19 +122459,21 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 21, - "weekDownloads": 3, + "downloads": 55, + "weekDownloads": 2, "size": 19903218, "latestRelease": "0.4.0", "latestReleaseDate": "2025-05-09T20:24:43.271Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.85, - "topicSearchString": "react-native cryptography crypto encryption decryption hashing encoding decoding base64 libsodium sodium" + "popularity": -0.967, + "topicSearchString": "cryptography crypto encryption decryption hashing encoding decoding base64 libsodium sodium" }, { "githubUrl": "https://github.com/Hiroenzo/react-native-mqtt-clients", @@ -123186,7 +122508,6 @@ "registry": "https://registry.npmjs.org/", "description": "TCP-capable MQTT client for react native", "topics": [ - "react-native", "ios", "android", "mqtt", @@ -123203,23 +122524,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-mqtt-clients", "npm": { - "downloads": 76, - "weekDownloads": 37, + "downloads": 75, + "weekDownloads": 7, "size": 391915, "latestRelease": "0.2.2", "latestReleaseDate": "2025-01-21T01:14:44.794Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.565, - "topicSearchString": "react-native ios android mqtt cocoamqtt paho" + "popularity": -0.918, + "topicSearchString": "ios android mqtt cocoamqtt paho" }, { "githubUrl": "https://github.com/dpakakpo4/rn-use-google-places-autocomplete", @@ -123253,7 +122575,6 @@ "registry": "https://registry.npmjs.org/", "description": "A fully-typed and modern React Native hook for consuming Google New Places, without `axios` or unnecessary dependencies.", "topics": [ - "react-native", "ios", "android", "google-api", @@ -123269,22 +122590,21 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-use-google-places-autocomplete", "npm": { - "downloads": 157, - "weekDownloads": 25, + "downloads": 287, + "weekDownloads": 59, "size": 29518, "latestRelease": "1.1.1", "latestReleaseDate": "2025-04-09T17:22:53.646Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.861, - "topicSearchString": "react-native ios android google-api google-places-autocomplete" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.824, + "topicSearchString": "ios android google-api google-places-autocomplete" }, { "githubUrl": "https://github.com/shakebugs/shake-react-native", @@ -123311,7 +122631,7 @@ "pushedAt": "2025-04-15T15:27:13Z", "forks": 4, "issues": 1, - "subscribers": 2, + "subscribers": 1, "stars": 16, "dependencies": 0 }, @@ -123328,7 +122648,6 @@ "report", "android", "ios", - "react-native", "bug-reporting", "shake-sdk", "bug-reports", @@ -123344,19 +122663,23 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 8623, - "weekDownloads": 1209, + "downloads": 8029, + "weekDownloads": 1957, "size": 327678, "latestRelease": "17.1.3", "latestReleaseDate": "2025-08-21T14:53:00.788Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": -0.131, - "topicSearchString": "shakebugs shake sdk bug crash report android ios react-native bug-reporting shake-sdk bug-reports debugging" + "score": 35, + "matchingScoreModifiers": [ + "Not updated recently" + ], + "popularity": -0.043, + "topicSearchString": "shakebugs shake sdk bug crash report android ios bug-reporting shake-sdk bug-reports debugging" }, { "githubUrl": "https://github.com/better-auth/better-auth/tree/main/packages/better-auth", @@ -123375,14 +122698,14 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-13T19:12:05Z", + "updatedAt": "2025-10-20T21:43:22Z", "createdAt": "2024-05-19T21:40:04Z", - "pushedAt": "2025-09-13T19:12:05Z", - "forks": 1556, - "issues": 339, + "pushedAt": "2025-10-20T21:43:22Z", + "forks": 1745, + "issues": 332, "subscribers": 32, - "stars": 20395, - "dependencies": 12 + "stars": 22089, + "dependencies": 14 }, "name": "better-auth", "fullName": "better-auth/better-auth", @@ -123408,34 +122731,31 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "better-auth", "npm": { - "downloads": 1196831, - "weekDownloads": 198230, - "size": 16089605, - "latestRelease": "1.3.9", - "latestReleaseDate": "2025-09-08T19:22:32.274Z" + "downloads": 1585269, + "weekDownloads": 298957, + "size": 14179371, + "latestRelease": "1.3.28", + "latestReleaseDate": "2025-10-19T02:04:58.807Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.141, + "popularity": 0.16, "topicSearchString": "auth oauth oidc 2fa social security typescript nextjs" }, { "githubUrl": "https://github.com/better-auth/better-auth/tree/main/packages/expo", "npmPkg": "@better-auth/expo", - "examples": [ - "https://github.com/better-auth/better-auth/tree/main/examples/expo-example" - ], "ios": true, "android": true, "expoGo": true, @@ -123451,23 +122771,22 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-13T19:20:03Z", + "updatedAt": "2025-10-20T22:14:02Z", "createdAt": "2024-05-19T21:40:04Z", - "pushedAt": "2025-09-13T19:20:03Z", - "forks": 1556, - "issues": 339, + "pushedAt": "2025-10-20T22:14:02Z", + "forks": 1745, + "issues": 332, "subscribers": 32, - "stars": 20395, - "dependencies": 1 + "stars": 22089, + "dependencies": 2 }, "name": "@better-auth/expo", "fullName": "better-auth/better-auth", "isPrivate": false, - "description": "", + "description": "Better Auth integration for Expo and React Native applications.", "topics": [ "auth", "expo", - "react-native", "typescript", "better-auth" ], @@ -123481,26 +122800,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 99104, - "weekDownloads": 16459, - "size": 43463, - "latestRelease": "1.3.9", - "latestReleaseDate": "2025-09-08T19:22:36.782Z" + "downloads": 121874, + "weekDownloads": 24593, + "size": 68188, + "latestRelease": "1.3.28", + "latestReleaseDate": "2025-10-19T02:05:03.273Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.141, - "topicSearchString": "auth expo react-native typescript better-auth" + "popularity": 0.172, + "topicSearchString": "auth expo typescript better-auth" }, { "githubUrl": "https://github.com/BITNET-Infotech/react-native-wav-to-mp3", @@ -123532,7 +122851,6 @@ "isPrivate": false, "description": "A React Native library for converting WAV files to MP3 format using LAME encoder", "topics": [ - "react-native", "wav", "mp3", "audio", @@ -123549,11 +122867,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 25, - "weekDownloads": 0, + "downloads": 163, + "weekDownloads": 19, "size": 1103305, "latestRelease": "2.0.8", "latestReleaseDate": "2025-07-04T13:24:14.988Z" @@ -123562,8 +122881,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native wav mp3 audio converter lame" + "popularity": -0.9, + "topicSearchString": "wav mp3 audio converter lame" }, { "githubUrl": "https://github.com/eugenehp/react-native-uuid", @@ -123590,8 +122909,8 @@ "pushedAt": "2025-01-18T22:29:33Z", "forks": 35, "issues": 1, - "subscribers": 5, - "stars": 285, + "subscribers": 4, + "stars": 288, "dependencies": 0 }, "name": "react-native-uuid", @@ -123601,7 +122920,6 @@ "topics": [ "uuid", "rfc4122", - "react-native", "reactivelions", "random", "typescript" @@ -123616,12 +122934,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-uuid", "npm": { - "downloads": 1081255, - "weekDownloads": 180818, + "downloads": 1151152, + "weekDownloads": 268967, "size": 160169, "latestRelease": "2.0.3", "latestReleaseDate": "2024-11-11T23:41:01.220Z" @@ -123633,8 +122952,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.142, - "topicSearchString": "uuid rfc4122 react-native reactivelions random typescript" + "popularity": 0.199, + "topicSearchString": "uuid rfc4122 reactivelions random typescript" }, { "githubUrl": "https://github.com/Abhinandan-Kushwaha/react-native-screenshot-test", @@ -123683,12 +123002,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-screenshot-test", "npm": { - "downloads": 35, - "weekDownloads": 1, + "downloads": 41, + "weekDownloads": 4, "size": 40726, "latestRelease": "0.0.8", "latestReleaseDate": "2025-04-21T20:42:05.872Z" @@ -123697,7 +123017,7 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.975, + "popularity": -0.911, "topicSearchString": "screenshot-test screenshot-testing snapshot-test snapshot-testing test" }, { @@ -123716,13 +123036,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-05-28T16:50:09Z", + "updatedAt": "2025-10-01T16:59:57Z", "createdAt": "2025-02-22T09:18:57Z", - "pushedAt": "2025-05-28T16:50:09Z", - "forks": 3, + "pushedAt": "2025-10-01T16:59:57Z", + "forks": 4, "issues": 0, "subscribers": 1, - "stars": 71, + "stars": 75, "dependencies": 0 }, "name": "react-native-splash-view", @@ -123731,7 +123051,6 @@ "registry": "https://registry.npmjs.org/", "description": "🚀 A lightweight and flexible splash screen solution for React Native 0.76+ with New Architecture support!", "topics": [ - "react-native", "ios", "android", "component", @@ -123752,20 +123071,24 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-splash-view", "npm": { - "downloads": 14609, - "weekDownloads": 2031, - "size": 46867, - "latestRelease": "0.0.18", - "latestReleaseDate": "2025-05-28T16:50:33.427Z" + "downloads": 25865, + "weekDownloads": 4809, + "size": 46923, + "latestRelease": "0.0.19", + "latestReleaseDate": "2025-10-01T17:00:16.450Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": 0.118, - "topicSearchString": "react-native ios android component splash-screen splashscreen splash launch-screen launchscreen splash-view" + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": 0.158, + "topicSearchString": "ios android component splash-screen splashscreen splash launch-screen launchscreen splash-view" }, { "githubUrl": "https://github.com/tailwindlabs/tailwindcss/tree/main/packages/tailwindcss", @@ -123786,13 +123109,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-11T10:21:50Z", + "updatedAt": "2025-10-21T14:55:30Z", "createdAt": "2017-10-06T14:59:14Z", - "pushedAt": "2025-09-11T10:21:50Z", - "forks": 4691, - "issues": 65, - "subscribers": 618, - "stars": 90117, + "pushedAt": "2025-10-21T14:55:30Z", + "forks": 4725, + "issues": 54, + "subscribers": 620, + "stars": 90714, "dependencies": 0 }, "name": "tailwindcss", @@ -123810,25 +123133,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "tailwindcss", "npm": { - "downloads": 101792595, - "weekDownloads": 17367358, - "size": 682036, - "latestRelease": "4.1.13", - "latestReleaseDate": "2025-09-04T17:48:11.182Z" + "downloads": 106571782, + "weekDownloads": 21575111, + "size": 762308, + "latestRelease": "4.1.15", + "latestReleaseDate": "2025-10-20T13:24:28.586Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.145, + "popularity": 0.172, "topicSearchString": "" }, { @@ -123854,7 +123177,7 @@ "forks": 15, "issues": 2, "subscribers": 1, - "stars": 74, + "stars": 77, "dependencies": 0 }, "name": "react-native-country-flag", @@ -123862,7 +123185,6 @@ "isPrivate": false, "description": "This is a React-Native package to display every 254 Country flags with the ISO 3166-1 alpha-2 Standard!", "topics": [ - "react-native", "country", "flags", "flag", @@ -123879,12 +123201,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-country-flag", "npm": { - "downloads": 91120, - "weekDownloads": 15428, + "downloads": 96929, + "weekDownloads": 22244, "size": 8223, "latestRelease": "2.0.2", "latestReleaseDate": "2023-09-04T11:18:09.834Z" @@ -123894,8 +123217,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.144, - "topicSearchString": "react-native country flags flag iso icon" + "popularity": 0.195, + "topicSearchString": "country flags flag iso icon" }, { "githubUrl": "https://github.com/xxsnakerxx/react-native-alert-queue", @@ -123920,7 +123243,7 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 22, + "stars": 23, "dependencies": 0 }, "name": "react-native-alert-queue", @@ -123929,15 +123252,13 @@ "registry": "https://registry.npmjs.org/", "description": "Promise-based, queued and fully customizable Alert for React Native.", "topics": [ - "react-native", "alert", "dialog", "promise", "async", "queue", "modal", - "ui", - "react" + "ui" ], "license": { "key": "mit", @@ -123949,12 +123270,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-alert-queue", "npm": { - "downloads": 201, - "weekDownloads": 22, + "downloads": 256, + "weekDownloads": 43, "size": 161301, "latestRelease": "2.1.0", "latestReleaseDate": "2025-05-01T10:08:49.922Z" @@ -123963,8 +123285,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.906, - "topicSearchString": "react-native alert dialog promise async queue modal ui react" + "popularity": -0.857, + "topicSearchString": "alert dialog promise async queue modal ui" }, { "githubUrl": "https://github.com/JairajJangle/react-native-tiny-wavpack-decoder", @@ -124003,7 +123325,6 @@ "registry": "https://registry.npmjs.org/", "description": "Tiny version of WavPack to decode WavPack(.wv) file to Wav(.wav) using original Tiny Decoder C Sources for React Native", "topics": [ - "react-native", "wavpack", "audio-decoder", "turbo-module", @@ -124013,7 +123334,7 @@ "audio-processing", "wav", "file-conversion", - "native-module", + "module", "audio", "decoder", "cross-platform", @@ -124029,22 +123350,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-tiny-wavpack-decoder", "npm": { - "downloads": 225, - "weekDownloads": 13, + "downloads": 199, + "weekDownloads": 60, "size": 272291, "latestRelease": "1.1.1", "latestReleaseDate": "2025-08-30T13:00:07.535Z" }, - "score": 51, - "matchingScoreModifiers": [ - "Recently updated" - ], - "popularity": -0.95, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.739, + "topicSearchString": "wavpack audio-decoder turbo-module new-architecture ios android audio-processing wav file-conversion module audio decoder cross-platform progress-events" }, { "githubUrl": "https://github.com/ammarahm-ed/react-native-gzip", @@ -124066,8 +123387,8 @@ "pushedAt": "2023-08-26T05:44:40Z", "forks": 9, "issues": 3, - "subscribers": 3, - "stars": 20, + "subscribers": 2, + "stars": 21, "dependencies": 0 }, "name": "react-native-gzip", @@ -124076,7 +123397,6 @@ "registry": "https://registry.npmjs.org/", "description": "Fast gzip to compress strings for android & ios in React Native", "topics": [ - "react-native", "ios", "android", "gzip", @@ -124093,24 +123413,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-gzip", "npm": { - "downloads": 140792, - "weekDownloads": 11671, + "downloads": 211972, + "weekDownloads": 57334, "size": 29032, "latestRelease": "1.1.0", "latestReleaseDate": "2023-08-26T05:51:03.540Z" }, - "score": 32, + "score": 41, "matchingScoreModifiers": [ + "Known", "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.93, - "topicSearchString": "react-native ios android gzip compress decompress" + "popularity": -0.77, + "topicSearchString": "ios android gzip compress decompress" }, { "githubUrl": "https://github.com/bamlab/react-tv-space-navigation/tree/main/packages/lib", @@ -124131,10 +123453,10 @@ "updatedAt": "2025-07-18T15:32:14Z", "createdAt": "2023-07-03T08:43:05Z", "pushedAt": "2025-07-18T15:32:14Z", - "forks": 36, - "issues": 37, + "forks": 39, + "issues": 28, "subscribers": 10, - "stars": 286, + "stars": 293, "dependencies": 2 }, "name": "react-tv-space-navigation", @@ -124151,11 +123473,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2590, - "weekDownloads": 453, + "downloads": 2628, + "weekDownloads": 503, "size": 695643, "latestRelease": "6.0.0-beta1", "latestReleaseDate": "2025-07-17T07:38:47.619Z" @@ -124165,7 +123488,7 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.149, + "popularity": 0.163, "topicSearchString": "" }, { @@ -124201,7 +123524,6 @@ "isPrivate": false, "description": "Emoji Picker for React Native", "topics": [ - "react-native", "expo", "expo-emoji-picker", "emoji", @@ -124218,22 +123540,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-emoji-picker", "npm": { - "downloads": 225, - "weekDownloads": 12, + "downloads": 86, + "weekDownloads": 16, "size": 520912, "latestRelease": "1.0.0", "latestReleaseDate": "2025-04-26T11:00:47.122Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.954, - "topicSearchString": "react-native expo expo-emoji-picker emoji ios android" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.84, + "topicSearchString": "expo expo-emoji-picker emoji ios android" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-background-task", @@ -124244,6 +123566,7 @@ "android": true, "tvos": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/expo/expo", @@ -124255,13 +123578,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-01T01:01:24Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 1 }, "name": "expo-background-task", @@ -124270,7 +123593,6 @@ "description": "Expo Android and iOS module for Background Task APIs", "topics": [ "expo", - "react-native", "background", "background-task" ], @@ -124284,27 +123606,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-background-task", "npm": { - "downloads": 165754, - "weekDownloads": 24111, - "size": 131948, - "latestRelease": "1.0.7", - "latestReleaseDate": "2025-09-11T20:26:24.592Z" + "downloads": 164466, + "weekDownloads": 36301, + "size": 138577, + "latestRelease": "1.0.8", + "latestReleaseDate": "2025-09-18T21:32:59.093Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.124, - "topicSearchString": "expo react-native background background-task" + "popularity": 0.188, + "topicSearchString": "expo background background-task" }, { "githubUrl": "https://github.com/software-mansion-labs/react-native-webgpu-worklets", @@ -124330,7 +123653,7 @@ "forks": 0, "issues": 2, "subscribers": 3, - "stars": 153, + "stars": 156, "dependencies": 0 }, "name": "react-native-webgpu-worklets", @@ -124339,7 +123662,6 @@ "registry": "https://registry.npmjs.org/", "description": "ThreeJS + wgpu-matrix + TypeGPU for WebGPU on Reanimated Worklets", "topics": [ - "react-native", "ios", "android" ], @@ -124353,23 +123675,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-webgpu-worklets", "npm": { - "downloads": 186, - "weekDownloads": 12, + "downloads": 108, + "weekDownloads": 24, "size": 38243192, "latestRelease": "0.3.0", "latestReleaseDate": "2025-08-28T15:31:16.782Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.694, - "topicSearchString": "react-native ios android" + "popularity": -0.558, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/zoontek/react-native-edge-to-edge/tree/main/react-native-is-edge-to-edge", @@ -124392,8 +123714,8 @@ "pushedAt": "2025-07-14T12:29:01Z", "forks": 28, "issues": 3, - "subscribers": 7, - "stars": 943, + "subscribers": 6, + "stars": 971, "dependencies": 0 }, "name": "react-native-is-edge-to-edge", @@ -124401,8 +123723,6 @@ "isPrivate": false, "description": "Detect react-native-edge-to-edge package install", "topics": [ - "react", - "react-native", "edge-to-edge", "status-bar", "navigation-bar", @@ -124419,12 +123739,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-is-edge-to-edge", "npm": { - "downloads": 8644745, - "weekDownloads": 1466020, + "downloads": 8725423, + "weekDownloads": 1934115, "size": 13042, "latestRelease": "1.2.1", "latestReleaseDate": "2025-07-01T16:08:51.760Z" @@ -124436,8 +123757,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.144, - "topicSearchString": "react react-native edge-to-edge status-bar navigation-bar system-bar system-bars" + "popularity": 0.188, + "topicSearchString": "edge-to-edge status-bar navigation-bar system-bar system-bars" }, { "githubUrl": "https://github.com/wn-na/react-native-capture-protection", @@ -124451,6 +123772,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/wn-na/react-native-capture-protection", @@ -124462,13 +123784,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-23T12:06:34Z", + "updatedAt": "2025-10-09T05:06:42Z", "createdAt": "2022-12-02T00:49:58Z", - "pushedAt": "2025-08-23T12:06:34Z", - "forks": 16, + "pushedAt": "2025-10-09T05:06:42Z", + "forks": 17, "issues": 2, "subscribers": 3, - "stars": 223, + "stars": 242, "dependencies": 0 }, "name": "react-native-capture-protection", @@ -124477,7 +123799,6 @@ "registry": "https://registry.npmjs.org/", "description": "🛡️ A React Native library to prevent and detect for screen capture, screenshots and app switcher for enhanced security. Fully compatible with both Expo and CLI.", "topics": [ - "react-native", "ios", "android", "screen-capture", @@ -124498,23 +123819,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-capture-protection", "npm": { - "downloads": 26817, - "weekDownloads": 3498, - "size": 188315, - "latestRelease": "2.3.0", - "latestReleaseDate": "2025-08-23T12:13:20.430Z" + "downloads": 33158, + "weekDownloads": 7628, + "size": 175789, + "latestRelease": "2.3.2", + "latestReleaseDate": "2025-10-09T05:10:08.147Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": 0.111, - "topicSearchString": "react-native ios android screen-capture screenrecord screenshot mobile-security privacy screenshot-protection security" + "popularity": 0.196, + "topicSearchString": "ios android screen-capture screenrecord screenshot mobile-security privacy screenshot-protection security" }, { "githubUrl": "https://github.com/stallion-tech/react-native-stallion", @@ -124540,7 +123863,7 @@ "forks": 1, "issues": 5, "subscribers": 2, - "stars": 97, + "stars": 101, "dependencies": 0 }, "name": "react-native-stallion", @@ -124548,7 +123871,6 @@ "isPrivate": false, "description": "Stallion is a fully managed over the air (OTA) update platform for React Native. Test, deploy, and roll back JavaScript bundle updates without app store releases. Built-in testing framework, real-time analytics, and advanced rollout control included.", "topics": [ - "react-native", "ios", "android", "stallion" @@ -124563,12 +123885,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-stallion", "npm": { - "downloads": 3682, - "weekDownloads": 418, + "downloads": 4753, + "weekDownloads": 1057, "size": 485114, "latestRelease": "2.2.0", "latestReleaseDate": "2025-06-06T07:22:58.101Z" @@ -124577,8 +123900,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.097, - "topicSearchString": "react-native ios android stallion" + "popularity": 0.189, + "topicSearchString": "ios android stallion" }, { "githubUrl": "https://github.com/razorRun/react-native-vlc-media-player", @@ -124587,6 +123910,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/razorRun/react-native-vlc-media-player", @@ -124598,13 +123922,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-04T19:24:21Z", + "updatedAt": "2025-09-22T10:50:57Z", "createdAt": "2020-04-08T02:52:26Z", - "pushedAt": "2025-09-04T19:24:21Z", - "forks": 199, - "issues": 9, - "subscribers": 11, - "stars": 410, + "pushedAt": "2025-09-22T10:50:57Z", + "forks": 203, + "issues": 13, + "subscribers": 12, + "stars": 418, "dependencies": 2 }, "name": "react-native-vlc-media-player", @@ -124616,7 +123940,6 @@ "player", "android", "ios", - "react-native", "mp4", "rtsp", "media", @@ -124637,15 +123960,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "react-native-vlc-media-player", "npm": { - "downloads": 9107, - "weekDownloads": 1302, - "size": 324488, - "latestRelease": "1.0.94", - "latestReleaseDate": "2025-09-04T19:24:36.752Z" + "downloads": 8008, + "weekDownloads": 2024, + "size": 325443, + "latestRelease": "1.0.96", + "latestReleaseDate": "2025-09-22T10:51:36.784Z" }, "score": 57, "matchingScoreModifiers": [ @@ -124653,8 +123977,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.122, - "topicSearchString": "vlc player android ios react-native mp4 rtsp media video media-player rtmp video-player video-streaming vlc-player" + "popularity": 0.215, + "topicSearchString": "vlc player android ios mp4 rtsp media video media-player rtmp video-player video-streaming vlc-player" }, { "githubUrl": "https://github.com/urbanairship/react-native-airship", @@ -124675,13 +123999,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-27T17:42:02Z", + "updatedAt": "2025-10-08T01:48:03Z", "createdAt": "2017-05-01T16:25:14Z", - "pushedAt": "2025-08-27T17:42:02Z", + "pushedAt": "2025-10-08T01:48:03Z", "forks": 59, - "issues": 2, - "subscribers": 71, - "stars": 89, + "issues": 3, + "subscribers": 70, + "stars": 90, "dependencies": 0 }, "name": "@ua/react-native-airship", @@ -124690,7 +124014,6 @@ "registry": "https://registry.npmjs.org/", "description": "Airship React Native module", "topics": [ - "react-native", "ios", "android", "airship" @@ -124705,23 +124028,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 120472, - "weekDownloads": 16784, + "downloads": 111656, + "weekDownloads": 23478, "size": 824490, - "latestRelease": "25.1.0", - "latestReleaseDate": "2025-08-27T17:58:31.222Z" + "latestRelease": "25.3.0", + "latestReleaseDate": "2025-10-08T01:52:43.700Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.118, - "topicSearchString": "react-native ios android airship" + "popularity": 0.179, + "topicSearchString": "ios android airship" }, { "githubUrl": "https://github.com/prisma/react-native-prisma", @@ -124731,6 +124055,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/prisma/react-native-prisma", @@ -124747,8 +124072,8 @@ "pushedAt": "2024-12-16T14:45:03Z", "forks": 9, "issues": 26, - "subscribers": 10, - "stars": 261, + "subscribers": 9, + "stars": 263, "dependencies": 2 }, "name": "@prisma/react-native", @@ -124757,7 +124082,6 @@ "registry": "https://registry.npmjs.org/", "description": "Prisma for react-native", "topics": [ - "react-native", "ios", "android" ], @@ -124771,23 +124095,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 821, - "weekDownloads": 75, + "downloads": 4382, + "weekDownloads": 52, "size": 132404881, "latestRelease": "6.0.1", "latestReleaseDate": "2024-12-04T17:24:32.614Z" }, - "score": 41, + "score": 43, "matchingScoreModifiers": [ "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.672, - "topicSearchString": "react-native ios android" + "popularity": 0.01, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/s77rt/react-native-date-picker", @@ -124817,10 +124142,10 @@ "updatedAt": "2025-07-15T23:06:16Z", "createdAt": "2025-04-27T22:34:15Z", "pushedAt": "2025-07-15T23:06:16Z", - "forks": 2, + "forks": 3, "issues": 6, "subscribers": 1, - "stars": 115, + "stars": 123, "dependencies": 0 }, "name": "@s77rt/react-native-date-picker", @@ -124828,7 +124153,6 @@ "isPrivate": false, "description": "Native Date, Time, Datetime and Yearmonth Picker", "topics": [ - "react-native", "date-picker", "time-picker", "calendar" @@ -124843,19 +124167,21 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 949, - "weekDownloads": 66, + "downloads": 851, + "weekDownloads": 138, "size": 164984, "latestRelease": "3.1.1", "latestReleaseDate": "2025-07-15T23:07:31.614Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.691, - "topicSearchString": "react-native date-picker time-picker calendar" + "popularity": -0.612, + "topicSearchString": "date-picker time-picker calendar" }, { "githubUrl": "https://github.com/deepktp/react-native-vikalp-elements/tree/next/packages/base", @@ -124881,7 +124207,7 @@ "forks": 8, "issues": 6, "subscribers": 1, - "stars": 37, + "stars": 39, "dependencies": 6 }, "name": "@rn-vui/base", @@ -124889,10 +124215,7 @@ "isPrivate": false, "description": "Cross Platform React Native UI Toolkit", "topics": [ - "react", - "native", - "react-native", - "react-native-velements", + "velements", "rn-vui", "ui", "components", @@ -124911,22 +124234,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4749, - "weekDownloads": 691, + "downloads": 6470, + "weekDownloads": 1616, "size": 299599, "latestRelease": "5.1.10", "latestReleaseDate": "2025-08-23T10:56:38.184Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.124, - "topicSearchString": "react native react-native react-native-velements rn-vui ui components ui-library ios android bootstrap" + "popularity": 0.212, + "topicSearchString": "velements rn-vui ui components ui-library ios android bootstrap" }, { "githubUrl": "https://github.com/deepktp/react-native-vikalp-elements/tree/next/packages/themed", @@ -124952,7 +124275,7 @@ "forks": 8, "issues": 6, "subscribers": 1, - "stars": 37, + "stars": 39, "dependencies": 0 }, "name": "@rn-vui/themed", @@ -124960,10 +124283,7 @@ "isPrivate": false, "description": "Cross Platform React Native UI Toolkit", "topics": [ - "react", - "native", - "react-native", - "react-native-velements", + "velements", "elements", "elements-themed", "themed", @@ -124988,22 +124308,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4735, - "weekDownloads": 685, + "downloads": 6384, + "weekDownloads": 1615, "size": 69641, "latestRelease": "5.1.10", "latestReleaseDate": "2025-08-23T10:56:54.523Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.123, - "topicSearchString": "react native react-native react-native-velements elements elements-themed themed ui rneui rn-vui themed ui components ui-library ios android bootstrap" + "popularity": 0.215, + "topicSearchString": "velements elements elements-themed themed ui rneui rn-vui themed ui components ui-library ios android bootstrap" }, { "githubUrl": "https://github.com/rudderlabs/rudder-sdk-react-native/tree/develop/libs/sdk", @@ -125027,7 +124347,7 @@ "pushedAt": "2025-06-05T08:08:31Z", "forks": 0, "issues": 3, - "subscribers": 7, + "subscribers": 6, "stars": 17, "dependencies": 1 }, @@ -125036,7 +124356,6 @@ "isPrivate": false, "description": "Rudder React Native SDK", "topics": [ - "react-native", "rudder" ], "license": { @@ -125049,21 +124368,20 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 49120, - "weekDownloads": 9704, + "downloads": 55942, + "weekDownloads": 12343, "size": 196378, "latestRelease": "3.0.0", "latestReleaseDate": "2025-06-05T12:44:51.167Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.082, - "topicSearchString": "react-native rudder" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.062, + "topicSearchString": "rudder" }, { "githubUrl": "https://github.com/rudderlabs/rudder-sdk-react-native/tree/develop/libs/plugins/rudder-plugin-db-encryption-react-native", @@ -125086,7 +124404,7 @@ "pushedAt": "2025-06-05T08:08:31Z", "forks": 0, "issues": 3, - "subscribers": 7, + "subscribers": 6, "stars": 17, "dependencies": 0 }, @@ -125095,7 +124413,6 @@ "isPrivate": false, "description": "Rudder React Native DBEncryption Plugin support for Android and iOS", "topics": [ - "react-native", "rudder", "db-encryption" ], @@ -125109,11 +124426,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 188, - "weekDownloads": 58, + "downloads": 226, + "weekDownloads": 38, "size": 42940, "latestRelease": "1.4.1", "latestReleaseDate": "2025-06-05T12:44:55.421Z" @@ -125122,8 +124440,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.736, - "topicSearchString": "react-native rudder db-encryption" + "popularity": -0.857, + "topicSearchString": "rudder db-encryption" }, { "githubUrl": "https://github.com/rudderlabs/rudder-sdk-react-native/tree/develop/libs/rudder-integration-amplitude-react-native", @@ -125146,7 +124464,7 @@ "pushedAt": "2025-04-29T09:42:02Z", "forks": 0, "issues": 3, - "subscribers": 7, + "subscribers": 6, "stars": 17, "dependencies": 0 }, @@ -125155,7 +124473,6 @@ "isPrivate": false, "description": "Rudder React Native SDK Amplitude Device mode support for Android and iOS", "topics": [ - "react-native", "rudder", "amplitude" ], @@ -125169,11 +124486,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 261, - "weekDownloads": 63, + "downloads": 201, + "weekDownloads": 43, "size": 43243, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:29.223Z" @@ -125182,8 +124500,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.793, - "topicSearchString": "react-native rudder amplitude" + "popularity": -0.817, + "topicSearchString": "rudder amplitude" }, { "githubUrl": "https://github.com/rudderlabs/rudder-sdk-react-native/tree/develop/libs/rudder-integration-appcenter-react-native", @@ -125206,7 +124524,7 @@ "pushedAt": "2025-04-29T09:42:02Z", "forks": 0, "issues": 3, - "subscribers": 7, + "subscribers": 6, "stars": 17, "dependencies": 0 }, @@ -125215,7 +124533,6 @@ "isPrivate": false, "description": "Rudder React Native SDK Appcenter Device mode support for Android and iOS", "topics": [ - "react-native", "rudder", "appcenter" ], @@ -125229,11 +124546,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 648, - "weekDownloads": 130, + "downloads": 838, + "weekDownloads": 187, "size": 45581, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:31.091Z" @@ -125242,8 +124560,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.829, - "topicSearchString": "react-native rudder appcenter" + "popularity": -0.81, + "topicSearchString": "rudder appcenter" }, { "githubUrl": "https://github.com/rudderlabs/rudder-sdk-react-native/tree/develop/libs/rudder-integration-appsflyer-react-native", @@ -125266,7 +124584,7 @@ "pushedAt": "2025-04-29T09:42:02Z", "forks": 0, "issues": 3, - "subscribers": 7, + "subscribers": 6, "stars": 17, "dependencies": 0 }, @@ -125275,7 +124593,6 @@ "isPrivate": false, "description": "Rudder React Native SDK Appsflyer Device mode support for Android and iOS", "topics": [ - "react-native", "rudder", "appsflyer" ], @@ -125289,11 +124606,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 621, - "weekDownloads": 150, + "downloads": 804, + "weekDownloads": 221, "size": 78391, "latestRelease": "1.7.0", "latestReleaseDate": "2025-04-29T10:32:33.158Z" @@ -125302,8 +124620,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.795, - "topicSearchString": "react-native rudder appsflyer" + "popularity": -0.766, + "topicSearchString": "rudder appsflyer" }, { "githubUrl": "https://github.com/rudderlabs/rudder-sdk-react-native/tree/develop/libs/rudder-integration-braze-react-native", @@ -125326,7 +124644,7 @@ "pushedAt": "2025-04-29T09:34:11Z", "forks": 0, "issues": 3, - "subscribers": 7, + "subscribers": 6, "stars": 17, "dependencies": 0 }, @@ -125335,7 +124653,6 @@ "isPrivate": false, "description": "Rudder React Native SDK Braze Device mode support for Android and iOS", "topics": [ - "react-native", "rudder", "braze" ], @@ -125349,11 +124666,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 151, - "weekDownloads": 23, + "downloads": 188, + "weekDownloads": 53, "size": 44155, "latestRelease": "2.0.0", "latestReleaseDate": "2025-04-29T10:32:35.390Z" @@ -125362,8 +124680,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.869, - "topicSearchString": "react-native rudder braze" + "popularity": -0.759, + "topicSearchString": "rudder braze" }, { "githubUrl": "https://github.com/rudderlabs/rudder-sdk-react-native/tree/develop/libs/rudder-integration-clevertap-react-native", @@ -125386,7 +124704,7 @@ "pushedAt": "2025-04-29T09:42:02Z", "forks": 0, "issues": 3, - "subscribers": 7, + "subscribers": 6, "stars": 17, "dependencies": 0 }, @@ -125395,7 +124713,6 @@ "isPrivate": false, "description": "Rudder React Native SDK CleverTap Device mode support for Android and iOS", "topics": [ - "react-native", "rudder", "clevertap" ], @@ -125409,11 +124726,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 189, - "weekDownloads": 35, + "downloads": 319, + "weekDownloads": 84, "size": 44124, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:37.525Z" @@ -125422,8 +124740,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.841, - "topicSearchString": "react-native rudder clevertap" + "popularity": -0.776, + "topicSearchString": "rudder clevertap" }, { "githubUrl": "https://github.com/rudderlabs/rudder-sdk-react-native/tree/develop/libs/rudder-integration-facebook-react-native", @@ -125446,7 +124764,7 @@ "pushedAt": "2025-04-29T09:42:02Z", "forks": 0, "issues": 3, - "subscribers": 7, + "subscribers": 6, "stars": 17, "dependencies": 0 }, @@ -125455,7 +124773,6 @@ "isPrivate": false, "description": "RudderStack React Native SDK Facebook Device mode integration for Android and iOS", "topics": [ - "react-native", "rudder", "facebook" ], @@ -125469,11 +124786,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 44, - "weekDownloads": 7, + "downloads": 120, + "weekDownloads": 8, "size": 38309, "latestRelease": "1.1.0", "latestReleaseDate": "2025-04-29T10:32:39.686Z" @@ -125482,8 +124800,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.86, - "topicSearchString": "react-native rudder facebook" + "popularity": -0.943, + "topicSearchString": "rudder facebook" }, { "githubUrl": "https://github.com/rudderlabs/rudder-sdk-react-native/tree/develop/libs/rudder-integration-firebase-react-native", @@ -125501,12 +124819,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-29T08:37:06Z", + "updatedAt": "2025-10-15T10:50:53Z", "createdAt": "2019-11-18T12:21:24Z", - "pushedAt": "2025-07-29T08:37:06Z", + "pushedAt": "2025-10-15T10:50:53Z", "forks": 0, "issues": 3, - "subscribers": 7, + "subscribers": 6, "stars": 17, "dependencies": 0 }, @@ -125515,7 +124833,6 @@ "isPrivate": false, "description": "Rudder React Native SDK Firebase Device mode support for Android and iOS", "topics": [ - "react-native", "rudder", "firebase" ], @@ -125529,21 +124846,22 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 8153, - "weekDownloads": 1403, - "size": 27369, - "latestRelease": "2.1.0", - "latestReleaseDate": "2025-07-29T09:10:17.144Z" + "downloads": 10264, + "weekDownloads": 2186, + "size": 27838, + "latestRelease": "2.2.0", + "latestReleaseDate": "2025-10-15T11:03:10.000Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.104, - "topicSearchString": "react-native rudder firebase" + "popularity": -0.069, + "topicSearchString": "rudder firebase" }, { "githubUrl": "https://github.com/rudderlabs/rudder-sdk-react-native/tree/develop/libs/rudder-integration-moengage-react-native", @@ -125566,7 +124884,7 @@ "pushedAt": "2025-04-29T09:42:02Z", "forks": 0, "issues": 3, - "subscribers": 7, + "subscribers": 6, "stars": 17, "dependencies": 0 }, @@ -125575,7 +124893,6 @@ "isPrivate": false, "description": "Rudder React Native SDK Moengage Device mode support for Android and iOS", "topics": [ - "react-native", "rudder", "moengage" ], @@ -125589,11 +124906,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 39, - "weekDownloads": 0, + "downloads": 171, + "weekDownloads": 7, "size": 43031, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:43.693Z" @@ -125602,8 +124920,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native rudder moengage" + "popularity": -0.965, + "topicSearchString": "rudder moengage" }, { "githubUrl": "https://github.com/rudderlabs/rudder-sdk-react-native/tree/develop/libs/rudder-integration-singular-react-native", @@ -125626,7 +124944,7 @@ "pushedAt": "2025-04-29T09:42:02Z", "forks": 0, "issues": 3, - "subscribers": 7, + "subscribers": 6, "stars": 17, "dependencies": 0 }, @@ -125635,7 +124953,6 @@ "isPrivate": false, "description": "Rudder React Native SDK Singular Device mode support for Android and iOS", "topics": [ - "react-native", "rudder", "singular" ], @@ -125649,11 +124966,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 71, - "weekDownloads": 1, + "downloads": 130, + "weekDownloads": 12, "size": 43104, "latestRelease": "1.2.0", "latestReleaseDate": "2025-04-29T10:32:45.799Z" @@ -125662,8 +124980,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.988, - "topicSearchString": "react-native rudder singular" + "popularity": -0.92, + "topicSearchString": "rudder singular" }, { "githubUrl": "https://github.com/AzzappApp/react-native-skia-video", @@ -125684,13 +125002,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-04-04T15:16:28Z", + "updatedAt": "2025-09-26T07:22:31Z", "createdAt": "2024-05-06T18:19:55Z", - "pushedAt": "2025-04-04T15:16:28Z", - "forks": 7, + "pushedAt": "2025-09-26T07:22:31Z", + "forks": 9, "issues": 11, "subscribers": 6, - "stars": 117, + "stars": 121, "dependencies": 0 }, "name": "@azzapp/react-native-skia-video", @@ -125699,7 +125017,6 @@ "registry": "https://registry.npmjs.org/", "description": "Video encoding/decoding support for React Native Skia", "topics": [ - "react-native", "ios", "android", "skia", @@ -125716,21 +125033,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 1874, - "weekDownloads": 299, - "size": 364394, - "latestRelease": "0.8.3", - "latestReleaseDate": "2024-12-22T18:11:04.892Z" + "downloads": 2158, + "weekDownloads": 435, + "size": 368072, + "latestRelease": "0.9.0", + "latestReleaseDate": "2025-09-26T07:22:27.721Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.136, - "topicSearchString": "react-native ios android skia video video-composition" + "popularity": 0.172, + "topicSearchString": "ios android skia video video-composition" }, { "githubUrl": "https://github.com/bluesky-social/expo-image-crop-tool", @@ -125754,9 +125073,9 @@ "createdAt": "2025-05-03T02:24:40Z", "pushedAt": "2025-07-18T18:10:54Z", "forks": 7, - "issues": 5, - "subscribers": 7, - "stars": 39, + "issues": 6, + "subscribers": 6, + "stars": 43, "dependencies": 0 }, "name": "expo-image-crop-tool", @@ -125764,7 +125083,6 @@ "isPrivate": false, "description": "An image cropper for Expo", "topics": [ - "react-native", "expo", "expo-image-crop-tool", "image-crop-tool", @@ -125783,12 +125101,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-image-crop-tool", "npm": { - "downloads": 11442, - "weekDownloads": 1808, + "downloads": 12769, + "weekDownloads": 2527, "size": 38387, "latestRelease": "0.3.1", "latestReleaseDate": "2025-07-18T18:11:11.329Z" @@ -125797,8 +125117,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.134, - "topicSearchString": "react-native expo expo-image-crop-tool image-crop-tool cropper crop-tool image expoimagecroptool" + "popularity": 0.168, + "topicSearchString": "expo expo-image-crop-tool image-crop-tool cropper crop-tool image expoimagecroptool" }, { "githubUrl": "https://github.com/echowaves/expo-cached-image", @@ -125817,14 +125137,14 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-17T18:01:02Z", + "updatedAt": "2025-10-18T19:09:40Z", "createdAt": "2021-06-11T16:50:45Z", - "pushedAt": "2025-07-17T18:01:02Z", + "pushedAt": "2025-10-18T19:09:40Z", "forks": 21, "issues": 1, "subscribers": 2, - "stars": 93, - "dependencies": 1 + "stars": 97, + "dependencies": 0 }, "name": "expo-cached-image", "fullName": "echowaves/expo-cached-image", @@ -125832,7 +125152,6 @@ "description": "Super fast cached image component for react-native applications powered by expo", "topics": [ "expo", - "react-native", "image", "cached" ], @@ -125846,23 +125165,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-cached-image", "npm": { - "downloads": 94760, - "weekDownloads": 59978, - "size": 19051, - "latestRelease": "53.0.13", - "latestReleaseDate": "2025-07-17T18:01:13.670Z" + "downloads": 5490, + "weekDownloads": 1025, + "size": 22983, + "latestRelease": "54.0.7", + "latestReleaseDate": "2025-10-13T22:40:20.931Z" }, "score": 51, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.788, - "topicSearchString": "expo react-native image cached" + "popularity": 0.159, + "topicSearchString": "expo image cached" }, { "githubUrl": "https://github.com/alanjhughes/expo-shazamkit", @@ -125870,6 +125189,7 @@ "https://github.com/alanjhughes/expo-shazamkit/tree/main/example" ], "ios": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/alanjhughes/expo-shazamkit", @@ -125884,7 +125204,7 @@ "updatedAt": "2024-01-11T23:38:51Z", "createdAt": "2023-03-23T15:19:06Z", "pushedAt": "2024-01-11T23:38:51Z", - "forks": 5, + "forks": 4, "issues": 3, "subscribers": 2, "stars": 63, @@ -125895,7 +125215,6 @@ "isPrivate": false, "description": "Shazam for React Native", "topics": [ - "react-native", "expo", "shazamkit", "shazam", @@ -125912,12 +125231,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-shazamkit", "npm": { - "downloads": 64, - "weekDownloads": 19, + "downloads": 114, + "weekDownloads": 14, "size": 25395, "latestRelease": "1.0.0", "latestReleaseDate": "2024-01-11T23:40:14.472Z" @@ -125927,8 +125248,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.497, - "topicSearchString": "react-native expo shazamkit shazam music ios" + "popularity": -0.642, + "topicSearchString": "expo shazamkit shazam music ios" }, { "githubUrl": "https://github.com/deepktp/react-native-vikalp-ratings", @@ -125969,7 +125290,6 @@ "registry": "https://registry.npmjs.org/", "description": "..", "topics": [ - "react-native", "ios", "android" ], @@ -125983,11 +125303,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4626, - "weekDownloads": 691, + "downloads": 6645, + "weekDownloads": 1636, "size": 103415, "latestRelease": "0.5.0", "latestReleaseDate": "2025-05-16T17:44:36.588Z" @@ -125996,8 +125317,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.123, - "topicSearchString": "react-native ios android" + "popularity": -0.041, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/jquense/yup", @@ -126018,13 +125339,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-08-01T17:41:22Z", + "updatedAt": "2025-09-22T13:43:22Z", "createdAt": "2014-09-22T23:54:22Z", - "pushedAt": "2025-08-01T17:41:22Z", - "forks": 934, - "issues": 158, - "subscribers": 77, - "stars": 23558, + "pushedAt": "2025-09-22T13:43:22Z", + "forks": 935, + "issues": 157, + "subscribers": 75, + "stars": 23596, "dependencies": 4 }, "name": "yup", @@ -126042,25 +125363,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "yup", "npm": { - "downloads": 35355424, - "weekDownloads": 6013788, - "size": 270136, - "latestRelease": "1.7.0", - "latestReleaseDate": "2025-08-01T17:41:04.348Z" + "downloads": 33573864, + "weekDownloads": 7689465, + "size": 270432, + "latestRelease": "1.7.1", + "latestReleaseDate": "2025-09-21T13:59:55.107Z" }, - "score": 81, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.145, + "popularity": 0.195, "topicSearchString": "" }, { @@ -126080,13 +125402,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-12T18:33:51Z", + "updatedAt": "2025-10-17T22:44:37Z", "createdAt": "2024-12-06T23:16:55Z", - "pushedAt": "2025-09-12T18:33:51Z", - "forks": 139, - "issues": 60, - "subscribers": 23, - "stars": 1082, + "pushedAt": "2025-10-17T22:44:37Z", + "forks": 156, + "issues": 69, + "subscribers": 26, + "stars": 1171, "dependencies": 2 }, "name": "@google/genai", @@ -126104,14 +125426,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 5438725, - "weekDownloads": 843169, - "size": 9712397, - "latestRelease": "1.19.0", - "latestReleaseDate": "2025-09-09T22:59:19.297Z" + "downloads": 7556789, + "weekDownloads": 1565483, + "size": 7966696, + "latestRelease": "1.25.0", + "latestReleaseDate": "2025-10-15T03:42:14.866Z" }, "score": 97, "matchingScoreModifiers": [ @@ -126121,7 +125444,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.132, + "popularity": 0.176, "topicSearchString": "" }, { @@ -126166,7 +125489,6 @@ "registry": "https://registry.npmjs.org/", "description": "A papery checkbox for react native", "topics": [ - "react-native", "checkbox", "animated-checkbox", "component", @@ -126197,22 +125519,20 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1031, - "weekDownloads": 203, + "downloads": 1857, + "weekDownloads": 340, "size": 32414, "latestRelease": "1.0.5", "latestReleaseDate": "2025-08-15T09:24:18.866Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.082, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.094, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/XterioTech/XterioSDK-RN/tree/main/xterio-auth", @@ -126250,7 +125570,6 @@ "registry": "https://registry.npmjs.org/", "description": "xterio auth service in react native", "topics": [ - "react-native", "ios", "android" ], @@ -126264,10 +125583,12 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 15, + "downloads": 31, "weekDownloads": 0, "size": 1372806, "latestRelease": "0.1.5", @@ -126276,7 +125597,7 @@ "score": 46, "matchingScoreModifiers": [], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/roninoss/rn-primitives/tree/main/packages/accordion", @@ -126305,10 +125626,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 4 }, "name": "@rn-primitives/accordion", @@ -126326,21 +125647,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 90410, - "weekDownloads": 9815, + "downloads": 128455, + "weekDownloads": 28062, "size": 41368, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.851Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.092, + "popularity": 0.186, "topicSearchString": "" }, { @@ -126370,10 +125692,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 4 }, "name": "@rn-primitives/alert-dialog", @@ -126391,21 +125713,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 57079, - "weekDownloads": 8999, + "downloads": 77534, + "weekDownloads": 15460, "size": 43716, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.827Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.134, + "popularity": 0.169, "topicSearchString": "" }, { @@ -126435,10 +125758,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 2 }, "name": "@rn-primitives/aspect-ratio", @@ -126456,21 +125779,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 30107, - "weekDownloads": 5244, + "downloads": 54010, + "weekDownloads": 11422, "size": 7257, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.989Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.148, + "popularity": 0.18, "topicSearchString": "" }, { @@ -126500,10 +125823,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 3 }, "name": "@rn-primitives/avatar", @@ -126521,21 +125844,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 92098, - "weekDownloads": 14445, + "downloads": 130349, + "weekDownloads": 26617, "size": 13154, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.616Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.133, + "popularity": 0.174, "topicSearchString": "" }, { @@ -126565,10 +125889,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 4 }, "name": "@rn-primitives/checkbox", @@ -126586,21 +125910,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 100431, - "weekDownloads": 16557, + "downloads": 130220, + "weekDownloads": 28138, "size": 21426, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.643Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.14, + "popularity": 0.184, "topicSearchString": "" }, { @@ -126630,10 +125955,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 4 }, "name": "@rn-primitives/collapsible", @@ -126651,21 +125976,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 100269, - "weekDownloads": 11316, + "downloads": 141860, + "weekDownloads": 33964, "size": 25380, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.773Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.096, + "popularity": 0.204, "topicSearchString": "" }, { @@ -126695,10 +126021,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 5 }, "name": "@rn-primitives/context-menu", @@ -126716,21 +126042,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 28884, - "weekDownloads": 3858, + "downloads": 48802, + "weekDownloads": 9536, "size": 86150, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.922Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.114, + "popularity": 0.166, "topicSearchString": "" }, { @@ -126760,10 +126086,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 4 }, "name": "@rn-primitives/dialog", @@ -126781,21 +126107,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 80408, - "weekDownloads": 13281, + "downloads": 110294, + "weekDownloads": 23881, "size": 40364, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.006Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.14, + "popularity": 0.184, "topicSearchString": "" }, { @@ -126825,10 +126152,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 5 }, "name": "@rn-primitives/dropdown-menu", @@ -126846,21 +126173,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 111339, - "weekDownloads": 14172, + "downloads": 155104, + "weekDownloads": 34215, "size": 84829, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.021Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.108, + "popularity": 0.188, "topicSearchString": "" }, { @@ -126890,10 +126218,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 5 }, "name": "@rn-primitives/hover-card", @@ -126911,21 +126239,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 21847, - "weekDownloads": 3786, + "downloads": 41960, + "weekDownloads": 8074, "size": 35695, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.245Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.147, + "popularity": 0.164, "topicSearchString": "" }, { @@ -126955,10 +126283,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 3 }, "name": "@rn-primitives/label", @@ -126976,21 +126304,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 81628, - "weekDownloads": 14053, + "downloads": 120582, + "weekDownloads": 24740, "size": 13810, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.980Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.146, + "popularity": 0.174, "topicSearchString": "" }, { @@ -127020,10 +126349,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 5 }, "name": "@rn-primitives/menubar", @@ -127041,21 +126370,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 22713, - "weekDownloads": 3730, + "downloads": 40169, + "weekDownloads": 7918, "size": 85643, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.664Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.14, + "popularity": 0.168, "topicSearchString": "" }, { @@ -127085,10 +126414,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 5 }, "name": "@rn-primitives/navigation-menu", @@ -127106,21 +126435,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 22372, - "weekDownloads": 3749, + "downloads": 34276, + "weekDownloads": 7271, "size": 46892, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.589Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.142, + "popularity": 0.18, "topicSearchString": "" }, { @@ -127150,10 +126479,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 4 }, "name": "@rn-primitives/popover", @@ -127171,21 +126500,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 42983, - "weekDownloads": 7071, + "downloads": 64625, + "weekDownloads": 12354, "size": 40267, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.184Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.14, + "popularity": 0.162, "topicSearchString": "" }, { @@ -127215,10 +126544,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 3 }, "name": "@rn-primitives/progress", @@ -127236,21 +126565,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 74454, - "weekDownloads": 10492, + "downloads": 108399, + "weekDownloads": 22623, "size": 14774, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:03.843Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.12, + "popularity": 0.177, "topicSearchString": "" }, { @@ -127280,10 +126610,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 3 }, "name": "@rn-primitives/radio-group", @@ -127301,21 +126631,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 68127, - "weekDownloads": 12134, + "downloads": 90038, + "weekDownloads": 19444, "size": 21539, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.163Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.151, + "popularity": 0.184, "topicSearchString": "" }, { @@ -127344,10 +126675,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 4 }, "name": "@rn-primitives/select", @@ -127365,21 +126696,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 110416, - "weekDownloads": 13364, + "downloads": 153523, + "weekDownloads": 34760, "size": 62839, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.598Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.103, + "popularity": 0.192, "topicSearchString": "" }, { @@ -127409,10 +126741,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 3 }, "name": "@rn-primitives/separator", @@ -127430,21 +126762,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 62744, - "weekDownloads": 10262, + "downloads": 102460, + "weekDownloads": 19868, "size": 7629, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.825Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.139, + "popularity": 0.165, "topicSearchString": "" }, { @@ -127474,10 +126807,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 3 }, "name": "@rn-primitives/slider", @@ -127495,21 +126828,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8388, - "weekDownloads": 1461, + "downloads": 11955, + "weekDownloads": 2372, "size": 19152, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.949Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.148, + "popularity": 0.169, "topicSearchString": "" }, { @@ -127539,10 +126872,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 3 }, "name": "@rn-primitives/switch", @@ -127560,22 +126893,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 130988, - "weekDownloads": 16256, + "downloads": 178676, + "weekDownloads": 40741, "size": 15802, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.724Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.105, + "popularity": 0.194, "topicSearchString": "" }, { @@ -127605,10 +126938,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 2 }, "name": "@rn-primitives/table", @@ -127626,21 +126959,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 63092, - "weekDownloads": 9731, + "downloads": 52721, + "weekDownloads": 11469, "size": 12999, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.352Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.131, + "popularity": 0.185, "topicSearchString": "" }, { @@ -127670,10 +127003,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 3 }, "name": "@rn-primitives/tabs", @@ -127691,21 +127024,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 94991, - "weekDownloads": 10771, + "downloads": 140519, + "weekDownloads": 28772, "size": 25704, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.800Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.096, + "popularity": 0.174, "topicSearchString": "" }, { @@ -127735,10 +127069,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 2 }, "name": "@rn-primitives/toast", @@ -127756,21 +127090,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 8265, - "weekDownloads": 1461, + "downloads": 8728, + "weekDownloads": 1870, "size": 15022, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.531Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.15, + "popularity": 0.182, "topicSearchString": "" }, { @@ -127800,10 +127134,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 3 }, "name": "@rn-primitives/toggle", @@ -127821,21 +127155,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 39918, - "weekDownloads": 6539, + "downloads": 64700, + "weekDownloads": 14112, "size": 12843, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.562Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.139, + "popularity": 0.185, "topicSearchString": "" }, { @@ -127865,10 +127199,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 4 }, "name": "@rn-primitives/toggle-group", @@ -127886,21 +127220,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 31446, - "weekDownloads": 5150, + "downloads": 50443, + "weekDownloads": 10246, "size": 25037, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.070Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.139, + "popularity": 0.173, "topicSearchString": "" }, { @@ -127930,10 +127264,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 4 }, "name": "@rn-primitives/toolbar", @@ -127951,21 +127285,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1943, - "weekDownloads": 327, + "downloads": 2801, + "weekDownloads": 549, "size": 30059, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:05.345Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.143, + "popularity": 0.167, "topicSearchString": "" }, { @@ -127995,10 +127329,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 4 }, "name": "@rn-primitives/tooltip", @@ -128016,21 +127350,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 57259, - "weekDownloads": 10141, + "downloads": 78549, + "weekDownloads": 15513, "size": 36725, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.724Z" }, - "score": 51, + "score": 70, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Popular", + "Known" ], - "popularity": 0.151, + "popularity": 0.168, "topicSearchString": "" }, { @@ -128059,10 +127394,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 1 }, "name": "@rn-primitives/hooks", @@ -128080,22 +127415,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 257757, - "weekDownloads": 38560, + "downloads": 323357, + "weekDownloads": 71336, "size": 21709, "latestRelease": "1.3.0", "latestReleaseDate": "2025-05-20T20:18:04.797Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.127, + "popularity": 0.188, "topicSearchString": "" }, { @@ -128124,10 +127459,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 1 }, "name": "@rn-primitives/portal", @@ -128145,22 +127480,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 269935, - "weekDownloads": 33970, + "downloads": 314154, + "weekDownloads": 70594, "size": 9495, "latestRelease": "1.3.0", "latestReleaseDate": "2025-05-20T20:18:04.822Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.107, + "popularity": 0.191, "topicSearchString": "" }, { @@ -128189,10 +127524,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 0 }, "name": "@rn-primitives/slot", @@ -128210,22 +127545,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 326575, - "weekDownloads": 49474, + "downloads": 381136, + "weekDownloads": 83886, "size": 13773, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.876Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.129, + "popularity": 0.187, "topicSearchString": "" }, { @@ -128255,10 +127590,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 0 }, "name": "@rn-primitives/types", @@ -128276,22 +127611,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 321155, - "weekDownloads": 48556, + "downloads": 370749, + "weekDownloads": 81867, "size": 8209, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.715Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.129, + "popularity": 0.188, "topicSearchString": "" }, { @@ -128320,10 +127655,10 @@ "updatedAt": "2025-05-20T20:00:13Z", "createdAt": "2024-01-29T18:16:49Z", "pushedAt": "2025-05-20T20:00:13Z", - "forks": 38, + "forks": 43, "issues": 18, - "subscribers": 10, - "stars": 737, + "subscribers": 9, + "stars": 774, "dependencies": 0 }, "name": "@rn-primitives/utils", @@ -128341,22 +127676,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 125490, - "weekDownloads": 16138, + "downloads": 167729, + "weekDownloads": 37078, "size": 7110, "latestRelease": "1.2.0", "latestReleaseDate": "2025-05-20T20:18:04.912Z" }, - "score": 68, + "score": 70, "matchingScoreModifiers": [ "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.109, + "popularity": 0.188, "topicSearchString": "" }, { @@ -128378,13 +127713,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T11:39:58Z", + "updatedAt": "2025-10-21T13:35:51Z", "createdAt": "2025-03-24T04:05:41Z", - "pushedAt": "2025-09-08T11:39:58Z", - "forks": 3, + "pushedAt": "2025-10-21T13:35:51Z", + "forks": 4, "issues": 0, "subscribers": 2, - "stars": 100, + "stars": 111, "dependencies": 0 }, "name": "expo-passkey", @@ -128392,7 +127727,6 @@ "isPrivate": false, "description": "Complete end to end passkey authentication solution for expo and web apps", "topics": [ - "react-native", "expo", "expo-passkey", "expopasskeymodule", @@ -128414,23 +127748,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-passkey", "npm": { - "downloads": 816, - "weekDownloads": 197, - "size": 711347, - "latestRelease": "0.2.3", - "latestReleaseDate": "2025-09-08T11:41:42.480Z" + "downloads": 1006, + "weekDownloads": 155, + "size": 720364, + "latestRelease": "0.3.2", + "latestReleaseDate": "2025-10-21T14:57:03.998Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.545, - "topicSearchString": "react-native expo expo-passkey expopasskeymodule passkey biometric authentication better-auth face-id touch-id fingerprint" + "popularity": 0.131, + "topicSearchString": "expo expo-passkey expopasskeymodule passkey biometric authentication better-auth face-id touch-id fingerprint" }, { "githubUrl": "https://github.com/jpudysz/react-native-turbo-mock-location-detector", @@ -128457,7 +127792,7 @@ "forks": 8, "issues": 0, "subscribers": 4, - "stars": 102, + "stars": 103, "dependencies": 0 }, "name": "react-native-turbo-mock-location-detector", @@ -128466,7 +127801,6 @@ "registry": "https://registry.npmjs.org/", "description": "Protect your business from location spoofing. Library supports both Android and iOS with Fabric powers.", "topics": [ - "react-native", "ios", "android", "fabric", @@ -128483,12 +127817,15 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, + "unmaintained": true, "npmPkg": "react-native-turbo-mock-location-detector", "npm": { - "downloads": 7229, - "weekDownloads": 1131, + "downloads": 8981, + "weekDownloads": 1944, "size": 84310, "latestRelease": "2.3.1", "latestReleaseDate": "2023-10-12T16:52:22.491Z" @@ -128497,8 +127834,8 @@ "matchingScoreModifiers": [ "Not updated recently" ], - "popularity": 0.133, - "topicSearchString": "react-native ios android fabric typescript newarchitecture" + "popularity": -0.566, + "topicSearchString": "ios android fabric typescript newarchitecture" }, { "githubUrl": "https://github.com/logicwind/react-native-status-bar-height", @@ -128535,7 +127872,6 @@ "registry": "https://registry.npmjs.org/", "description": "React-native plugin for getting statusbar heigh in android and ios", "topics": [ - "react-native", "ios", "android", "status-bar", @@ -128557,21 +127893,21 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 121, - "weekDownloads": 12, + "downloads": 1335, + "weekDownloads": 63, "size": 29975, "latestRelease": "0.2.1", "latestReleaseDate": "2025-06-03T13:07:57.371Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.914, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.21, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/logicwind/react-native-matomo-tracker", @@ -128601,7 +127937,7 @@ "forks": 1, "issues": 0, "subscribers": 2, - "stars": 6, + "stars": 7, "dependencies": 0 }, "name": "@logicwind/react-native-matomo-tracker", @@ -128610,7 +127946,6 @@ "registry": "https://registry.npmjs.org/", "description": "React-native plugin for matomo analytics", "topics": [ - "react-native", "ios", "android", "tvos", @@ -128629,21 +127964,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 192, - "weekDownloads": 34, + "downloads": 493, + "weekDownloads": 121, "size": 92479, "latestRelease": "0.3.12", "latestReleaseDate": "2025-06-19T13:36:19.454Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.849, - "topicSearchString": "react-native ios android tvos analytics tracking matomo tracker" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.791, + "topicSearchString": "ios android tvos analytics tracking matomo tracker" }, { "githubUrl": "https://github.com/logicwind/react-native-fold-detection", @@ -128668,7 +128003,7 @@ "createdAt": "2023-11-08T06:18:06Z", "pushedAt": "2025-08-07T12:39:33Z", "forks": 1, - "issues": 0, + "issues": 1, "subscribers": 4, "stars": 16, "dependencies": 0 @@ -128679,7 +128014,6 @@ "registry": "https://registry.npmjs.org/", "description": "react-native library to detect fold device and also provide information related to fold status", "topics": [ - "react-native", "ios", "android", "foldable", @@ -128704,11 +128038,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 574, - "weekDownloads": 97, + "downloads": 916, + "weekDownloads": 364, "size": 52409, "latestRelease": "0.3.2", "latestReleaseDate": "2025-08-07T16:44:04.091Z" @@ -128717,8 +128053,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "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" + "popularity": -0.661, + "topicSearchString": "ios android foldable fold-detection dual-screen foldable-phone fold foldable-device device-posture screen-posture multi-window foldable-support foldable-devices" }, { "githubUrl": "https://github.com/patrickkabwe/react-native-nitro-fs", @@ -128738,14 +128074,14 @@ "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "hasTopics": true, - "updatedAt": "2025-09-03T21:13:30Z", + "hasTopics": false, + "updatedAt": "2025-10-08T20:22:04Z", "createdAt": "2025-04-27T12:56:33Z", - "pushedAt": "2025-09-03T21:13:30Z", - "forks": 0, - "issues": 0, + "pushedAt": "2025-10-08T20:22:04Z", + "forks": 1, + "issues": 1, "subscribers": 1, - "stars": 27, + "stars": 36, "dependencies": 0 }, "name": "react-native-nitro-fs", @@ -128753,9 +128089,7 @@ "isPrivate": false, "registry": "https://registry.npmjs.org/", "description": "A high-performance file system module for React Native that handles file operations and transfers with native speed.", - "topics": [ - "react-native" - ], + "topics": [], "license": { "name": "MIT License", "url": "http://choosealicense.com/licenses/mit/", @@ -128766,23 +128100,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-fs", "npm": { - "downloads": 186, - "weekDownloads": 88, - "size": 235530, - "latestRelease": "0.6.1", - "latestReleaseDate": "2025-08-17T10:14:02.127Z" + "downloads": 311, + "weekDownloads": 17, + "size": 240475, + "latestRelease": "0.7.0", + "latestReleaseDate": "2025-10-07T16:57:43.306Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.341, - "topicSearchString": "react-native" + "popularity": -0.703, + "topicSearchString": "" }, { "githubUrl": "https://github.com/patrickkabwe/react-native-nitro-google-sso", @@ -128809,16 +128144,15 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 6, + "stars": 8, "dependencies": 0 }, "name": "react-native-nitro-google-sso", "fullName": "patrickkabwe/react-native-nitro-google-sso", "isPrivate": false, "registry": "https://registry.npmjs.org/", - "description": "A Simple React Native module for implementing Google Sign-In (SSO) functionality in your React Native applications uses Google Sign-In SDK on iOS and Credential Manager on Android.", + "description": "A Simple React Native module for implementing Google Sign-In (SSO) functionality in your app. it uses Google Sign-In SDK on iOS and Credential Manager on Android.", "topics": [ - "react-native", "nitro", "nitro-modules", "google-sso", @@ -128836,23 +128170,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-google-sso", "npm": { - "downloads": 108, - "weekDownloads": 5, + "downloads": 71, + "weekDownloads": 9, "size": 114477, "latestRelease": "1.1.7", "latestReleaseDate": "2025-08-22T02:33:17.304Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.96, - "topicSearchString": "react-native nitro nitro-modules google-sso nitro-google-sso google-signin sso" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.887, + "topicSearchString": "nitro nitro-modules google-sso nitro-google-sso google-signin sso" }, { "githubUrl": "https://github.com/Sharcoux/rn-css", @@ -128873,9 +128206,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-04-02T09:39:10Z", + "updatedAt": "2025-10-12T22:10:46Z", "createdAt": "2020-05-22T20:27:41Z", - "pushedAt": "2025-04-02T09:39:10Z", + "pushedAt": "2025-10-12T22:10:46Z", "forks": 4, "issues": 1, "subscribers": 3, @@ -128897,21 +128230,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "rn-css", "npm": { - "downloads": 1090, - "weekDownloads": 187, - "size": 414789, - "latestRelease": "1.11.10", - "latestReleaseDate": "2025-04-02T09:39:09.853Z" + "downloads": 1565, + "weekDownloads": 170, + "size": 438271, + "latestRelease": "2.0.1", + "latestReleaseDate": "2025-10-12T22:10:42.932Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.146, + "popularity": 0.092, "topicSearchString": "" }, { @@ -128934,13 +128268,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T21:08:00Z", + "updatedAt": "2025-09-28T18:36:41Z", "createdAt": "2021-03-11T17:28:58Z", - "pushedAt": "2025-09-10T21:08:00Z", - "forks": 53, - "issues": 24, + "pushedAt": "2025-09-28T18:36:41Z", + "forks": 55, + "issues": 26, "subscribers": 7, - "stars": 268, + "stars": 275, "dependencies": 7 }, "name": "@cantoo/pdf-lib", @@ -128971,22 +128305,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 315037, - "weekDownloads": 52566, - "size": 21202360, - "latestRelease": "2.5.2", - "latestReleaseDate": "2025-09-10T21:07:58.645Z" + "downloads": 330057, + "weekDownloads": 89900, + "size": 21202312, + "latestRelease": "2.5.3", + "latestReleaseDate": "2025-09-28T18:36:39.486Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.142, + "popularity": 0.232, "topicSearchString": "pdf-lib pdf document create modify creation modification edit editing typescript javascript library" }, { @@ -129029,12 +128363,11 @@ "isPrivate": false, "description": "React Universal Navigation", "topics": [ - "react", - "native", "navigation", "web" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -129043,21 +128376,20 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 18, - "weekDownloads": 1, + "downloads": 28, + "weekDownloads": 3, "size": 63872, "latestRelease": "2.1.3", "latestReleaseDate": "2025-05-20T10:18:29.957Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.95, - "topicSearchString": "react native navigation web" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.9, + "topicSearchString": "navigation web" }, { "githubUrl": "https://github.com/pushy/pushy-expo-plugin", @@ -129072,6 +128404,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/pushy/pushy-expo-plugin", @@ -129107,21 +128440,20 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true }, "npmPkg": "pushy-expo-plugin", "npm": { - "downloads": 707, - "weekDownloads": 123, + "downloads": 546, + "weekDownloads": 58, "size": 14132, "latestRelease": "1.0.5", "latestReleaseDate": "2025-08-05T07:44:29.177Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.852, + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.909, "topicSearchString": "" }, { @@ -129149,7 +128481,7 @@ "forks": 1, "issues": 0, "subscribers": 1, - "stars": 15, + "stars": 16, "dependencies": 0 }, "name": "fast-is-equal", @@ -129167,8 +128499,6 @@ "performance", "typescript", "javascript", - "react", - "react-native", "vue", "angular", "object-comparison", @@ -129197,22 +128527,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "fast-is-equal", "npm": { - "downloads": 1993, - "weekDownloads": 492, + "downloads": 1695, + "weekDownloads": 372, "size": 37837, "latestRelease": "1.2.3", "latestReleaseDate": "2025-05-31T07:56:12.995Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.04, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.063, + "topicSearchString": "deep-equal equality compare lodash isequal fast performance typescript javascript vue angular object-comparison array-comparison deep-comparison utility lightweight zero-dependencies circular-references map set immutable benchmark speed efficient alternative replacement" }, { "githubUrl": "https://github.com/marcuzgabriel/react-native-reanimated-skeleton/tree/main/packages/npm", @@ -129243,7 +128572,7 @@ "forks": 14, "issues": 6, "subscribers": 2, - "stars": 131, + "stars": 134, "dependencies": 0 }, "name": "react-native-reanimated-skeleton", @@ -129260,20 +128589,19 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 50558, - "weekDownloads": 8937, + "downloads": 57720, + "weekDownloads": 14407, "size": 94759, "latestRelease": "1.6.0", "latestReleaseDate": "2025-05-13T14:31:23.956Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": 0.15, + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.212, "topicSearchString": "" }, { @@ -129298,13 +128626,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T10:37:36Z", + "updatedAt": "2025-10-20T02:12:45Z", "createdAt": "2020-08-11T23:15:36Z", - "pushedAt": "2025-09-10T10:37:36Z", - "forks": 683, + "pushedAt": "2025-10-20T02:12:45Z", + "forks": 690, "issues": 1, "subscribers": 68, - "stars": 20497, + "stars": 20624, "dependencies": 0 }, "name": "jotai", @@ -129312,7 +128640,6 @@ "isPrivate": true, "description": "👻 Primitive and flexible state management for React", "topics": [ - "react", "state", "manager", "management", @@ -129331,26 +128658,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "jotai", "npm": { - "downloads": 8964314, - "weekDownloads": 1496605, - "size": 494191, - "latestRelease": "2.14.0", - "latestReleaseDate": "2025-09-08T05:42:51.489Z" + "downloads": 9001075, + "weekDownloads": 2050753, + "size": 495678, + "latestRelease": "2.15.0", + "latestReleaseDate": "2025-09-25T15:30:23.496Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.142, - "topicSearchString": "react state manager management recoil store atomic hacktoberfest" + "popularity": 0.194, + "topicSearchString": "state manager management recoil store atomic hacktoberfest" }, { "githubUrl": "https://github.com/manuelbieh/geolib", @@ -129372,10 +128699,10 @@ "updatedAt": "2023-12-10T12:45:25Z", "createdAt": "2011-08-05T17:53:49Z", "pushedAt": "2023-12-10T12:45:25Z", - "forks": 333, + "forks": 335, "issues": 39, - "subscribers": 72, - "stars": 4263, + "subscribers": 71, + "stars": 4269, "dependencies": 0 }, "name": "geolib", @@ -129402,25 +128729,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "geolib", "npm": { - "downloads": 1470056, - "weekDownloads": 255154, + "downloads": 1347123, + "weekDownloads": 314051, "size": 104758, "latestRelease": "3.3.4", "latestReleaseDate": "2023-06-01T08:02:38.009Z" }, - "score": 81, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.148, + "popularity": 0.198, "topicSearchString": "geolib wgs84 distance geography geojson sexagesimal latlng hacktoberfest" }, { @@ -129448,9 +128775,9 @@ "createdAt": "2018-11-09T10:50:43Z", "pushedAt": "2025-09-01T14:30:10Z", "forks": 115, - "issues": 6, - "subscribers": 8, - "stars": 3294, + "issues": 3, + "subscribers": 9, + "stars": 3314, "dependencies": 0 }, "name": "use-debounce", @@ -129459,11 +128786,10 @@ "description": "A debounce hook for react", "topics": [ "debounce", - "react-hook", - "react", - "react-hooks", + "hook", + "hooks", "usedebounce", - "react-use" + "use" ], "license": { "key": "mit", @@ -129475,26 +128801,25 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "use-debounce", "npm": { - "downloads": 10201611, - "weekDownloads": 1713683, + "downloads": 10381514, + "weekDownloads": 2337279, "size": 110056, "latestRelease": "10.0.6", "latestReleaseDate": "2025-09-01T22:38:10.929Z" }, - "score": 97, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.143, - "topicSearchString": "debounce react-hook react react-hooks usedebounce react-use" + "popularity": 0.191, + "topicSearchString": "debounce hook hooks usedebounce use" }, { "githubUrl": "https://github.com/Landeed/react-native-google-places-sdk", @@ -129518,7 +128843,7 @@ "updatedAt": "2025-01-30T18:51:41Z", "createdAt": "2023-01-26T12:21:35Z", "pushedAt": "2025-01-30T18:51:41Z", - "forks": 6, + "forks": 7, "issues": 1, "subscribers": 0, "stars": 25, @@ -129530,7 +128855,6 @@ "registry": "https://registry.npmjs.org/", "description": "Google Places SDK for React Native. Places SDK allows you to build location aware apps that responds contextutally to the local businesses and other places near the user's device.", "topics": [ - "react-native", "ios", "android", "google-places", @@ -129549,23 +128873,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-google-places-sdk", "npm": { - "downloads": 12022, - "weekDownloads": 847, + "downloads": 12395, + "weekDownloads": 3099, "size": 106004, "latestRelease": "0.3.1", "latestReleaseDate": "2025-01-30T16:07:51.849Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.06, - "topicSearchString": "react-native ios android google-places places-sdk typescript autocomplete google-places-sdk" + "popularity": 0.213, + "topicSearchString": "ios android google-places places-sdk typescript autocomplete google-places-sdk" }, { "githubUrl": "https://github.com/hyochan/expo-iap", @@ -129575,6 +128899,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/hyochan/expo-iap", @@ -129586,13 +128911,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T21:58:16Z", + "updatedAt": "2025-10-20T11:57:58Z", "createdAt": "2024-07-03T16:14:40Z", - "pushedAt": "2025-09-12T21:58:16Z", - "forks": 25, - "issues": 1, - "subscribers": 2, - "stars": 250, + "pushedAt": "2025-10-20T11:57:58Z", + "forks": 27, + "issues": 0, + "subscribers": 1, + "stars": 281, "dependencies": 0 }, "name": "expo-iap", @@ -129600,7 +128925,6 @@ "isPrivate": false, "description": "In App Purchase module in Expo that confirms OpenIAP", "topics": [ - "react-native", "expo", "expo-iap", "expoiap", @@ -129620,24 +128944,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-iap", "npm": { - "downloads": 39932, - "weekDownloads": 6201, - "size": 845586, - "latestRelease": "3.0.2", - "latestReleaseDate": "2025-09-12T21:59:07.048Z" + "downloads": 52517, + "weekDownloads": 10577, + "size": 1875980, + "latestRelease": "3.1.19", + "latestReleaseDate": "2025-10-19T23:17:19.936Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.132, - "topicSearchString": "react-native expo expo-iap expoiap inapp inapp-billing inapppurchase reactnative openiap" + "popularity": 0.171, + "topicSearchString": "expo expo-iap expoiap inapp inapp-billing inapppurchase reactnative openiap" }, { "githubUrl": "https://github.com/developit/mitt", @@ -129662,10 +128987,10 @@ "updatedAt": "2023-07-04T17:35:44Z", "createdAt": "2017-01-15T01:10:50Z", "pushedAt": "2023-07-04T17:35:44Z", - "forks": 467, + "forks": 471, "issues": 16, - "subscribers": 70, - "stars": 11580, + "subscribers": 67, + "stars": 11656, "dependencies": 0 }, "name": "mitt", @@ -129694,13 +129019,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "mitt", "npm": { - "downloads": 56373388, - "weekDownloads": 9460894, + "downloads": 53570791, + "weekDownloads": 11988479, "size": 26444, "latestRelease": "3.0.1", "latestReleaseDate": "2023-07-04T17:31:47.638Z" @@ -129713,7 +129039,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.607, + "popularity": -0.56, "topicSearchString": "events eventemitter emitter pubsub mitt event-handlers tiny event event-bus event-listener" }, { @@ -129737,14 +129063,14 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T23:27:29Z", + "updatedAt": "2025-10-07T21:34:18Z", "createdAt": "2025-05-29T15:53:31Z", - "pushedAt": "2025-09-12T23:27:29Z", + "pushedAt": "2025-10-07T21:34:18Z", "forks": 0, "issues": 0, "subscribers": 0, - "stars": 23, - "dependencies": 16 + "stars": 25, + "dependencies": 15 }, "name": "@eggl-js/expo-github-cache", "fullName": "Robert27/expo-github-cache", @@ -129755,8 +129081,7 @@ "cache", "github", "build", - "eas", - "react-native" + "eas" ], "license": { "key": "mit", @@ -129768,22 +129093,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 259, - "weekDownloads": 15, - "size": 42770, - "latestRelease": "0.2.0", - "latestReleaseDate": "2025-09-12T23:28:35.692Z" + "downloads": 463, + "weekDownloads": 77, + "size": 43527, + "latestRelease": "0.2.1", + "latestReleaseDate": "2025-10-07T21:35:28.592Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.95, - "topicSearchString": "expo cache github build eas react-native" + "popularity": -0.607, + "topicSearchString": "expo cache github build eas" }, { "githubUrl": "https://github.com/react-hook-form/resolvers", @@ -129803,13 +129128,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-29T13:32:52Z", + "updatedAt": "2025-09-14T08:26:02Z", "createdAt": "2020-04-21T11:56:22Z", - "pushedAt": "2025-07-29T13:32:52Z", - "forks": 193, - "issues": 48, - "subscribers": 12, - "stars": 2102, + "pushedAt": "2025-09-14T08:26:02Z", + "forks": 196, + "issues": 52, + "subscribers": 11, + "stars": 2126, "dependencies": 1 }, "name": "@hookform/resolvers", @@ -129821,7 +129146,7 @@ "validation", "scheme-validation", "hookform", - "react-hook-form", + "hook-form", "yup", "joi", "superstruct", @@ -129857,24 +129182,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 51120557, - "weekDownloads": 9640896, - "size": 989832, - "latestRelease": "5.2.1", - "latestReleaseDate": "2025-07-29T13:36:51.252Z" + "downloads": 45015881, + "weekDownloads": 9107312, + "size": 989826, + "latestRelease": "5.2.2", + "latestReleaseDate": "2025-09-14T08:30:00.918Z" }, - "score": 92, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.16, - "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" + "popularity": 0.172, + "topicSearchString": "scheme validation scheme-validation hookform 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" }, { "githubUrl": "https://github.com/joe-bell/cva/tree/main/packages/class-variance-authority", @@ -129898,8 +129223,8 @@ "pushedAt": "2025-06-25T05:31:03Z", "forks": 131, "issues": 1, - "subscribers": 13, - "stars": 6506, + "subscribers": 12, + "stars": 6555, "dependencies": 1 }, "name": "class-variance-authority", @@ -129928,24 +129253,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "class-variance-authority", "npm": { - "downloads": 34378306, - "weekDownloads": 5818862, + "downloads": 35520938, + "weekDownloads": 7363059, "size": 22073, "latestRelease": "0.7.1", "latestReleaseDate": "2024-11-26T08:20:34.604Z" }, - "score": 92, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.144, + "popularity": 0.176, "topicSearchString": "class-variance-authority class-variance-authority classes classname classnames css cva stitches vanilla-extract variants" }, { @@ -129968,13 +129293,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-18T23:34:55Z", + "updatedAt": "2025-09-27T23:24:27Z", "createdAt": "2021-09-20T18:57:57Z", - "pushedAt": "2025-07-18T23:34:55Z", - "forks": 25, - "issues": 3, - "subscribers": 5, - "stars": 232, + "pushedAt": "2025-09-27T23:24:27Z", + "forks": 27, + "issues": 2, + "subscribers": 3, + "stars": 233, "dependencies": 0 }, "name": "phosphor-react-native", @@ -129983,10 +129308,8 @@ "registry": "https://registry.npmjs.org/", "description": "phosphor-icons for react-native. A flexible icon family for React Native", "topics": [ - "react-native", "ios", "android", - "react", "icons", "phosphoricons", "svg-icons", @@ -130002,23 +129325,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "phosphor-react-native", "npm": { - "downloads": 95066, - "weekDownloads": 12345, - "size": 23541723, - "latestRelease": "3.0.0", - "latestReleaseDate": "2025-06-25T22:09:14.818Z" + "downloads": 186325, + "weekDownloads": 24615, + "size": 23534500, + "latestRelease": "3.0.1", + "latestReleaseDate": "2025-09-27T23:22:16.176Z" }, - "score": 51, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.11, - "topicSearchString": "react-native ios android react icons phosphoricons svg-icons svg" + "popularity": 0.112, + "topicSearchString": "ios android icons phosphoricons svg-icons svg" }, { "githubUrl": "https://github.com/EliteWise/react-native-ranking-leaderboard", @@ -130052,7 +129376,6 @@ "registry": "https://registry.npmjs.org/", "description": "Customizable and modern leaderboard component for React Native apps", "topics": [ - "react-native", "leaderboard", "scoreboard", "ranking", @@ -130075,22 +129398,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-ranking-leaderboard", "npm": { - "downloads": 21, - "weekDownloads": 6, + "downloads": 62, + "weekDownloads": 2, "size": 2626397, "latestRelease": "0.7.1", "latestReleaseDate": "2025-06-13T15:10:20.676Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.7, - "topicSearchString": "react-native leaderboard scoreboard ranking rank profile customizable ios android component library package" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.971, + "topicSearchString": "leaderboard scoreboard ranking rank profile customizable ios android component library package" }, { "githubUrl": "https://github.com/entropyconquers/react-native-reanimated-dnd", @@ -130112,13 +129434,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-03T21:57:56Z", + "updatedAt": "2025-09-25T10:22:03Z", "createdAt": "2025-05-15T23:07:36Z", - "pushedAt": "2025-09-03T21:57:56Z", - "forks": 13, - "issues": 15, - "subscribers": 9, - "stars": 431, + "pushedAt": "2025-09-25T10:22:03Z", + "forks": 20, + "issues": 21, + "subscribers": 10, + "stars": 470, "dependencies": 0 }, "name": "react-native-reanimated-dnd", @@ -130126,7 +129448,6 @@ "isPrivate": false, "description": "A drag-and-drop library that finally works on React Native", "topics": [ - "react-native", "drag-and-drop", "reanimated", "sortable", @@ -130143,24 +129464,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-reanimated-dnd", "npm": { - "downloads": 143129, - "weekDownloads": 28710, + "downloads": 126876, + "weekDownloads": 27317, "size": 99622, "latestRelease": "1.1.0", "latestReleaseDate": "2025-06-15T12:03:03.582Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.171, - "topicSearchString": "react-native drag-and-drop reanimated sortable dnd gesture-handler" + "popularity": 0.183, + "topicSearchString": "drag-and-drop reanimated sortable dnd gesture-handler" }, { "githubUrl": "https://github.com/mrousavy/react-native-pressable-opacity", @@ -130184,7 +129505,7 @@ "pushedAt": "2022-04-20T16:08:07Z", "forks": 6, "issues": 2, - "subscribers": 3, + "subscribers": 2, "stars": 52, "dependencies": 0 }, @@ -130193,8 +129514,6 @@ "isPrivate": false, "description": "A and a supercharged components for React Native", "topics": [ - "react", - "native", "pressable", "opacity", "component", @@ -130212,24 +129531,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-pressable-opacity", "npm": { - "downloads": 19921, - "weekDownloads": 3414, + "downloads": 16800, + "weekDownloads": 3475, "size": 16799, "latestRelease": "1.0.10", "latestReleaseDate": "2022-04-20T16:08:30.012Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.604, - "topicSearchString": "react native pressable opacity component module pressability button" + "popularity": -0.574, + "topicSearchString": "pressable opacity component module pressability button" }, { "githubUrl": "https://github.com/Charanor/react-native-highlight-overlay", @@ -130266,7 +129585,6 @@ "registry": "https://registry.npmjs.org/", "description": "A tinted overlay that allows one or more elements to be highlighted (non-tinted).", "topics": [ - "react-native", "ios", "android", "web", @@ -130279,7 +129597,6 @@ "tutorial", "hint", "walkthrough", - "react", "reanimated", "reanimated2", "tint", @@ -130295,24 +129612,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-highlight-overlay", "npm": { - "downloads": 501, - "weekDownloads": 63, + "downloads": 644, + "weekDownloads": 80, "size": 152110, "latestRelease": "1.4.0", "latestReleaseDate": "2022-11-06T16:41:02.933Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1.392, - "topicSearchString": "react-native ios android web overlay highlight focus typed typescript tooltip tutorial hint walkthrough react reanimated reanimated2 tint typescript-library" + "popularity": -1.394, + "topicSearchString": "ios android web overlay highlight focus typed typescript tooltip tutorial hint walkthrough reanimated reanimated2 tint typescript-library" }, { "githubUrl": "https://github.com/maitrungduc1410/react-native-video-trim", @@ -130333,13 +129650,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-13T16:42:22Z", + "updatedAt": "2025-09-26T16:39:18Z", "createdAt": "2023-07-28T09:08:03Z", - "pushedAt": "2025-09-13T16:42:22Z", - "forks": 30, - "issues": 7, + "pushedAt": "2025-09-26T16:39:18Z", + "forks": 32, + "issues": 5, "subscribers": 1, - "stars": 110, + "stars": 120, "dependencies": 0 }, "name": "react-native-video-trim", @@ -130348,7 +129665,6 @@ "registry": "https://registry.npmjs.org/", "description": "Video trimmer for React Native App", "topics": [ - "react-native", "ios", "android", "video", @@ -130366,22 +129682,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-video-trim", "npm": { - "downloads": 7416, - "weekDownloads": 875, - "size": 269529, - "latestRelease": "5.1.0", - "latestReleaseDate": "2025-09-13T16:42:11.600Z" + "downloads": 7595, + "weekDownloads": 2023, + "size": 310064, + "latestRelease": "6.0.7", + "latestReleaseDate": "2025-09-26T16:38:56.595Z" }, "score": 51, "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.1, - "topicSearchString": "react-native ios android video video-processing video-editor video-trim" + "popularity": 0.226, + "topicSearchString": "ios android video video-processing video-editor video-trim" }, { "githubUrl": "https://github.com/enzomanuelmangano/pressto", @@ -130403,26 +129721,29 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2024-12-30T17:22:43Z", + "updatedAt": "2025-10-18T10:35:11Z", "createdAt": "2024-09-17T10:57:24Z", - "pushedAt": "2024-12-30T17:22:43Z", - "forks": 0, - "issues": 1, + "pushedAt": "2025-10-18T10:35:11Z", + "forks": 1, + "issues": 0, "subscribers": 2, - "stars": 158, + "stars": 189, "dependencies": 0 }, "name": "pressto", "fullName": "enzomanuelmangano/pressto", "isPrivate": false, "registry": "https://registry.npmjs.org/", - "description": "Your React Native app deserves better tapping interactions.", + "description": "Your React Native app deserves better tap interactions.", "topics": [ - "react-native", "ios", "android", - "gesture-handler", + "pressable", + "touchable", + "gesture", + "animation", "reanimated", + "gesture-handler", "pressables" ], "license": { @@ -130435,23 +129756,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "pressto", "npm": { - "downloads": 2022, - "weekDownloads": 387, - "size": 88983, - "latestRelease": "0.2.1", - "latestReleaseDate": "2024-12-30T17:22:41.105Z" + "downloads": 3945, + "weekDownloads": 544, + "size": 120098, + "latestRelease": "0.6.0", + "latestReleaseDate": "2025-10-18T10:35:06.858Z" }, - "score": 32, + "score": 51, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.163, - "topicSearchString": "react-native ios android gesture-handler reanimated pressables" + "popularity": 0.117, + "topicSearchString": "ios android pressable touchable gesture animation reanimated gesture-handler pressables" }, { "githubUrl": "https://github.com/drizzle-team/drizzle-orm/tree/main/drizzle-orm", @@ -130470,13 +129791,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-25T14:06:22Z", + "updatedAt": "2025-10-02T09:30:21Z", "createdAt": "2021-06-24T09:03:05Z", - "pushedAt": "2025-08-25T14:06:22Z", - "forks": 1009, - "issues": 1462, + "pushedAt": "2025-10-02T09:30:21Z", + "forks": 1046, + "issues": 1490, "subscribers": 66, - "stars": 30281, + "stars": 30857, "dependencies": 0 }, "name": "drizzle-orm", @@ -130508,26 +129829,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "drizzle-orm", "npm": { - "downloads": 8762726, - "weekDownloads": 1508974, - "size": 10379207, - "latestRelease": "0.44.5", - "latestReleaseDate": "2025-08-25T14:30:27.013Z" + "downloads": 9496601, + "weekDownloads": 1903923, + "size": 10380227, + "latestRelease": "0.44.6", + "latestReleaseDate": "2025-10-02T09:49:33.326Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.146, + "popularity": 0.17, "topicSearchString": "drizzle orm pg mysql singlestore postgresql postgres sqlite database sql typescript ts drizzle-orm" }, { @@ -130550,9 +129871,9 @@ "createdAt": "2017-06-06T12:43:26Z", "pushedAt": "2023-06-27T06:51:31Z", "forks": 129, - "issues": 13, + "issues": 14, "subscribers": 8, - "stars": 424, + "stars": 426, "dependencies": 0 }, "name": "react-native-exit-app", @@ -130560,15 +129881,12 @@ "isPrivate": false, "description": "Exit,close,kill,shutdown app completely for React Native on iOS and Android.", "topics": [ - "react", - "native", "exit", "close", "shutdown", "kill", "android", - "ios", - "react-native" + "ios" ], "license": { "key": "mit", @@ -130580,13 +129898,15 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "unmaintained": true, "npmPkg": "react-native-exit-app", "npm": { - "downloads": 188281, - "weekDownloads": 32729, + "downloads": 180972, + "weekDownloads": 39969, "size": 40270, "latestRelease": "2.0.0", "latestReleaseDate": "2023-06-30T06:50:14.405Z" @@ -130596,8 +129916,8 @@ "Known", "Not updated recently" ], - "popularity": -0.602, - "topicSearchString": "react native exit close shutdown kill android ios react-native" + "popularity": -0.562, + "topicSearchString": "exit close shutdown kill android ios" }, { "githubUrl": "https://github.com/dev-family/react-native-device-country", @@ -130623,8 +129943,8 @@ "pushedAt": "2025-06-04T07:58:16Z", "forks": 14, "issues": 2, - "subscribers": 5, - "stars": 78, + "subscribers": 4, + "stars": 81, "dependencies": 0 }, "name": "react-native-device-country", @@ -130633,7 +129953,6 @@ "registry": "https://registry.npmjs.org/", "description": "Get device location by telephony (SIM card) or settings without using GPS tracker.", "topics": [ - "react-native", "ios", "android", "country", @@ -130657,12 +129976,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-device-country", "npm": { - "downloads": 16001, - "weekDownloads": 2512, + "downloads": 11842, + "weekDownloads": 3083, "size": 34817, "latestRelease": "1.1.1", "latestReleaseDate": "2025-06-04T07:58:35.224Z" @@ -130671,8 +129991,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.133, - "topicSearchString": "react-native ios android country device location device-location phone-location gps-location gps phone-code phone-number simcard" + "popularity": 0.221, + "topicSearchString": "ios android country device location device-location phone-location gps-location gps phone-code phone-number simcard" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-checkbox", @@ -130694,10 +130014,10 @@ "updatedAt": "2025-09-11T20:20:59Z", "createdAt": "2016-08-15T17:14:25Z", "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-checkbox", @@ -130705,7 +130025,6 @@ "isPrivate": false, "description": "Basic boolean input for Android, iOS and web.", "topics": [ - "react-native", "expo", "expo-checkbox" ], @@ -130719,27 +130038,27 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-checkbox", "npm": { - "downloads": 306194, - "weekDownloads": 51385, + "downloads": 316970, + "weekDownloads": 70650, "size": 50415, "latestRelease": "5.0.7", "latestReleaseDate": "2025-09-11T20:26:09.695Z" }, - "score": 86, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.143, - "topicSearchString": "react-native expo expo-checkbox" + "popularity": 0.189, + "topicSearchString": "expo expo-checkbox" }, { "githubUrl": "https://github.com/benjamineruvieru/react-native-pushdown-alert", @@ -130767,7 +130086,7 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 4, + "stars": 5, "dependencies": 0 }, "name": "react-native-pushdown-alert", @@ -130776,7 +130095,6 @@ "registry": "https://registry.npmjs.org/", "description": "A customizable pushdown alert component for React Native applications.", "topics": [ - "react-native", "ios", "android", "web", @@ -130802,22 +130120,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-pushdown-alert", "npm": { "downloads": 29, - "weekDownloads": 5, + "weekDownloads": 0, "size": 126341, "latestRelease": "0.5.2", "latestReleaseDate": "2025-07-29T17:44:08.755Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.833, - "topicSearchString": "react-native ios android web alert pushdown-alert notification customizable success-alert error-alert warning-alert animation dropdown notifications pushdown" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -1, + "topicSearchString": "ios android web alert pushdown-alert notification customizable success-alert error-alert warning-alert animation dropdown notifications pushdown" }, { "githubUrl": "https://github.com/benjamineruvieru/react-native-credentials-manager", @@ -130828,6 +130145,7 @@ "android": true, "expoGo": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/benjamineruvieru/react-native-credentials-manager", @@ -130839,13 +130157,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-15T15:51:47Z", + "updatedAt": "2025-10-21T08:44:41Z", "createdAt": "2025-02-04T14:57:04Z", - "pushedAt": "2025-08-15T15:51:47Z", + "pushedAt": "2025-10-21T08:44:41Z", "forks": 3, "issues": 1, "subscribers": 2, - "stars": 67, + "stars": 73, "dependencies": 0 }, "name": "react-native-credentials-manager", @@ -130854,7 +130172,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native library that implements the Credential Manager API for Android. This library allows you to manage passwords and passkeys in your React Native applications.", "topics": [ - "react-native", "ios", "android", "passkeys", @@ -130882,20 +130199,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-credentials-manager", "npm": { - "downloads": 719, - "weekDownloads": 197, - "size": 154933, - "latestRelease": "0.7.0", - "latestReleaseDate": "2025-08-15T15:51:37.148Z" + "downloads": 1214, + "weekDownloads": 294, + "size": 158073, + "latestRelease": "0.8.1", + "latestReleaseDate": "2025-10-21T08:44:38.294Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": -0.517, - "topicSearchString": "react-native ios android passkeys webauthn authentication credential-manager google-signin passwordless biometric security identity fido2 signin google-sign-in password-manager signup" + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": 0.206, + "topicSearchString": "ios android passkeys webauthn authentication credential-manager google-signin passwordless biometric security identity fido2 signin google-sign-in password-manager signup" }, { "githubUrl": "https://github.com/MortalKastor/expo-resolve-url", @@ -130930,7 +130251,6 @@ "isPrivate": false, "description": "Get the destination URL of a redirect link (like marketing or shortened links) without following it on React Native", "topics": [ - "react-native", "expo", "expo-resolve-url", "resolveurl", @@ -130948,22 +130268,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-resolve-url", "npm": { - "downloads": 3, - "weekDownloads": 0, + "downloads": 5, + "weekDownloads": 2, "size": 14753, "latestRelease": "1.0.1", "latestReleaseDate": "2025-04-17T15:52:03.756Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -1, - "topicSearchString": "react-native expo expo-resolve-url resolveurl unshorten url url-shortener" + "popularity": -0.6, + "topicSearchString": "expo expo-resolve-url resolveurl unshorten url url-shortener" }, { "githubUrl": "https://github.com/jekingohel/react-native-wordcloud", @@ -130996,8 +130318,6 @@ "isPrivate": false, "description": "A React Native library for creating beautiful and neat word (tag) cloud from any text with custom weight and color.", "topics": [ - "react", - "react-native", "word", "cloud", "wordcloud", @@ -131019,22 +130339,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 6368, - "weekDownloads": 1537, + "downloads": 5354, + "weekDownloads": 1291, "size": 23031, "latestRelease": "1.0.6", "latestReleaseDate": "2024-12-16T11:19:16.263Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], "popularity": -0.045, - "topicSearchString": "react react-native word cloud wordcloud word-cloud buuble bubble-chart visualization tag tagcloud tag-cloud" + "topicSearchString": "word cloud wordcloud word-cloud buuble bubble-chart visualization tag tagcloud tag-cloud" }, { "githubUrl": "https://github.com/patrickkabwe/react-native-nitro-network-info", @@ -131061,7 +130381,7 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 12, + "stars": 17, "dependencies": 0 }, "name": "react-native-nitro-network-info", @@ -131070,7 +130390,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native library for monitoring network connectivity status and connection type using Nitro Modules for high performance.", "topics": [ - "react-native", "nitro-network-info", "nitro", "network", @@ -131089,23 +130408,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-network-info", "npm": { - "downloads": 210, - "weekDownloads": 8, + "downloads": 98, + "weekDownloads": 23, "size": 93607, "latestRelease": "1.0.5", "latestReleaseDate": "2025-08-20T16:09:01.085Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.967, - "topicSearchString": "react-native nitro-network-info nitro network connection wifi cellular ethernet" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.8, + "topicSearchString": "nitro-network-info nitro network connection wifi cellular ethernet" }, { "githubUrl": "https://github.com/tarikfp/expo-pencilkit-ui", @@ -131128,10 +130446,10 @@ "updatedAt": "2025-06-07T20:48:12Z", "createdAt": "2025-06-07T20:27:17Z", "pushedAt": "2025-06-07T20:48:12Z", - "forks": 0, + "forks": 1, "issues": 2, "subscribers": 0, - "stars": 39, + "stars": 44, "dependencies": 0 }, "name": "expo-pencilkit-ui", @@ -131141,7 +130459,6 @@ "topics": [ "expo", "expo-module", - "react-native", "pencilkit", "apple-pencil", "drawing", @@ -131161,22 +130478,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-pencilkit-ui", "npm": { - "downloads": 91, - "weekDownloads": 8, + "downloads": 179, + "weekDownloads": 17, "size": 53913, "latestRelease": "1.0.4", "latestReleaseDate": "2025-06-07T20:44:54.408Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.674, - "topicSearchString": "expo expo-module react-native pencilkit apple-pencil drawing canvas ios expo-pencilkit-ui expo-pencilkit apple-pencilkit" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.669, + "topicSearchString": "expo expo-module pencilkit apple-pencil drawing canvas ios expo-pencilkit-ui expo-pencilkit apple-pencilkit" }, { "githubUrl": "https://github.com/software-mansion/react-native-whip-whep/tree/main/packages/react-native-client", @@ -131186,6 +130503,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/software-mansion/react-native-whip-whep", @@ -131197,13 +130515,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-22T11:21:19Z", + "updatedAt": "2025-10-16T10:45:57Z", "createdAt": "2024-07-15T12:36:18Z", - "pushedAt": "2025-08-22T11:21:19Z", + "pushedAt": "2025-10-16T10:45:57Z", "forks": 2, - "issues": 2, + "issues": 1, "subscribers": 4, - "stars": 29, + "stars": 31, "dependencies": 1 }, "name": "react-native-whip-whep", @@ -131211,7 +130529,6 @@ "isPrivate": false, "description": "An implementation of WHIP and WHEP protocols functionalities for React Native.", "topics": [ - "react-native", "whip", "whep", "webrtc", @@ -131229,22 +130546,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 646, - "weekDownloads": 46, - "size": 107819, - "latestRelease": "0.3.1", - "latestReleaseDate": "2025-08-22T11:22:51.573Z" + "downloads": 807, + "weekDownloads": 69, + "size": 133907, + "latestRelease": "0.5.0", + "latestReleaseDate": "2025-10-16T10:47:36.652Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.689, - "topicSearchString": "react-native whip whep webrtc streaming video audio" + "popularity": -0.677, + "topicSearchString": "whip whep webrtc streaming video audio" }, { "githubUrl": "https://github.com/software-mansion/react-native-audio-api/tree/main/packages/react-native-audio-api", @@ -131253,6 +130572,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/software-mansion/react-native-audio-api", @@ -131264,13 +130584,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T10:29:35Z", + "updatedAt": "2025-10-21T09:48:57Z", "createdAt": "2024-07-03T09:13:20Z", - "pushedAt": "2025-09-08T10:29:35Z", - "forks": 26, + "pushedAt": "2025-10-21T09:48:57Z", + "forks": 33, "issues": 14, "subscribers": 10, - "stars": 494, + "stars": 557, "dependencies": 0 }, "name": "react-native-audio-api", @@ -131279,11 +130599,9 @@ "registry": "https://registry.npmjs.org/", "description": "react-native-audio-api provides system for controlling audio in React Native environment compatible with Web Audio API specification", "topics": [ - "react-native", "audio", "audio-api", "web-audio-api", - "react", "music", "player" ], @@ -131297,24 +130615,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-audio-api", "npm": { - "downloads": 15858, - "weekDownloads": 2380, - "size": 106881512, - "latestRelease": "0.8.2", - "latestReleaseDate": "2025-09-05T14:38:03.452Z" + "downloads": 20363, + "weekDownloads": 4048, + "size": 145758416, + "latestRelease": "0.9.1", + "latestReleaseDate": "2025-10-13T12:11:15.861Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.128, - "topicSearchString": "react-native audio audio-api web-audio-api react music player" + "popularity": 0.169, + "topicSearchString": "audio audio-api web-audio-api music player" }, { "githubUrl": "https://github.com/teamairship/react-native-public-ip", @@ -131363,13 +130682,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "react-native-public-ip", "npm": { - "downloads": 37302, - "weekDownloads": 6027, + "downloads": 36006, + "weekDownloads": 7588, "size": 2558, "latestRelease": "1.0.2", "latestReleaseDate": "2019-10-18T15:43:52.105Z" @@ -131379,7 +130699,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.613, + "popularity": -0.571, "topicSearchString": "ip ipv4 ipv6 address public external own" }, { @@ -131414,7 +130734,6 @@ "isPrivate": false, "description": "React Native library for detecting component visibility in the viewport.", "topics": [ - "react-native", "viewport", "visibility", "detector", @@ -131427,11 +130746,11 @@ "user-experience", "optimization", "library", - "react", "utility", "performance" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -131440,22 +130759,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-viewport-detector", "npm": { - "downloads": 1523, - "weekDownloads": 170, + "downloads": 1870, + "weekDownloads": 469, "size": 14942, "latestRelease": "1.0.7", "latestReleaseDate": "2025-04-01T07:24:00.815Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.095, - "topicSearchString": "react-native viewport visibility detector in-view screen components ui visibility-detection mobile user-experience optimization library react utility performance" + "popularity": 0.213, + "topicSearchString": "viewport visibility detector in-view screen components ui visibility-detection mobile user-experience optimization library utility performance" }, { "githubUrl": "https://github.com/rn-toolkit/react-native-lottie-splash-screen", @@ -131493,7 +130814,6 @@ "isPrivate": false, "description": "⚡ Lottie splash screen for your react native app!", "topics": [ - "react-native", "component", "splash-screen", "lottie-splash-screen", @@ -131516,12 +130836,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 31, - "weekDownloads": 5, + "downloads": 159, + "weekDownloads": 12, "size": 2196927, "latestRelease": "1.1.5", "latestReleaseDate": "2023-08-16T01:46:25.896Z" @@ -131531,8 +130852,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1.607, - "topicSearchString": "react-native component splash-screen lottie-splash-screen lottie animation splashscreen splash launch-screen launchscreen android ios" + "popularity": -1.685, + "topicSearchString": "component splash-screen lottie-splash-screen lottie animation splashscreen splash launch-screen launchscreen android ios" }, { "githubUrl": "https://github.com/romgrk/react-fast-memo", @@ -131555,7 +130876,7 @@ "pushedAt": "2024-03-25T15:18:12Z", "forks": 0, "issues": 0, - "subscribers": 2, + "subscribers": 1, "stars": 62, "dependencies": 0 }, @@ -131574,12 +130895,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-fast-memo", "npm": { - "downloads": 16, - "weekDownloads": 0, + "downloads": 146, + "weekDownloads": 1, "size": 9571, "latestRelease": "2.0.1", "latestReleaseDate": "2024-03-10T19:24:12.099Z" @@ -131589,7 +130911,7 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -1, + "popularity": -0.744, "topicSearchString": "" }, { @@ -131608,13 +130930,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-29T15:55:46Z", + "updatedAt": "2025-10-07T17:52:43Z", "createdAt": "2022-03-26T13:31:01Z", - "pushedAt": "2025-08-29T15:55:46Z", + "pushedAt": "2025-10-07T17:52:43Z", "forks": 23, - "issues": 9, - "subscribers": 13, - "stars": 1827, + "issues": 10, + "subscribers": 12, + "stars": 1861, "dependencies": 0 }, "name": "mutative", @@ -131631,8 +130953,7 @@ "immer", "reducer", "redux", - "state-management", - "react" + "state-management" ], "license": { "key": "mit", @@ -131644,15 +130965,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "mutative", "npm": { - "downloads": 525604, - "weekDownloads": 89893, - "size": 719495, - "latestRelease": "1.2.0", - "latestReleaseDate": "2025-05-22T14:57:47.524Z" + "downloads": 554965, + "weekDownloads": 114274, + "size": 705484, + "latestRelease": "1.3.0", + "latestReleaseDate": "2025-09-21T16:02:59.572Z" }, "score": 73, "matchingScoreModifiers": [ @@ -131661,14 +130983,15 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.145, - "topicSearchString": "immutable mutable copy-on-write mutative immutability mutation immer reducer redux state-management react" + "popularity": 0.175, + "topicSearchString": "immutable mutable copy-on-write mutative immutability mutation immer reducer redux state-management" }, { "githubUrl": "https://github.com/immerjs/immer", "ios": true, "android": true, "web": true, + "newArchitecture": true, "github": { "urls": { "repo": "https://github.com/immerjs/immer", @@ -131680,13 +131003,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T11:19:30Z", + "updatedAt": "2025-10-06T15:53:12Z", "createdAt": "2017-12-29T12:25:47Z", - "pushedAt": "2025-09-12T11:19:30Z", - "forks": 857, + "pushedAt": "2025-10-06T15:53:12Z", + "forks": 861, "issues": 33, - "subscribers": 150, - "stars": 28594, + "subscribers": 149, + "stars": 28665, "dependencies": 0 }, "name": "immer", @@ -131712,25 +131035,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "immer", "npm": { - "downloads": 73355826, - "weekDownloads": 12357798, + "downloads": 72281439, + "weekDownloads": 15984357, "size": 632100, "latestRelease": "10.1.3", "latestReleaseDate": "2025-09-01T18:14:01.763Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.143, + "popularity": 0.188, "topicSearchString": "immutable mutable copy-on-write immutables reducer redux state-tree" }, { @@ -131759,9 +131082,9 @@ "createdAt": "2025-04-24T10:52:15Z", "pushedAt": "2025-09-05T10:43:49Z", "forks": 2, - "issues": 0, + "issues": 1, "subscribers": 2, - "stars": 15, + "stars": 16, "dependencies": 0 }, "name": "@logicwind/react-native-exit-app", @@ -131770,7 +131093,6 @@ "registry": "https://registry.npmjs.org/", "description": "Exit / Close / Kill / shutdown your react native app. Does not invoke a crash notification.", "topics": [ - "react-native", "ios", "android", "exit", @@ -131792,22 +131114,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 6036, - "weekDownloads": 1131, + "downloads": 9663, + "weekDownloads": 2496, "size": 13570, "latestRelease": "0.2.0", "latestReleaseDate": "2025-09-05T11:14:01.465Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.091, - "topicSearchString": "react-native ios android exit exit-app close-app quit-app app-exit android-exit ios-exit system-exit" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.03, + "topicSearchString": "ios android exit exit-app close-app quit-app app-exit android-exit ios-exit system-exit" }, { "githubUrl": "https://github.com/logicwind/react-native-tvos-keyboard", @@ -131832,7 +131153,7 @@ "createdAt": "2025-04-25T06:36:16Z", "pushedAt": "2025-06-19T09:57:08Z", "forks": 0, - "issues": 0, + "issues": 1, "subscribers": 2, "stars": 2, "dependencies": 0 @@ -131843,12 +131164,10 @@ "registry": "https://registry.npmjs.org/", "description": "Keyboard plugin for react-native tvos", "topics": [ - "react-native", "ios", "tvos", "apple-tv", "keyboard", - "native-keyboard", "tvos-keyboard", "voice-typing", "voice-search", @@ -131865,21 +131184,21 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 18, - "weekDownloads": 2, + "downloads": 51, + "weekDownloads": 14, "size": 27210, "latestRelease": "0.1.2", "latestReleaseDate": "2025-06-03T13:17:40.181Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.9, - "topicSearchString": "react-native ios tvos apple-tv keyboard native-keyboard tvos-keyboard voice-typing voice-search uisearchcontroller tv" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.767, + "topicSearchString": "ios tvos apple-tv keyboard tvos-keyboard voice-typing voice-search uisearchcontroller tv" }, { "githubUrl": "https://github.com/logicwind/react-native-tvos-ssl-pinning", @@ -131918,7 +131237,6 @@ "registry": "https://registry.npmjs.org/", "description": "React-native TVOS plugin to support ssl pinning.", "topics": [ - "react-native", "ios", "android", "ssl", @@ -131934,7 +131252,7 @@ "networking", "tls", "cert-pinning", - "native-module" + "module" ], "license": { "key": "mit", @@ -131946,21 +131264,21 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 9, + "downloads": 18, "weekDownloads": 2, "size": 51365, "latestRelease": "0.1.0", "latestReleaseDate": "2025-06-09T05:15:33.852Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.9, + "topicSearchString": "ios android ssl ssl-pinning tvos certificate-pinning https network-security fetch axios ssl-pinning-tvos secure-networking networking tls cert-pinning module" }, { "githubUrl": "https://github.com/CRIIPI11/rn-watch-connect", @@ -131994,7 +131312,6 @@ "isPrivate": false, "description": "Interact with apple watch directly from React Native", "topics": [ - "react-native", "expo", "rn-watch-connect", "rnwatchconnect", @@ -132016,22 +131333,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "rn-watch-connect", "npm": { - "downloads": 12, - "weekDownloads": 1, + "downloads": 16, + "weekDownloads": 3, "size": 65492, "latestRelease": "1.0.0", "latestReleaseDate": "2025-06-13T20:20:40.809Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.9, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.8, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/loro-dev/loro-react-native", @@ -132052,13 +131369,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-07-23T02:51:31Z", + "updatedAt": "2025-09-24T00:55:35Z", "createdAt": "2025-06-02T00:55:12Z", - "pushedAt": "2025-07-23T02:51:31Z", + "pushedAt": "2025-09-24T00:55:35Z", "forks": 1, "issues": 2, "subscribers": 1, - "stars": 11, + "stars": 12, "dependencies": 1 }, "name": "loro-react-native", @@ -132067,7 +131384,6 @@ "registry": "https://registry.npmjs.org/", "description": "React native binding for Loro", "topics": [ - "react-native", "ios", "android" ], @@ -132081,20 +131397,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "loro-react-native", "npm": { - "downloads": 23, - "weekDownloads": 3, - "size": 59676192, - "latestRelease": "1.5.4", - "latestReleaseDate": "2025-07-23T02:52:17.464Z" + "downloads": 181, + "weekDownloads": 77, + "size": 59874231, + "latestRelease": "1.8.1", + "latestReleaseDate": "2025-09-24T00:56:00.660Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": -0.88, - "topicSearchString": "react-native ios android" + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.633, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/JairajJangle/react-native-navigation-mode", @@ -132108,6 +131428,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/JairajJangle/react-native-navigation-mode", @@ -132119,13 +131440,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-01T12:56:09Z", + "updatedAt": "2025-09-24T03:21:05Z", "createdAt": "2025-06-13T13:37:30Z", - "pushedAt": "2025-09-01T12:56:09Z", + "pushedAt": "2025-09-24T03:21:05Z", "forks": 0, "issues": 0, "subscribers": 1, - "stars": 35, + "stars": 38, "dependencies": 0 }, "name": "react-native-navigation-mode", @@ -132134,7 +131455,6 @@ "registry": "https://registry.npmjs.org/", "description": "Detect Android navigation mode (3-button, 2-button, or gesture navigation)", "topics": [ - "react-native", "android", "ios", "navigation", @@ -132143,7 +131463,6 @@ "edge-to-edge", "navigation-bar", "turbo-module", - "native", "gestures" ], "license": { @@ -132156,22 +131475,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-navigation-mode", "npm": { - "downloads": 21939, - "weekDownloads": 3960, + "downloads": 33210, + "weekDownloads": 7006, "size": 44049, - "latestRelease": "1.2.2", - "latestReleaseDate": "2025-09-01T12:56:16.187Z" + "latestRelease": "1.2.3", + "latestReleaseDate": "2025-09-24T02:44:58.258Z" }, "score": 51, "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.153, - "topicSearchString": "react-native android ios navigation gesture navigation-buttons edge-to-edge navigation-bar turbo-module native gestures" + "popularity": 0.179, + "topicSearchString": "android ios navigation gesture navigation-buttons edge-to-edge navigation-bar turbo-module gestures" }, { "githubUrl": "https://github.com/sbaiahmed1/react-native-blur", @@ -132195,15 +131516,15 @@ "hasIssues": true, "hasWiki": false, "hasSponsorships": false, - "hasDiscussions": false, + "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-09T23:56:52Z", + "updatedAt": "2025-10-15T19:34:08Z", "createdAt": "2025-06-13T03:34:57Z", - "pushedAt": "2025-09-09T23:56:52Z", + "pushedAt": "2025-10-15T19:34:08Z", "forks": 0, - "issues": 1, - "subscribers": 1, - "stars": 96, + "issues": 8, + "subscribers": 3, + "stars": 136, "dependencies": 0 }, "name": "@sbaiahmed1/react-native-blur", @@ -132212,11 +131533,9 @@ "registry": "https://registry.npmjs.org/", "description": "A modern React Native blur view component that provides native blur effects for both iOS and Android platforms.", "topics": [ - "react-native", "ios", "android", "blur", - "react-blur", "modern-blur", "android-blur", "blur-effect", @@ -132236,21 +131555,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 5231, - "weekDownloads": 2093, - "size": 129551, - "latestRelease": "0.3.0", - "latestReleaseDate": "2025-09-07T22:25:55.813Z" + "downloads": 5916, + "weekDownloads": 824, + "size": 133658, + "latestRelease": "3.2.0", + "latestReleaseDate": "2025-10-14T22:33:39.151Z" }, "score": 51, "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.34, - "topicSearchString": "react-native ios android blur react-blur modern-blur android-blur blur-effect blurview visualeffectview liquid-glass liquidglass liquidglassreact" + "popularity": 0.118, + "topicSearchString": "ios android blur modern-blur android-blur blur-effect blurview visualeffectview liquid-glass liquidglass liquidglassreact" }, { "githubUrl": "https://github.com/logicwind/react-native-rn-in-app-update", @@ -132282,7 +131603,6 @@ "registry": "https://registry.npmjs.org/", "description": "Google in app update plugin for react-native (Android only)", "topics": [ - "react-native", "ios", "android", "in-app-update", @@ -132303,12 +131623,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-rn-in-app-update", "npm": { - "downloads": 65, - "weekDownloads": 8, + "downloads": 72, + "weekDownloads": 17, "size": 21067, "latestRelease": "1.1.0", "latestReleaseDate": "2025-08-04T13:55:40.591Z" @@ -132317,8 +131639,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.893, - "topicSearchString": "react-native ios android in-app-update android-update play-store google-play update play-core app-update" + "popularity": -0.787, + "topicSearchString": "ios android in-app-update android-update play-store google-play update play-core app-update" }, { "githubUrl": "https://github.com/nandorojo/galeria", @@ -132338,13 +131660,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-25T16:48:35Z", + "updatedAt": "2025-10-14T12:04:10Z", "createdAt": "2023-08-27T21:15:14Z", - "pushedAt": "2025-08-25T16:48:35Z", + "pushedAt": "2025-10-14T12:04:10Z", "forks": 28, - "issues": 25, + "issues": 26, "subscribers": 9, - "stars": 561, + "stars": 590, "dependencies": 2 }, "name": "@nandorojo/galeria", @@ -132352,7 +131674,6 @@ "isPrivate": false, "description": "The React (Native) Image Viewer. 📷", "topics": [ - "react-native", "expo", "galeria" ], @@ -132366,23 +131687,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 18273, - "weekDownloads": 2432, + "downloads": 22155, + "weekDownloads": 4408, "size": 83169, "latestRelease": "1.2.0", "latestReleaseDate": "2025-03-21T15:33:41.079Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.113, - "topicSearchString": "react-native expo galeria" + "popularity": 0.169, + "topicSearchString": "expo galeria" }, { "githubUrl": "https://github.com/codemask-labs/stan-js", @@ -132404,13 +131726,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-26T10:19:50Z", + "updatedAt": "2025-09-30T13:04:53Z", "createdAt": "2023-12-15T15:24:22Z", - "pushedAt": "2025-08-26T10:19:50Z", + "pushedAt": "2025-09-30T13:04:53Z", "forks": 2, "issues": 0, - "subscribers": 4, - "stars": 161, + "subscribers": 5, + "stars": 170, "dependencies": 0 }, "name": "stan-js", @@ -132419,7 +131741,6 @@ "description": "Lightweight and flexible state management library designed for use in React applications and beyond", "topics": [ "state", - "react", "store", "context", "rerenders", @@ -132436,23 +131757,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "stan-js", "npm": { - "downloads": 1465, - "weekDownloads": 268, - "size": 76890, - "latestRelease": "1.7.0", - "latestReleaseDate": "2025-04-25T13:06:06.658Z" + "downloads": 1825, + "weekDownloads": 361, + "size": 80092, + "latestRelease": "1.8.2", + "latestReleaseDate": "2025-09-30T13:05:06.166Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.156, - "topicSearchString": "state react store context rerenders typescript intellisense" + "popularity": 0.168, + "topicSearchString": "state store context rerenders typescript intellisense" }, { "githubUrl": "https://github.com/openspacelabs/react-native-zoomable-view", @@ -132475,9 +131796,9 @@ "createdAt": "2021-09-17T23:14:25Z", "pushedAt": "2025-04-28T20:17:46Z", "forks": 61, - "issues": 50, + "issues": 51, "subscribers": 7, - "stars": 233, + "stars": 234, "dependencies": 1 }, "name": "@openspacelabs/react-native-zoomable-view", @@ -132486,15 +131807,12 @@ "registry": "https://registry.npmjs.org/", "description": "A view component for react-native with pinch to zoom, tap to move and double tap to zoom capability.", "topics": [ - "react-native", - "react-component", + "component", "ios", "android", "pinch-to-zoom", "pinch", "mobile", - "native", - "component", "view", "zoom", "zoomable", @@ -132511,22 +131829,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 132760, - "weekDownloads": 25033, + "downloads": 131028, + "weekDownloads": 29042, "size": 499156, "latestRelease": "2.4.2", "latestReleaseDate": "2025-04-28T20:17:43.570Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.16, - "topicSearchString": "react-native react-component ios android pinch-to-zoom pinch mobile native component view zoom zoomable double tap" + "popularity": 0.188, + "topicSearchString": "component ios android pinch-to-zoom pinch mobile view zoom zoomable double tap" }, { "githubUrl": "https://github.com/kiethuynh0904/react-native-nitro-toast", @@ -132550,10 +131868,10 @@ "updatedAt": "2025-09-13T13:41:20Z", "createdAt": "2025-06-02T04:09:25Z", "pushedAt": "2025-09-13T13:41:20Z", - "forks": 1, + "forks": 2, "issues": 1, "subscribers": 1, - "stars": 42, + "stars": 51, "dependencies": 0 }, "name": "react-native-nitro-toast", @@ -132562,13 +131880,12 @@ "registry": "https://registry.npmjs.org/", "description": "Native toast library for React Native, built with SwiftUI & Jetpack Compose — powered by NitroModules.", "topics": [ - "react-native", "nitro", "toast", "toast-notification", "jetpack-compose", "kotlin", - "native-ui", + "ui", "nitro-modules", "swift", "swiftui" @@ -132583,23 +131900,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-toast", "npm": { - "downloads": 61, - "weekDownloads": 18, + "downloads": 279, + "weekDownloads": 12, "size": 173119, "latestRelease": "1.2.5", "latestReleaseDate": "2025-09-13T13:41:52.355Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.493, - "topicSearchString": "react-native nitro toast toast-notification jetpack-compose kotlin native-ui nitro-modules swift swiftui" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.713, + "topicSearchString": "nitro toast toast-notification jetpack-compose kotlin ui nitro-modules swift swiftui" }, { "githubUrl": "https://github.com/victorhenrion/react-native-document-picker-macos", @@ -132633,7 +131949,6 @@ "isPrivate": false, "description": "A file and directory picker for React Native macOS.", "topics": [ - "react-native", "macos" ], "license": { @@ -132646,20 +131961,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-document-picker-macos", "npm": { - "downloads": 8, - "weekDownloads": 3, + "downloads": 134, + "weekDownloads": 4, "size": 29573, "latestRelease": "1.0.0", "latestReleaseDate": "2025-07-16T09:53:17.895Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.4, - "topicSearchString": "react-native macos" + "popularity": -0.974, + "topicSearchString": "macos" }, { "githubUrl": "https://github.com/observ33r/object-equals", @@ -132685,7 +132001,7 @@ "forks": 3, "issues": 0, "subscribers": 1, - "stars": 73, + "stars": 75, "dependencies": 0 }, "name": "@observ33r/object-equals", @@ -132705,7 +132021,6 @@ "engine-aware", "deep-equal", "typescript", - "react", "circular", "crossrealm", "symbols", @@ -132723,21 +132038,20 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4381, - "weekDownloads": 706, + "downloads": 3036, + "weekDownloads": 404, "size": 250928, "latestRelease": "1.1.6", "latestReleaseDate": "2025-07-18T05:37:34.906Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": 0.137, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.113, + "topicSearchString": "deep equal equals equality comparison object compare fast high-performance engine-aware deep-equal typescript circular crossrealm symbols custom-equality structured-equality cross-realm" }, { "githubUrl": "https://github.com/anuj-kumary/react-native-toastify", @@ -132763,7 +132077,7 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 3, + "stars": 4, "dependencies": 0 }, "name": "react-native-toastify-expo", @@ -132771,12 +132085,10 @@ "isPrivate": false, "description": "A beautiful and customizable toast notification component for React Native applications.", "topics": [ - "react-native", "toast", "notification", "alert", "expo", - "react", "toastify" ], "license": { @@ -132789,21 +132101,20 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 55, - "weekDownloads": 18, + "downloads": 236, + "weekDownloads": 20, "size": 45624, "latestRelease": "1.1.1", "latestReleaseDate": "2025-06-20T10:24:27.962Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.7, - "topicSearchString": "react-native toast notification alert expo react toastify" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.927, + "topicSearchString": "toast notification alert expo toastify" }, { "githubUrl": "https://github.com/react-native-bridges/react-native-youtube-bridge/tree/main/packages/react-native-youtube-bridge", @@ -132830,13 +132141,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-26T14:50:31Z", + "updatedAt": "2025-09-16T16:58:21Z", "createdAt": "2025-06-11T09:15:22Z", - "pushedAt": "2025-08-26T14:50:31Z", + "pushedAt": "2025-09-16T16:58:21Z", "forks": 1, "issues": 0, "subscribers": 1, - "stars": 17, + "stars": 20, "dependencies": 2 }, "name": "react-native-youtube-bridge", @@ -132844,7 +132155,6 @@ "isPrivate": false, "description": "🎥 Easy-to-use YouTube player for React Native with cross-platform support", "topics": [ - "react-native", "ios", "android", "youtube", @@ -132863,23 +132173,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-youtube-bridge", "npm": { - "downloads": 1081, - "weekDownloads": 268, - "size": 166346, - "latestRelease": "2.1.3", - "latestReleaseDate": "2025-08-25T01:49:52.529Z" + "downloads": 1723, + "weekDownloads": 243, + "size": 166350, + "latestRelease": "2.1.4", + "latestReleaseDate": "2025-09-16T16:59:10.233Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.039, - "topicSearchString": "react-native ios android youtube youtube youtube-bridge youtube-iframe-api youtube-iframe" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.13, + "topicSearchString": "ios android youtube youtube youtube-bridge youtube-iframe-api youtube-iframe" }, { "githubUrl": "https://github.com/sbaiahmed1/react-native-biometrics", @@ -132904,13 +132212,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-22T22:26:36Z", + "updatedAt": "2025-10-07T20:29:24Z", "createdAt": "2025-06-17T00:44:22Z", - "pushedAt": "2025-08-22T22:26:36Z", - "forks": 4, - "issues": 2, - "subscribers": 1, - "stars": 39, + "pushedAt": "2025-10-07T20:29:24Z", + "forks": 5, + "issues": 3, + "subscribers": 0, + "stars": 62, "dependencies": 0 }, "name": "@sbaiahmed1/react-native-biometrics", @@ -132919,7 +132227,6 @@ "registry": "https://registry.npmjs.org/", "description": "A lightweight and unified React Native library for biometric authentication across iOS and Android. Supports Face ID, Touch ID, and Fingerprint with a simple JavaScript API.", "topics": [ - "react-native", "ios", "android", "biometrics", @@ -132938,7 +132245,7 @@ "secure-login", "expo", "mobile-biometrics", - "native-modules", + "modules", "turbo-modules", "typescript", "mobile-login" @@ -132950,24 +132257,26 @@ "url": "http://choosealicense.com/licenses/mit/", "id": "MDc6TGljZW5zZTEz" }, - "hasTypes": true, + "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 3232, - "weekDownloads": 1011, - "size": 246955, - "latestRelease": "0.4.0", - "latestReleaseDate": "2025-07-11T03:42:31.399Z" + "downloads": 6424, + "weekDownloads": 704, + "size": 435640, + "latestRelease": "0.7.2", + "latestReleaseDate": "2025-10-07T20:29:24.089Z" }, "score": 51, "matchingScoreModifiers": [ "Recently updated" ], - "popularity": 0.266, - "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" + "popularity": 0.093, + "topicSearchString": "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 modules turbo-modules typescript mobile-login" }, { "githubUrl": "https://github.com/yjose/input-otp-native", @@ -132992,7 +132301,7 @@ "forks": 8, "issues": 2, "subscribers": 1, - "stars": 231, + "stars": 239, "dependencies": 0 }, "name": "input-otp-native", @@ -133001,13 +132310,12 @@ "registry": "https://registry.npmjs.org/", "description": "🔐 OTP input for React Native/Expo App: unstyled, copy-paste examples, fully tested", "topics": [ - "react-native", "otp", "otp-input", "expo-otp-input", "expo", "otp-verification", - "react-ntive" + "ntive" ], "license": { "key": "mit", @@ -133019,23 +132327,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "input-otp-native", "npm": { - "downloads": 34966, - "weekDownloads": 5495, + "downloads": 43493, + "weekDownloads": 10534, "size": 163111, "latestRelease": "0.5.0", "latestReleaseDate": "2025-06-22T00:57:07.494Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.134, - "topicSearchString": "react-native otp otp-input expo-otp-input expo otp-verification react-ntive" + "popularity": 0.206, + "topicSearchString": "otp otp-input expo-otp-input expo otp-verification ntive" }, { "githubUrl": "https://github.com/vega-ui/ui-react-native/tree/main/packages/ui", @@ -133058,13 +132366,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-20T13:20:08Z", + "updatedAt": "2025-10-12T13:24:44Z", "createdAt": "2025-05-31T00:54:40Z", - "pushedAt": "2025-07-20T13:20:08Z", + "pushedAt": "2025-10-12T13:24:44Z", "forks": 0, "issues": 0, "subscribers": 0, - "stars": 5, + "stars": 6, "dependencies": 6 }, "name": "@vega-ui/react-native", @@ -133088,20 +132396,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 11, - "weekDownloads": 3, - "size": 342684, - "latestRelease": "0.4.0", - "latestReleaseDate": "2025-07-20T13:23:45.793Z" + "downloads": 502, + "weekDownloads": 15, + "size": 344180, + "latestRelease": "0.5.4", + "latestReleaseDate": "2025-10-12T15:27:34.648Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.7, + "popularity": -0.975, "topicSearchString": "ui-kit ui ts typescript js" }, { @@ -133143,7 +132452,6 @@ "isPrivate": false, "description": "🎥 Easy-to-use Vimeo player for React Native with cross-platform support", "topics": [ - "react-native", "expo", "ios", "android", @@ -133169,22 +132477,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-vimeo-bridge", "npm": { - "downloads": 842, - "weekDownloads": 128, + "downloads": 985, + "weekDownloads": 290, "size": 174340, "latestRelease": "1.1.0", "latestReleaseDate": "2025-07-15T13:21:06.558Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.871, - "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" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.749, + "topicSearchString": "expo ios android web vimeo player vimeo-player vimeo-video vimeo-bridge expo-vimeo-player expo-vimeo-video bridges vimeo-iframe expo-vimeo" }, { "githubUrl": "https://github.com/sjwall/react-native-aria-description/tree/main/lib", @@ -133222,13 +132529,11 @@ "isPrivate": false, "description": "React Native Higher-Order Component to map aria-description to accessibilityHint", "topics": [ - "react-native", "ui", "aria", "aria-description", "aria-describedby", "a11y", - "react", "jsx", "hoc", "higher-order-component" @@ -133243,22 +132548,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 397, - "weekDownloads": 90, + "downloads": 241, + "weekDownloads": 60, "size": 45225, "latestRelease": "0.5.0", "latestReleaseDate": "2025-01-24T15:55:35.382Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.806, - "topicSearchString": "react-native ui aria aria-description aria-describedby a11y react jsx hoc higher-order-component" + "popularity": -0.786, + "topicSearchString": "ui aria aria-description aria-describedby a11y jsx hoc higher-order-component" }, { "githubUrl": "https://github.com/primus/eventemitter3", @@ -133284,7 +132589,7 @@ "forks": 225, "issues": 14, "subscribers": 36, - "stars": 3458, + "stars": 3471, "dependencies": 0 }, "name": "eventemitter3", @@ -133320,25 +132625,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "eventemitter3", "npm": { - "downloads": 247523773, - "weekDownloads": 42254200, + "downloads": 229857246, + "weekDownloads": 51184448, "size": 73390, "latestRelease": "5.0.1", "latestReleaseDate": "2023-04-30T19:49:14.500Z" }, - "score": 81, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.145, + "popularity": 0.189, "topicSearchString": "eventemitter eventemitter2 eventemitter3 events addeventlistener addlistener emit emits emitter event once pub/sub publish reactor subscribe nodejs browser" }, { @@ -133378,7 +132683,6 @@ "isPrivate": false, "description": "A react native turbo module package for picking places using Google's new Places API on both iOS and Android", "topics": [ - "react-native", "ios", "android" ], @@ -133392,20 +132696,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-place-autocomplete-picker", "npm": { - "downloads": 381, - "weekDownloads": 6, + "downloads": 446, + "weekDownloads": 66, "size": 28395, "latestRelease": "1.0.2", "latestReleaseDate": "2025-08-07T02:34:20.246Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.987, - "topicSearchString": "react-native ios android" + "popularity": -0.873, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/superwall/expo-superwall", @@ -133415,6 +132721,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/superwall/expo-superwall", @@ -133426,13 +132733,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-11T09:36:28Z", + "updatedAt": "2025-10-18T14:41:27Z", "createdAt": "2025-05-21T11:09:57Z", - "pushedAt": "2025-08-11T09:36:28Z", - "forks": 2, - "issues": 10, + "pushedAt": "2025-10-18T14:41:27Z", + "forks": 3, + "issues": 8, "subscribers": 3, - "stars": 29, + "stars": 33, "dependencies": 1 }, "name": "expo-superwall", @@ -133440,7 +132747,6 @@ "isPrivate": false, "description": "Offical Expo Integration for Superwall", "topics": [ - "react-native", "expo", "expo-superwall", "superwallexpo" @@ -133455,22 +132761,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-superwall", "npm": { - "downloads": 9051, - "weekDownloads": 1351, - "size": 815209, - "latestRelease": "0.2.6", - "latestReleaseDate": "2025-08-11T09:37:01.639Z" + "downloads": 12640, + "weekDownloads": 2267, + "size": 825787, + "latestRelease": "0.3.2", + "latestReleaseDate": "2025-10-16T17:48:11.348Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.127, - "topicSearchString": "react-native expo expo-superwall superwallexpo" + "popularity": 0.152, + "topicSearchString": "expo expo-superwall superwallexpo" }, { "githubUrl": "https://github.com/SolankiYogesh/rn-turbo-location-enabler", @@ -133505,7 +132813,6 @@ "registry": "https://registry.npmjs.org/", "description": "allows to enabled location in android", "topics": [ - "react-native", "ios", "android" ], @@ -133519,20 +132826,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "rn-turbo-location-enabler", "npm": { - "downloads": 128, - "weekDownloads": 2, + "downloads": 33, + "weekDownloads": 10, "size": 18116, "latestRelease": "0.3.0", "latestReleaseDate": "2025-07-02T06:16:31.172Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.987, - "topicSearchString": "react-native ios android" + "popularity": -0.714, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/Iterable/react-native-sdk", @@ -133554,13 +132863,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-05T21:01:03Z", + "updatedAt": "2025-10-16T20:30:46Z", "createdAt": "2020-02-21T17:08:59Z", - "pushedAt": "2025-09-05T21:01:03Z", + "pushedAt": "2025-10-16T20:30:46Z", "forks": 38, - "issues": 15, - "subscribers": 7, - "stars": 45, + "issues": 10, + "subscribers": 6, + "stars": 46, "dependencies": 0 }, "name": "@iterable/react-native-sdk", @@ -133569,7 +132878,6 @@ "registry": "https://registry.npmjs.org/", "description": "Iterable SDK for React Native.", "topics": [ - "react-native", "ios", "android", "iterable", @@ -133586,22 +132894,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 130759, - "weekDownloads": 25165, - "size": 1299780, - "latestRelease": "2.0.2", - "latestReleaseDate": "2025-07-16T22:31:10.991Z" + "downloads": 105435, + "weekDownloads": 28578, + "size": 879588, + "latestRelease": "2.0.4", + "latestReleaseDate": "2025-10-16T20:40:20.737Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": 0.164, - "topicSearchString": "react-native ios android iterable sdk library" + "popularity": 0.23, + "topicSearchString": "ios android iterable sdk library" }, { "githubUrl": "https://github.com/Iterable/iterable-expo-plugin", @@ -133612,6 +132922,7 @@ "ios": true, "android": true, "newArchitecture": false, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Iterable/iterable-expo-plugin", @@ -133628,7 +132939,7 @@ "pushedAt": "2025-08-15T23:14:43Z", "forks": 0, "issues": 2, - "subscribers": 5, + "subscribers": 6, "stars": 0, "dependencies": 0 }, @@ -133637,7 +132948,6 @@ "isPrivate": false, "description": "Config plugin for @iterable/react-native-sdk", "topics": [ - "react-native", "expo", "@iterable/expo-plugin", "expoadapteriterable" @@ -133652,11 +132962,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 16152, - "weekDownloads": 3932, + "downloads": 16554, + "weekDownloads": 3400, "size": 529222, "latestRelease": "1.0.1", "latestReleaseDate": "2025-07-17T00:33:00.719Z" @@ -133665,8 +132977,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.043, - "topicSearchString": "react-native expo @iterable/expo-plugin expoadapteriterable" + "popularity": -0.075, + "topicSearchString": "expo @iterable/expo-plugin expoadapteriterable" }, { "githubUrl": "https://github.com/Soomgo-Mobile/react-native-code-push", @@ -133677,6 +132989,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/Soomgo-Mobile/react-native-code-push", @@ -133688,21 +133001,20 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-04T05:46:17Z", + "updatedAt": "2025-10-20T11:56:37Z", "createdAt": "2024-03-17T09:22:42Z", - "pushedAt": "2025-09-04T05:46:17Z", - "forks": 18, - "issues": 5, + "pushedAt": "2025-10-20T11:56:37Z", + "forks": 20, + "issues": 3, "subscribers": 2, - "stars": 108, - "dependencies": 5 + "stars": 117, + "dependencies": 6 }, "name": "@bravemobile/react-native-code-push", "fullName": "Soomgo-Mobile/react-native-code-push", "isPrivate": false, "description": "Seamless transition from AppCenter to a fully self-hosted CodePush", "topics": [ - "react-native", "expo", "code", "push", @@ -133721,22 +133033,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npm": { - "downloads": 4568, - "weekDownloads": 467, - "size": 1239555, - "latestRelease": "11.1.0", - "latestReleaseDate": "2025-08-20T05:41:16.331Z" + "downloads": 7364, + "weekDownloads": 2156, + "size": 1250649, + "latestRelease": "12.1.0", + "latestReleaseDate": "2025-10-20T11:57:26.449Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.087, - "topicSearchString": "react-native expo code push code-push expo-code-push codepush self-hosted" + "popularity": 0.249, + "topicSearchString": "expo code push code-push expo-code-push codepush self-hosted" }, { "githubUrl": "https://github.com/moyasar/moyasar-react-native", @@ -133773,7 +133085,6 @@ "description": "Moyasar React Native SDK", "topics": [ "moyasar", - "react-native", "ios", "android", "apple-pay", @@ -133791,22 +133102,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 1693, - "weekDownloads": 195, + "downloads": 5821, + "weekDownloads": 1721, "size": 1494730, "latestRelease": "0.10.0", "latestReleaseDate": "2025-09-11T07:03:54.469Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.152, - "topicSearchString": "moyasar react-native ios android apple-pay samsung-pay credit-card stc-pay" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.001, + "topicSearchString": "moyasar ios android apple-pay samsung-pay credit-card stc-pay" }, { "githubUrl": "https://github.com/cornejobarraza/expo-libvlc-player", @@ -133816,6 +133126,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/cornejobarraza/expo-libvlc-player", @@ -133825,15 +133136,15 @@ "hasIssues": true, "hasWiki": true, "hasSponsorships": false, - "hasDiscussions": false, + "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T06:36:54Z", + "updatedAt": "2025-10-18T20:24:48Z", "createdAt": "2025-07-03T10:20:01Z", - "pushedAt": "2025-09-12T06:36:54Z", + "pushedAt": "2025-10-18T20:24:48Z", "forks": 1, "issues": 0, - "subscribers": 2, - "stars": 13, + "subscribers": 4, + "stars": 17, "dependencies": 0 }, "name": "expo-libvlc-player", @@ -133841,7 +133152,6 @@ "isPrivate": false, "description": "LibVLC Player for Expo", "topics": [ - "react-native", "expo", "libvlc", "player", @@ -133858,23 +133168,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-libvlc-player", "npm": { - "downloads": 3321, - "weekDownloads": 1065, - "size": 120116, - "latestRelease": "2.1.4", - "latestReleaseDate": "2025-09-12T06:39:25.868Z" + "downloads": 1437, + "weekDownloads": 56, + "size": 125007, + "latestRelease": "2.2.2", + "latestReleaseDate": "2025-10-18T20:27:22.226Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.023, - "topicSearchString": "react-native expo libvlc player expo-libvlc-player expolibvlcplayer" + "popularity": -0.217, + "topicSearchString": "expo libvlc player expo-libvlc-player expolibvlcplayer" }, { "githubUrl": "https://github.com/saseungmin/react-native-gesture-image-viewer", @@ -133901,13 +133212,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-08-30T10:07:59Z", + "updatedAt": "2025-10-17T04:18:52Z", "createdAt": "2025-06-30T15:10:12Z", - "pushedAt": "2025-08-30T10:07:59Z", - "forks": 0, + "pushedAt": "2025-10-17T04:18:52Z", + "forks": 2, "issues": 0, "subscribers": 1, - "stars": 29, + "stars": 43, "dependencies": 0 }, "name": "react-native-gesture-image-viewer", @@ -133916,7 +133227,6 @@ "registry": "https://registry.npmjs.org/", "description": "🖼️ React Native Image Viewer - Reanimated-powered image gestures with full control", "topics": [ - "react-native", "ios", "android", "web", @@ -133954,23 +133264,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-gesture-image-viewer", "npm": { - "downloads": 2006, - "weekDownloads": 538, - "size": 201476, - "latestRelease": "1.7.1", - "latestReleaseDate": "2025-08-30T10:08:57.459Z" + "downloads": 2137, + "weekDownloads": 413, + "size": 210721, + "latestRelease": "1.9.1", + "latestReleaseDate": "2025-10-17T04:45:03.931Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.228, - "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" + "popularity": 0.165, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/cashfree/react-native-cashfree-pg-sdk", @@ -134005,7 +133315,6 @@ "registry": "https://registry.npmjs.org/", "description": "Sample app demonstrating integration of Cashfree's payment gateway in your React native project", "topics": [ - "react-native", "ios", "android", "cashfree", @@ -134031,12 +133340,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-cashfree-pg-sdk", "npm": { - "downloads": 5469, - "weekDownloads": 759, + "downloads": 5147, + "weekDownloads": 1134, "size": 1046320, "latestRelease": "2.2.5", "latestReleaseDate": "2025-07-25T09:52:12.956Z" @@ -134045,8 +133355,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.132, - "topicSearchString": "react-native ios android cashfree cashfree-sdk payment-gateway cashfree-pg-sdk bnpl card cardless-emi emi net-banking payment-integration payments upi" + "popularity": -0.063, + "topicSearchString": "ios android cashfree cashfree-sdk payment-gateway cashfree-pg-sdk bnpl card cardless-emi emi net-banking payment-integration payments upi" }, { "githubUrl": "https://github.com/SamadK01/react-native-unilist", @@ -134080,7 +133390,6 @@ "isPrivate": false, "description": "Beautiful FlatList and ScrollView wrapper for React Native. Updated to React 19, removed react-native-web-hooks, cleaned up dependencies.", "topics": [ - "react-native", "flatlist", "scrollview", "list", @@ -134096,11 +133405,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-unilist", "npm": { - "downloads": 4, + "downloads": 13, "weekDownloads": 0, "size": 70326, "latestRelease": "0.2.0", @@ -134111,7 +133421,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native flatlist scrollview list unilist" + "topicSearchString": "flatlist scrollview list unilist" }, { "githubUrl": "https://github.com/SamadK01/apikit", @@ -134143,7 +133453,6 @@ "isPrivate": false, "description": "Modern API toolkit for React Native and Expo with automatic token management, smart response parsing, and built-in error handling", "topics": [ - "react-native", "api", "fetch", "axios", @@ -134164,11 +133473,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 18, - "weekDownloads": 3, + "downloads": 22, + "weekDownloads": 0, "size": 56451, "latestRelease": "1.4.0", "latestReleaseDate": "2025-07-24T04:43:53.439Z" @@ -134177,8 +133487,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.85, - "topicSearchString": "react-native api fetch axios hooks typescript expo http-client api-client mmkv" + "popularity": -1, + "topicSearchString": "api fetch axios hooks typescript expo http-client api-client mmkv" }, { "githubUrl": "https://github.com/eggmun98/expo-android-keyboard-fix", @@ -134209,7 +133519,6 @@ "description": "Fix for KeyboardAvoidingView on Android 15 (SDK 35) in Expo/React Native apps", "topics": [ "expo", - "react-native", "android", "keyboard", "keyboardavoidingview", @@ -134227,12 +133536,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-android-keyboard-fix", "npm": { - "downloads": 2136, - "weekDownloads": 389, + "downloads": 8101, + "weekDownloads": 1246, "size": 4298, "latestRelease": "2.1.0", "latestReleaseDate": "2025-08-11T05:29:01.464Z" @@ -134241,13 +133551,13 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.095, - "topicSearchString": "expo react-native android keyboard keyboardavoidingview sdk35 android15 expo-config-plugin" + "popularity": -0.119, + "topicSearchString": "expo android keyboard keyboardavoidingview sdk35 android15 expo-config-plugin" }, { "githubUrl": "https://github.com/drizzle-team/drizzle-orm/tree/main/drizzle-zod", "examples": [ - "https://github.com/Minori-ty/directory-examples/tree/master/drizzle-example" + "https://github.com/Minori-ty/directory-examples" ], "ios": true, "android": true, @@ -134268,10 +133578,10 @@ "updatedAt": "2025-08-06T07:45:20Z", "createdAt": "2021-06-24T09:03:05Z", "pushedAt": "2025-08-06T07:45:20Z", - "forks": 1009, - "issues": 1462, + "forks": 1046, + "issues": 1490, "subscribers": 66, - "stars": 30281, + "stars": 30857, "dependencies": 0 }, "name": "drizzle-zod", @@ -134305,32 +133615,32 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "drizzle-zod", "npm": { - "downloads": 2963458, - "weekDownloads": 533739, + "downloads": 3050053, + "weekDownloads": 616727, "size": 92553, "latestRelease": "0.8.3", "latestReleaseDate": "2025-08-06T08:03:58.355Z" }, - "score": 81, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Lots of open issues", - "Not supporting New Architecture" + "Lots of open issues" ], - "popularity": 0.153, + "popularity": 0.172, "topicSearchString": "zod validate validation schema drizzle orm pg mysql postgresql postgres sqlite database sql typescript ts" }, { "githubUrl": "https://github.com/drizzle-team/drizzle-studio-expo", "npmPkg": "expo-drizzle-studio-plugin", "examples": [ - "https://github.com/Minori-ty/directory-examples/tree/master/drizzle-example" + "https://github.com/Minori-ty/directory-examples" ], "ios": true, "android": true, @@ -134348,14 +133658,14 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-07T07:40:42Z", + "updatedAt": "2025-10-11T17:19:44Z", "createdAt": "2024-05-24T12:09:05Z", - "pushedAt": "2025-07-07T07:40:42Z", - "forks": 14, - "issues": 8, + "pushedAt": "2025-10-11T17:19:44Z", + "forks": 15, + "issues": 6, "subscribers": 3, - "stars": 150, - "dependencies": 1 + "stars": 159, + "dependencies": 0 }, "name": "expo-drizzle-studio-plugin", "fullName": "drizzle-team/drizzle-studio-expo", @@ -134367,7 +133677,6 @@ "drizzle", "drizzle-orm", "expo-sqlite", - "react-native", "sqlite" ], "license": { @@ -134380,26 +133689,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 45617, - "weekDownloads": 9064, - "size": 3163945, - "latestRelease": "0.2.0", - "latestReleaseDate": "2025-06-27T10:29:38.428Z" + "downloads": 36903, + "weekDownloads": 7596, + "size": 3171727, + "latestRelease": "0.2.1", + "latestReleaseDate": "2025-10-13T12:17:09.348Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.169, - "topicSearchString": "expo devtools drizzle drizzle-orm expo-sqlite react-native sqlite" + "popularity": 0.175, + "topicSearchString": "expo devtools drizzle drizzle-orm expo-sqlite sqlite" }, { "githubUrl": "https://github.com/shijistar/enum-plus", "examples": [ - "https://github.com/Minori-ty/directory-examples/tree/master/drizzle-example" + "https://github.com/Minori-ty/directory-examples" ], "ios": true, "android": true, @@ -134417,13 +133728,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-06T10:26:06Z", + "updatedAt": "2025-10-21T14:19:00Z", "createdAt": "2022-10-05T14:46:35Z", - "pushedAt": "2025-09-06T10:26:06Z", + "pushedAt": "2025-10-21T14:19:00Z", "forks": 8, - "issues": 6, - "subscribers": 2, - "stars": 111, + "issues": 3, + "subscribers": 1, + "stars": 113, "dependencies": 0 }, "name": "enum-plus", @@ -134434,7 +133745,6 @@ "topics": [ "enum", "enumeration", - "tool", "javascript", "typescript", "front-end", @@ -134442,23 +133752,16 @@ "node.js", "browser", "mini-program", - "react-native", - "assembly-script", "ui-binding", "ssr", "localization", "globalization", "plugin-system", - "react", "vue", "angular", - "ant-design", - "arco-design", - "material-ui", - "vuetify", - "ng-zorro", "internationalization", - "frontend-web" + "reactjs", + "vuejs" ], "license": { "key": "mit", @@ -134470,23 +133773,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "enum-plus", "npm": { - "downloads": 20020, - "weekDownloads": 4008, - "size": 478057, - "latestRelease": "2.4.3", - "latestReleaseDate": "2025-09-04T10:31:14.613Z" + "downloads": 19419, + "weekDownloads": 5107, + "size": 1119777, + "latestRelease": "3.1.0", + "latestReleaseDate": "2025-10-20T15:32:26.774Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.17, - "topicSearchString": "enum enumeration tool javascript typescript front-end back-end node.js browser mini-program react-native assembly-script ui-binding ssr localization globalization plugin-system react vue angular ant-design arco-design material-ui vuetify ng-zorro internationalization frontend-web" + "popularity": 0.224, + "topicSearchString": "enum enumeration javascript typescript front-end back-end node.js browser mini-program ui-binding ssr localization globalization plugin-system vue angular internationalization reactjs vuejs" }, { "githubUrl": "https://github.com/bvaughn/react-error-boundary", @@ -134509,10 +133812,10 @@ "updatedAt": "2025-09-11T20:01:41Z", "createdAt": "2017-07-18T06:16:45Z", "pushedAt": "2025-09-11T20:01:41Z", - "forks": 217, + "forks": 220, "issues": 1, - "subscribers": 28, - "stars": 7674, + "subscribers": 27, + "stars": 7725, "dependencies": 1 }, "name": "react-error-boundary", @@ -134530,25 +133833,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-error-boundary", "npm": { - "downloads": 30881930, - "weekDownloads": 5179656, + "downloads": 31295918, + "weekDownloads": 7073516, "size": 21910, "latestRelease": "6.0.0", "latestReleaseDate": "2025-05-03T20:26:02.358Z" }, - "score": 97, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.143, + "popularity": 0.192, "topicSearchString": "" }, { @@ -134583,7 +133885,6 @@ "isPrivate": false, "description": "React Native Scaler Package", "topics": [ - "react-native", "responsive", "scaling", "expo", @@ -134591,7 +133892,7 @@ "font-scale", "width-scale", "height-scale", - "@shayrn/scaler", + "@shayrn/-scaler", "scaler" ], "license": { @@ -134604,21 +133905,20 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 52, - "weekDownloads": 4, + "downloads": 62, + "weekDownloads": 2, "size": 46268, "latestRelease": "1.0.21", "latestReleaseDate": "2025-07-09T13:22:05.363Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.933, - "topicSearchString": "react-native responsive scaling expo typescript font-scale width-scale height-scale @shayrn/scaler scaler" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.971, + "topicSearchString": "responsive scaling expo typescript font-scale width-scale height-scale @shayrn/-scaler scaler" }, { "githubUrl": "https://github.com/mCodex/react-native-inappbrowser-nitro", @@ -134642,13 +133942,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-18T14:09:57Z", + "updatedAt": "2025-10-21T12:43:43Z", "createdAt": "2025-07-11T18:38:45Z", - "pushedAt": "2025-07-18T14:09:57Z", + "pushedAt": "2025-10-21T12:43:43Z", "forks": 0, "issues": 0, "subscribers": 0, - "stars": 11, + "stars": 14, "dependencies": 0 }, "name": "react-native-inappbrowser-nitro", @@ -134657,10 +133957,10 @@ "registry": "https://registry.npmjs.org/", "description": "🚀 Lightning-fast in-app browser for React Native powered by Nitro Modules. Direct JSI bindings for native performance with Safari View Controller (iOS) & Chrome Custom Tabs (Android). Zero bridge overhead, TypeScript-first, with React hooks support.", "topics": [ - "react-native", - "ios", + "inappbrowser-nitro", "android", "custom-tabs", + "ios", "nitro-modules", "nitrogen" ], @@ -134674,22 +133974,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-inappbrowser-nitro", "npm": { - "downloads": 114, - "weekDownloads": 15, - "size": 268441, - "latestRelease": "1.3.2", - "latestReleaseDate": "2025-07-18T14:09:56.972Z" + "downloads": 380, + "weekDownloads": 111, + "size": 405544, + "latestRelease": "2.0.0", + "latestReleaseDate": "2025-10-13T20:14:10.033Z" }, - "score": 43, + "score": 51, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.885, - "topicSearchString": "react-native ios android custom-tabs nitro-modules nitrogen" + "popularity": -0.751, + "topicSearchString": "inappbrowser-nitro android custom-tabs ios nitro-modules nitrogen" }, { "githubUrl": "https://github.com/dangervalentine/react-native-scroll-track", @@ -134718,7 +134020,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 6, + "stars": 7, "dependencies": 0 }, "name": "react-native-scroll-track", @@ -134726,7 +134028,6 @@ "isPrivate": false, "description": "A customizable, interactive scroll indicator for React Native. Tap or drag to scroll, with animated thumb and auto-hide behavior.", "topics": [ - "react-native", "scrollbar", "scroll-indicator", "gesture", @@ -134745,23 +134046,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-scroll-track", "npm": { - "downloads": 143, - "weekDownloads": 26, + "downloads": 48, + "weekDownloads": 4, "size": 52958, "latestRelease": "1.2.0", "latestReleaseDate": "2025-08-20T15:54:26.449Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.842, - "topicSearchString": "react-native scrollbar scroll-indicator gesture flatlist draggable-scrollbar scroll-track animated-scroll" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.927, + "topicSearchString": "scrollbar scroll-indicator gesture flatlist draggable-scrollbar scroll-track animated-scroll" }, { "githubUrl": "https://github.com/itsandrehere/rn-selector", @@ -134789,7 +134088,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 9, + "stars": 12, "dependencies": 1 }, "name": "rn-selector", @@ -134798,7 +134097,6 @@ "registry": "https://registry.npmjs.org/", "description": "A lightweight and customizable selector component for React Native and Expo.", "topics": [ - "react-native", "ios", "android" ], @@ -134812,23 +134110,21 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-selector", "npm": { - "downloads": 193, - "weekDownloads": 12, + "downloads": 859, + "weekDownloads": 38, "size": 52487, "latestRelease": "0.1.3", "latestReleaseDate": "2025-08-19T23:43:49.739Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.947, - "topicSearchString": "react-native ios android" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.962, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/ihwf/expo-native-alipay", @@ -134838,6 +134134,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", @@ -134855,7 +134152,7 @@ "forks": 1, "issues": 0, "subscribers": 0, - "stars": 4, + "stars": 6, "dependencies": 0 }, "name": "expo-native-alipay", @@ -134863,9 +134160,8 @@ "isPrivate": false, "description": "基于 Expo/React Native 的支付宝 SDK 包,已更新到最新的支付宝 SDK 版本,支持Android/iOS。", "topics": [ - "react-native", "expo", - "expo-native-alipay", + "expo-alipay", "exponativealipay", "alipay", "alipay-sdk" @@ -134880,22 +134176,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-native-alipay", "npm": { - "downloads": 26, - "weekDownloads": 5, + "downloads": 96, + "weekDownloads": 13, "size": 7412352, "latestRelease": "0.1.1", "latestReleaseDate": "2025-07-21T09:51:53.409Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.833, - "topicSearchString": "react-native expo expo-native-alipay exponativealipay alipay alipay-sdk" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.882, + "topicSearchString": "expo expo-alipay exponativealipay alipay alipay-sdk" }, { "githubUrl": "https://github.com/maheshmuttintidev/react-native-android-phone-number-hint", @@ -134916,10 +134212,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, @@ -134931,7 +134227,6 @@ "registry": "https://registry.npmjs.org/", "description": "A simple React Native library that provides Android users with a native UI to pick their phone number using Google’s Smart Lock hint API.", "topics": [ - "react-native", "ios", "android" ], @@ -134945,19 +134240,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 129, - "weekDownloads": 26, - "size": 31309, - "latestRelease": "0.1.4", - "latestReleaseDate": "2025-07-17T16:05:26.481Z" + "downloads": 591, + "weekDownloads": 65, + "size": 31333, + "latestRelease": "0.1.5", + "latestReleaseDate": "2025-10-17T21:02:48.829Z" }, - "score": 46, - "matchingScoreModifiers": [], - "popularity": -0.827, - "topicSearchString": "react-native ios android" + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.906, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/linhvovan29546/react-native-full-screen-notification-incoming-call", @@ -134966,6 +134265,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", @@ -134980,10 +134280,10 @@ "updatedAt": "2025-05-31T08:42:11Z", "createdAt": "2022-05-03T01:02:26Z", "pushedAt": "2025-05-31T08:42:11Z", - "forks": 21, - "issues": 3, + "forks": 24, + "issues": 4, "subscribers": 1, - "stars": 59, + "stars": 60, "dependencies": 0 }, "name": "react-native-full-screen-notification-incoming-call", @@ -134992,7 +134292,6 @@ "registry": "https://registry.npmjs.org/", "description": "Android notification full screen incoming call for React Native", "topics": [ - "react-native", "ios", "android", "notification", @@ -135014,12 +134313,14 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npmPkg": "react-native-full-screen-notification-incoming-call", "npm": { - "downloads": 2292, - "weekDownloads": 301, + "downloads": 3199, + "weekDownloads": 836, "size": 208622, "latestRelease": "1.1.0", "latestReleaseDate": "2025-05-31T08:34:57.109Z" @@ -135028,14 +134329,13 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.112, - "topicSearchString": "react-native ios android notification fullscreen-intent time-sensitive-notification block-screen incoming-notifications foreground-service voip incomming" + "popularity": 0.222, + "topicSearchString": "ios android notification fullscreen-intent time-sensitive-notification block-screen incoming-notifications foreground-service voip incomming" }, { "githubUrl": "https://github.com/eds2002/react-native-screen-transitions/tree/main/packages/react-native-screen-transitions", "examples": [ - "https://github.com/eds2002/react-native-screen-transitions/tree/main/examples/expo-router-example", - "https://github.com/eds2002/react-native-screen-transitions/tree/main/examples/react-nav-example" + "https://github.com/eds2002/react-native-screen-transitions/tree/main/examples/expo-router-example" ], "android": true, "ios": true, @@ -135050,13 +134350,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T14:58:00Z", + "updatedAt": "2025-10-04T16:32:15Z", "createdAt": "2025-07-11T21:17:21Z", - "pushedAt": "2025-09-10T14:58:00Z", - "forks": 22, + "pushedAt": "2025-10-04T16:32:15Z", + "forks": 25, "issues": 5, "subscribers": 2, - "stars": 679, + "stars": 758, "dependencies": 0 }, "name": "react-native-screen-transitions", @@ -135064,10 +134364,9 @@ "isPrivate": false, "description": "Easy screen transitions for React Native and Expo", "topics": [ - "react-native", "transitions", "animation", - "react-navigation", + "navigation", "expo-router", "reanimated" ], @@ -135081,15 +134380,16 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-screen-transitions", "npm": { - "downloads": 5934, - "weekDownloads": 853, - "size": 1125263, - "latestRelease": "2.3.2", - "latestReleaseDate": "2025-09-10T14:58:33.107Z" + "downloads": 5051, + "weekDownloads": 1049, + "size": 1174070, + "latestRelease": "2.4.2", + "latestReleaseDate": "2025-10-04T16:32:40.939Z" }, "score": 57, "matchingScoreModifiers": [ @@ -135097,8 +134397,8 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.122, - "topicSearchString": "react-native transitions animation react-navigation expo-router reanimated" + "popularity": 0.177, + "topicSearchString": "transitions animation navigation expo-router reanimated" }, { "githubUrl": "https://github.com/Expensify/react-native-wallet", @@ -135119,13 +134419,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T10:01:34Z", + "updatedAt": "2025-10-06T07:17:52Z", "createdAt": "2023-11-30T14:47:38Z", - "pushedAt": "2025-09-10T10:01:34Z", - "forks": 3, - "issues": 6, + "pushedAt": "2025-10-06T07:17:52Z", + "forks": 5, + "issues": 5, "subscribers": 30, - "stars": 138, + "stars": 154, "dependencies": 0 }, "name": "@expensify/react-native-wallet", @@ -135134,7 +134434,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native module designed for seamless integration of Card Push Provisioning into Apple Wallet and Google Wallet, enabling easy and secure addition of payment cards directly from your application.", "topics": [ - "react-native", "ios", "android" ], @@ -135148,23 +134447,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 11458, - "weekDownloads": 1790, - "size": 2195502, - "latestRelease": "0.1.10", - "latestReleaseDate": "2025-09-10T10:01:45.837Z" + "downloads": 16396, + "weekDownloads": 2602, + "size": 2205293, + "latestRelease": "0.1.13", + "latestReleaseDate": "2025-10-06T07:18:03.584Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.133, - "topicSearchString": "react-native ios android" + "popularity": 0.135, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/callstackincubator/react-native-node-api/tree/main/packages/host", @@ -135188,26 +134488,24 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-13T10:51:45Z", + "updatedAt": "2025-10-21T11:20:05Z", "createdAt": "2025-02-01T13:40:42Z", - "pushedAt": "2025-09-13T10:51:45Z", - "forks": 3, - "issues": 97, + "pushedAt": "2025-10-21T11:20:05Z", + "forks": 4, + "issues": 105, "subscribers": 7, - "stars": 128, - "dependencies": 7 + "stars": 158, + "dependencies": 4 }, "name": "react-native-node-api", "fullName": "callstackincubator/react-native-node-api", "isPrivate": false, "description": "Node-API for React Native", "topics": [ - "react-native", "node-api", "napi", "node-api", "node-addon-api", - "native", "addon", "module", "c", @@ -135226,23 +134524,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 298, - "weekDownloads": 25, - "size": 1229657, - "latestRelease": "0.4.0", - "latestReleaseDate": "2025-09-13T10:54:38.907Z" + "downloads": 357, + "weekDownloads": 136, + "size": 1232349, + "latestRelease": "0.5.2", + "latestReleaseDate": "2025-10-17T18:04:16.161Z" }, - "score": 38, + "score": 41, "matchingScoreModifiers": [ "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.679, - "topicSearchString": "react-native node-api napi node-api node-addon-api native addon module c c++ bindings buildtools cmake" + "popularity": -0.426, + "topicSearchString": "node-api napi node-api node-addon-api addon module c c++ bindings buildtools cmake" }, { "githubUrl": "https://github.com/deveix/react-native-apple-llm", @@ -135261,10 +134559,10 @@ "updatedAt": "2025-08-07T02:31:11Z", "createdAt": "2025-06-16T17:02:56Z", "pushedAt": "2025-08-07T02:31:11Z", - "forks": 9, + "forks": 11, "issues": 2, "subscribers": 3, - "stars": 257, + "stars": 283, "dependencies": 0 }, "name": "react-native-apple-llm", @@ -135272,7 +134570,6 @@ "isPrivate": false, "description": "React Native Apple LLM plugin using Foundation Models", "topics": [ - "react-native", "apple", "apple-intelligence", "foundation-models", @@ -135314,23 +134611,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-apple-llm", "npm": { - "downloads": 87, - "weekDownloads": 10, + "downloads": 437, + "weekDownloads": 96, "size": 70426, "latestRelease": "1.0.12", "latestReleaseDate": "2025-08-07T02:32:13.162Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": -0.65, - "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" + "popularity": -0.562, + "topicSearchString": "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" }, { "githubUrl": "https://github.com/haileyok/expo-atproto-auth", @@ -135339,6 +134636,9 @@ ], "android": true, "ios": true, + "alternatives": [ + "@atproto/oauth-client-expo" + ], "github": { "urls": { "repo": "https://github.com/haileyok/expo-atproto-auth", @@ -135350,9 +134650,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-17T21:09:01Z", + "updatedAt": "2025-10-13T22:41:48Z", "createdAt": "2025-07-17T18:42:51Z", - "pushedAt": "2025-07-17T21:09:01Z", + "pushedAt": "2025-10-13T22:41:48Z", "forks": 0, "issues": 1, "subscribers": 0, @@ -135364,7 +134664,6 @@ "isPrivate": false, "description": "Atproto OAuth for Expo applications", "topics": [ - "react-native", "expo", "expo-atproto-auth", "expoatprotoauth" @@ -135378,23 +134677,27 @@ }, "hasTypes": true, "newArchitecture": false, - "isArchived": false, - "hasNativeCode": true + "isArchived": true, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, + "unmaintained": true, "npmPkg": "expo-atproto-auth", "npm": { - "downloads": 253, - "weekDownloads": 211, + "downloads": 102, + "weekDownloads": 23, "size": 696564, "latestRelease": "0.1.1", "latestReleaseDate": "2025-07-17T21:10:56.606Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.285, - "topicSearchString": "react-native expo expo-atproto-auth expoatprotoauth" + "popularity": -1.558, + "topicSearchString": "expo expo-atproto-auth expoatprotoauth" }, { "githubUrl": "https://github.com/nativewind/react-native-css", @@ -135414,13 +134717,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T05:15:38Z", + "updatedAt": "2025-10-11T08:13:47Z", "createdAt": "2024-11-19T01:03:05Z", - "pushedAt": "2025-09-11T05:15:38Z", - "forks": 9, - "issues": 0, - "subscribers": 2, - "stars": 67, + "pushedAt": "2025-10-11T08:13:47Z", + "forks": 12, + "issues": 2, + "subscribers": 4, + "stars": 129, "dependencies": 4 }, "name": "react-native-css", @@ -135429,7 +134732,6 @@ "registry": "https://registry.npmjs.org/", "description": "A CSS polyfill for React Native", "topics": [ - "react-native", "ios", "android", "css", @@ -135445,22 +134747,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-css", "npm": { - "downloads": 2697, - "weekDownloads": 310, - "latestRelease": "2.1.2", - "latestReleaseDate": "2017-09-10T21:10:45.455Z" + "downloads": 18101, + "weekDownloads": 1692, + "size": 1924145, + "latestRelease": "3.0.1", + "latestReleaseDate": "2025-10-11T08:13:45.212Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.098, - "topicSearchString": "react-native ios android css css-in-js" + "popularity": 0.079, + "topicSearchString": "ios android css css-in-js" }, { "githubUrl": "https://github.com/suwi-lanji/rn-maps-clustering", @@ -135483,10 +134787,10 @@ "updatedAt": "2025-07-09T07:12:50Z", "createdAt": "2025-07-08T17:30:15Z", "pushedAt": "2025-07-09T07:12:50Z", - "forks": 0, + "forks": 1, "issues": 1, "subscribers": 0, - "stars": 49, + "stars": 50, "dependencies": 1 }, "name": "rn-maps-clustering", @@ -135495,7 +134799,6 @@ "registry": "https://registry.npmjs.org/", "description": " A modern, performant map clustering library for React Native.", "topics": [ - "react-native", "maps", "cluster", "clustering", @@ -135513,12 +134816,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-maps-clustering", "npm": { - "downloads": 106, - "weekDownloads": 17, + "downloads": 225, + "weekDownloads": 77, "size": 95370, "latestRelease": "0.1.2", "latestReleaseDate": "2025-07-09T07:16:30.840Z" @@ -135527,8 +134831,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.608, - "topicSearchString": "react-native maps cluster clustering supercluster ios android" + "popularity": -0.454, + "topicSearchString": "maps cluster clustering supercluster ios android" }, { "githubUrl": "https://github.com/raahimkhan/react-native-responsive-utils", @@ -135555,7 +134859,7 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 7, + "stars": 8, "dependencies": 0 }, "name": "@raahimkhan23/react-native-responsive-utils", @@ -135564,7 +134868,6 @@ "registry": "https://registry.npmjs.org/", "description": "A lightweight utility package for making React Native apps responsive across different screen sizes.", "topics": [ - "react-native", "responsive-ui", "responsive-view", "responsive-screen", @@ -135590,11 +134893,12 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 76, - "weekDownloads": 12, + "downloads": 45, + "weekDownloads": 6, "size": 34848, "latestRelease": "0.3.0", "latestReleaseDate": "2025-07-04T20:42:08.838Z" @@ -135603,8 +134907,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.859, - "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" + "popularity": -0.88, + "topicSearchString": "responsive-ui responsive-view responsive-screen responsive scaling ui-design screen-size mobile-ui adaptive cross-platform android ios responsive-layout ui" }, { "githubUrl": "https://github.com/whitestranger7/react-native-orientation-turbo", @@ -135628,9 +134932,9 @@ "createdAt": "2025-07-05T15:12:13Z", "pushedAt": "2025-07-28T19:08:39Z", "forks": 0, - "issues": 1, + "issues": 2, "subscribers": 0, - "stars": 9, + "stars": 11, "dependencies": 0 }, "name": "react-native-orientation-turbo", @@ -135639,7 +134943,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native library for controlling device orientation. Built with Turbo Modules for optimal performance.", "topics": [ - "react-native", "orientation", "screen-orientation", "rotation", @@ -135660,22 +134963,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-orientation-turbo", "npm": { - "downloads": 3767, - "weekDownloads": 440, + "downloads": 2433, + "weekDownloads": 668, "size": 78868, "latestRelease": "2.2.0", "latestReleaseDate": "2025-07-28T18:50:57.827Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.151, - "topicSearchString": "react-native orientation screen-orientation rotation portrait landscape turbo-module new-architecture ios android" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.016, + "topicSearchString": "orientation screen-orientation rotation portrait landscape turbo-module new-architecture ios android" }, { "githubUrl": "https://github.com/blaiti/react-native-mixins", @@ -135702,7 +135005,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 4, + "stars": 5, "dependencies": 0 }, "name": "react-native-mixins", @@ -135711,7 +135014,6 @@ "registry": "https://registry.npmjs.org/", "description": "A utility-first style mixin helper for clean and responsive UI design.", "topics": [ - "react-native", "ios", "android", "typescript" @@ -135726,12 +135028,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-mixins", "npm": { - "downloads": 21, - "weekDownloads": 0, + "downloads": 11, + "weekDownloads": 2, "size": 14323, "latestRelease": "0.1.0", "latestReleaseDate": "2025-07-06T20:06:07.391Z" @@ -135740,8 +135043,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -1, - "topicSearchString": "react-native ios android typescript" + "popularity": -0.8, + "topicSearchString": "ios android typescript" }, { "githubUrl": "https://github.com/katungi/expo-azure-blob-storage", @@ -135765,7 +135068,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 8, + "stars": 9, "dependencies": 3 }, "name": "expo-azure-blob-storage", @@ -135774,7 +135077,6 @@ "description": "An NPM package that makes using azure-blob-service in react native easier (and type safe)", "topics": [ "expo", - "react-native", "azure", "blob-storage", "file-upload", @@ -135792,12 +135094,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "expo-azure-blob-storage", "npm": { - "downloads": 6, - "weekDownloads": 2, + "downloads": 3, + "weekDownloads": 0, "size": 88275, "latestRelease": "0.0.1", "latestReleaseDate": "2025-07-03T10:03:01.534Z" @@ -135806,8 +135109,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": -0.6, - "topicSearchString": "expo react-native azure blob-storage file-upload image-upload azure-storage expo-azure" + "popularity": -1, + "topicSearchString": "expo azure blob-storage file-upload image-upload azure-storage expo-azure" }, { "npmPkg": "@instantdb/react-native", @@ -135831,13 +135134,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-12T16:44:10Z", + "updatedAt": "2025-10-15T21:02:12Z", "createdAt": "2024-08-19T21:53:42Z", - "pushedAt": "2025-09-12T16:44:10Z", - "forks": 289, - "issues": 2, - "subscribers": 34, - "stars": 9243, + "pushedAt": "2025-10-15T21:02:12Z", + "forks": 299, + "issues": 3, + "subscribers": 35, + "stars": 9356, "dependencies": 3 }, "name": "@instantdb/react-native", @@ -135848,24 +135151,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 30661, - "weekDownloads": 6353, - "size": 51845, - "latestRelease": "0.21.15", - "latestReleaseDate": "2025-09-13T00:07:21.408Z" + "downloads": 35755, + "weekDownloads": 5505, + "size": 111767, + "latestRelease": "0.22.23", + "latestReleaseDate": "2025-10-20T21:48:17.236Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.176, + "popularity": 0.131, "topicSearchString": "" }, { @@ -135886,9 +135189,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-20T17:34:24Z", + "updatedAt": "2025-09-23T00:14:40Z", "createdAt": "2025-07-19T18:08:09Z", - "pushedAt": "2025-07-20T17:34:24Z", + "pushedAt": "2025-09-23T00:14:40Z", "forks": 0, "issues": 0, "subscribers": 0, @@ -135900,7 +135203,6 @@ "isPrivate": false, "description": "A React-Native component for generating barcodes.", "topics": [ - "react-native", "barcode", "generator" ], @@ -135914,21 +135216,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 53, - "weekDownloads": 8, + "downloads": 416, + "weekDownloads": 148, "size": 10705, - "latestRelease": "1.0.1", - "latestReleaseDate": "2025-07-20T17:34:36.013Z" + "latestRelease": "1.0.2", + "latestReleaseDate": "2025-09-23T00:13:09.248Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.867, - "topicSearchString": "react-native barcode generator" + "popularity": -0.695, + "topicSearchString": "barcode generator" }, { "githubUrl": "https://github.com/hectorm/otpauth", @@ -135947,13 +135251,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-12T16:41:31Z", + "updatedAt": "2025-10-11T09:59:56Z", "createdAt": "2017-01-03T15:24:03Z", - "pushedAt": "2025-08-12T16:41:31Z", + "pushedAt": "2025-10-11T09:59:56Z", "forks": 67, "issues": 0, "subscribers": 10, - "stars": 1239, + "stars": 1253, "dependencies": 1 }, "name": "otpauth", @@ -135988,23 +135292,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "otpauth", "npm": { - "downloads": 2831885, - "weekDownloads": 494312, + "downloads": 2844797, + "weekDownloads": 615830, "size": 750590, "latestRelease": "9.4.1", "latestReleaseDate": "2025-08-12T16:46:16.606Z" }, - "score": 68, + "score": 73, "matchingScoreModifiers": [ "Popular", "Known", + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.148, + "popularity": 0.184, "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" }, { @@ -136028,10 +135334,10 @@ "updatedAt": "2020-06-09T08:59:48Z", "createdAt": "2017-06-15T22:23:23Z", "pushedAt": "2020-06-09T08:59:48Z", - "forks": 101, + "forks": 103, "issues": 21, - "subscribers": 14, - "stars": 2016, + "subscribers": 15, + "stars": 2026, "dependencies": 0 }, "name": "fast-deep-equal", @@ -136054,26 +135360,26 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "fast-deep-equal", "npm": { - "downloads": 313173053, - "weekDownloads": 52720205, + "downloads": 315917764, + "weekDownloads": 67887923, "size": 12966, "latestRelease": "3.1.3", "latestReleaseDate": "2020-06-08T07:27:28.474Z" }, - "score": 81, + "score": 84, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.607, + "popularity": -0.567, "topicSearchString": "fast equal deep-equal deep-equals" }, { @@ -136097,9 +135403,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-13T10:58:37Z", + "updatedAt": "2025-09-26T14:24:51Z", "createdAt": "2025-07-19T21:48:00Z", - "pushedAt": "2025-09-13T10:58:37Z", + "pushedAt": "2025-09-26T14:24:51Z", "forks": 0, "issues": 0, "subscribers": 0, @@ -136112,8 +135418,7 @@ "registry": "https://registry.npmjs.org", "description": "Ping controller for React Native app", "topics": [ - "react-native", - "ping-react-native", + "ping", "ping", "ping-ios", "ping-android", @@ -136129,21 +135434,23 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 139, - "weekDownloads": 12, - "size": 142744, - "latestRelease": "1.3.1", - "latestReleaseDate": "2025-09-13T11:04:00.362Z" + "downloads": 210, + "weekDownloads": 73, + "size": 142883, + "latestRelease": "1.3.2", + "latestReleaseDate": "2025-09-26T14:26:48.765Z" }, "score": 51, "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -0.925, - "topicSearchString": "react-native ping-react-native ping ping-ios ping-android ping-macos" + "popularity": -0.702, + "topicSearchString": "ping ping ping-ios ping-android ping-macos" }, { "githubUrl": "https://github.com/launchdarkly/react-client-sdk", @@ -136165,13 +135472,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-09T22:21:19Z", + "updatedAt": "2025-09-30T16:50:39Z", "createdAt": "2019-09-06T17:54:46Z", - "pushedAt": "2025-09-09T22:21:19Z", + "pushedAt": "2025-09-30T16:50:39Z", "forks": 71, "issues": 35, - "subscribers": 42, - "stars": 87, + "subscribers": 41, + "stars": 88, "dependencies": 3 }, "name": "launchdarkly-react-client-sdk", @@ -136182,12 +135489,11 @@ "launchdarkly", "launch", "darkly", - "react", "sdk", "bindings", "launchdarkly-sdk", "reactjs", - "react-js", + "js", "feature-flags", "feature-toggles", "typescript", @@ -136203,24 +135509,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 4033326, - "weekDownloads": 690730, - "size": 149924, - "latestRelease": "3.8.1", - "latestReleaseDate": "2025-05-30T19:59:32.895Z" + "downloads": 4046537, + "weekDownloads": 895641, + "size": 150096, + "latestRelease": "3.9.0", + "latestReleaseDate": "2025-09-30T16:51:51.217Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.146, - "topicSearchString": "launchdarkly launch darkly react sdk bindings launchdarkly-sdk reactjs react-js feature-flags feature-toggles typescript managed-by-terraform" + "popularity": 0.188, + "topicSearchString": "launchdarkly launch darkly sdk bindings launchdarkly-sdk reactjs js feature-flags feature-toggles typescript managed-by-terraform" }, { "githubUrl": "https://github.com/moment/luxon", @@ -136242,13 +135548,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-05T10:16:19Z", + "updatedAt": "2025-10-08T18:39:32Z", "createdAt": "2015-11-30T12:48:48Z", - "pushedAt": "2025-09-05T10:16:19Z", - "forks": 756, - "issues": 155, + "pushedAt": "2025-10-08T18:39:32Z", + "forks": 757, + "issues": 157, "subscribers": 104, - "stars": 16114, + "stars": 16183, "dependencies": 0 }, "name": "luxon", @@ -136274,12 +135580,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "luxon", "npm": { - "downloads": 69672611, - "weekDownloads": 11811264, + "downloads": 68821885, + "weekDownloads": 15313365, "size": 4592735, "latestRelease": "3.7.2", "latestReleaseDate": "2025-09-05T10:14:55.814Z" @@ -136293,7 +135600,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.144, + "popularity": 0.189, "topicSearchString": "date immutable intl timezones dates times datetime" }, { @@ -136328,12 +135635,12 @@ "isPrivate": false, "description": "A lightweight, customizable toast notification library for React Native.", "topics": [ - "react-native", "expo", "toast", "expo-toast" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -136342,23 +135649,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-feather-toast", "npm": { - "downloads": 30, - "weekDownloads": 1, + "downloads": 112, + "weekDownloads": 4, "size": 33529, "latestRelease": "1.0.14", "latestReleaseDate": "2025-02-02T05:48:54.808Z" }, - "score": 32, + "score": 35, "matchingScoreModifiers": [ - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.971, - "topicSearchString": "react-native expo toast expo-toast" + "popularity": -0.969, + "topicSearchString": "expo toast expo-toast" }, { "githubUrl": "https://github.com/martinezguillaume/react-native-scroll-sync", @@ -136394,7 +135701,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 4, + "stars": 5, "dependencies": 0 }, "name": "react-native-scroll-sync", @@ -136403,7 +135710,6 @@ "registry": "https://registry.npmjs.org/", "description": "⚡️ Super lightweight and fast scroll-syncing utility for React Native", "topics": [ - "react-native", "ios", "android" ], @@ -136417,22 +135723,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-scroll-sync", "npm": { - "downloads": 9, - "weekDownloads": 2, + "downloads": 16, + "weekDownloads": 0, "size": 34866, "latestRelease": "0.3.0", "latestReleaseDate": "2025-07-27T18:31:52.351Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.8, - "topicSearchString": "react-native ios android" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -1, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/lodash/lodash", @@ -136455,10 +135760,10 @@ "updatedAt": "2024-12-12T22:27:03Z", "createdAt": "2012-04-07T04:11:46Z", "pushedAt": "2024-12-12T22:27:03Z", - "forks": 7014, - "issues": 85, - "subscribers": 816, - "stars": 61006, + "forks": 7016, + "issues": 89, + "subscribers": 817, + "stars": 61289, "dependencies": 0 }, "name": "lodash", @@ -136481,26 +135786,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "lodash", "npm": { - "downloads": 328460357, - "weekDownloads": 56333593, + "downloads": 311445119, + "weekDownloads": 68265941, "size": 1412415, "latestRelease": "4.17.21", "latestReleaseDate": "2021-02-20T15:42:16.891Z" }, - "score": 70, + "score": 73, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Not updated recently", - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.146, + "popularity": 0.186, "topicSearchString": "lodash utilities javascript modules" }, { @@ -136527,7 +135832,7 @@ "forks": 193, "issues": 72, "subscribers": 20, - "stars": 4771, + "stars": 4790, "dependencies": 0 }, "name": "radash", @@ -136551,24 +135856,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "radash", "npm": { - "downloads": 1744317, - "weekDownloads": 297162, + "downloads": 2076786, + "weekDownloads": 434196, "size": 306084, "latestRelease": "12.1.1", "latestReleaseDate": "2025-06-18T04:22:49.665Z" }, - "score": 92, + "score": 95, "matchingScoreModifiers": [ "Very popular", "Popular", - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.145, + "popularity": 0.178, "topicSearchString": "functions javascript javascript-library typescript hacktoberfest" }, { @@ -136589,13 +135894,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-07T13:36:35Z", + "updatedAt": "2025-10-17T09:58:54Z", "createdAt": "2024-04-25T11:56:31Z", - "pushedAt": "2025-09-07T13:36:35Z", - "forks": 483, - "issues": 107, + "pushedAt": "2025-10-17T09:58:54Z", + "forks": 498, + "issues": 117, "subscribers": 33, - "stars": 10011, + "stars": 10289, "dependencies": 0 }, "name": "es-toolkit", @@ -136613,26 +135918,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "es-toolkit", "npm": { - "downloads": 17753228, - "weekDownloads": 2968047, - "size": 2492698, - "latestRelease": "1.39.10", - "latestReleaseDate": "2025-08-17T08:36:19.977Z" + "downloads": 19942604, + "weekDownloads": 4121384, + "size": 2501699, + "latestRelease": "1.40.0", + "latestReleaseDate": "2025-10-08T11:46:27.997Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.142, + "popularity": 0.176, "topicSearchString": "" }, { @@ -136654,13 +135959,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-02T07:03:49Z", + "updatedAt": "2025-09-28T02:37:55Z", "createdAt": "2019-06-27T05:20:06Z", - "pushedAt": "2025-09-02T07:03:49Z", - "forks": 2682, - "issues": 169, + "pushedAt": "2025-09-28T02:37:55Z", + "forks": 2686, + "issues": 174, "subscribers": 91, - "stars": 14658, + "stars": 14721, "dependencies": 0 }, "name": "ahooks", @@ -136669,10 +135974,9 @@ "description": "A high-quality & reliable React Hooks library. https://alibaba.github.io/hooks/", "topics": [ "ahooks", - "react", "hooks-library", "umi-hooks", - "react-hooks" + "hooks" ], "license": { "key": "mit", @@ -136684,26 +135988,26 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1743263, - "weekDownloads": 271297, + "downloads": 1783363, + "weekDownloads": 406542, "size": 620757, "latestRelease": "3.9.5", "latestReleaseDate": "2025-08-31T13:56:25.816Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.132, - "topicSearchString": "ahooks react hooks-library umi-hooks react-hooks" + "popularity": 0.194, + "topicSearchString": "ahooks hooks-library umi-hooks hooks" }, { "githubUrl": "https://github.com/antosmamanktr/react-native-letter-flatlist", @@ -136731,7 +136035,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 3, + "stars": 4, "dependencies": 0 }, "name": "react-native-letter-flatlist", @@ -136739,7 +136043,6 @@ "isPrivate": false, "description": "A performant and customizable Alphabet Section List for React Native.", "topics": [ - "react-native", "flatlist", "grid", "layout", @@ -136757,22 +136060,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-letter-flatlist", "npm": { - "downloads": 15, - "weekDownloads": 1, + "downloads": 36, + "weekDownloads": 2, "size": 13994, "latestRelease": "1.0.1", "latestReleaseDate": "2025-07-30T08:18:42.361Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.933, - "topicSearchString": "react-native flatlist grid layout alphabetlist letterlist sectionlist" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.95, + "topicSearchString": "flatlist grid layout alphabetlist letterlist sectionlist" }, { "githubUrl": "https://github.com/antosmamanktr/react-native-stonewall-grid", @@ -136800,7 +136102,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 1, + "stars": 4, "dependencies": 0 }, "name": "react-native-stonewall-grid", @@ -136808,7 +136110,6 @@ "isPrivate": false, "description": "A performant and customizable masonry-style layout for React Native.", "topics": [ - "react-native", "masonry", "grid", "layout", @@ -136824,22 +136125,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-stonewall-grid", "npm": { - "downloads": 9, - "weekDownloads": 3, + "downloads": 4, + "weekDownloads": 0, "size": 16275, "latestRelease": "1.0.1", "latestReleaseDate": "2025-07-29T19:01:59.388Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.7, - "topicSearchString": "react-native masonry grid layout stonewall" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -1, + "topicSearchString": "masonry grid layout stonewall" }, { "githubUrl": "https://github.com/filiphsps/react-native-scroll-to-child", @@ -136858,13 +136158,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-28T09:44:07Z", + "updatedAt": "2025-10-21T04:57:19Z", "createdAt": "2025-06-22T22:45:31Z", - "pushedAt": "2025-08-28T09:44:07Z", + "pushedAt": "2025-10-21T04:57:19Z", "forks": 0, "issues": 1, "subscribers": 0, - "stars": 8, + "stars": 12, "dependencies": 0 }, "name": "react-native-scroll-to-child", @@ -136872,8 +136172,6 @@ "isPrivate": false, "description": "React Native package to programmatically scroll a child of a ScrollView into view", "topics": [ - "react-native", - "react", "scrollintoview", "form", "scroll", @@ -136896,23 +136194,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-scroll-to-child", "npm": { - "downloads": 162, - "weekDownloads": 41, + "downloads": 116, + "weekDownloads": 17, "size": 146512, "latestRelease": "0.2.0", "latestReleaseDate": "2025-07-31T16:44:45.024Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.784, - "topicSearchString": "react-native react scrollintoview form scroll into view expo visible component scrolling scrollview typescript" + "popularity": -0.874, + "topicSearchString": "scrollintoview form scroll into view expo visible component scrolling scrollview typescript" }, { "githubUrl": "https://github.com/antosmamanktr/react-native-dream-toast", @@ -136948,7 +136246,6 @@ "isPrivate": false, "description": "A customizable, theme-ready toast system for React Native with queueing, safe-area support, swipe to dismiss, and modal compatibility.", "topics": [ - "react-native", "toast", "toast-message", "toast-notification", @@ -136968,22 +136265,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-dream-toast", "npm": { "downloads": 18, - "weekDownloads": 4, + "weekDownloads": 2, "size": 33262, "latestRelease": "1.0.0", "latestReleaseDate": "2025-07-31T14:37:19.954Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.8, - "topicSearchString": "react-native toast toast-message toast-notification toast-host custom-toast toast-system beauty-toast dream-toast" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.9, + "topicSearchString": "toast toast-message toast-notification toast-host custom-toast toast-system beauty-toast dream-toast" }, { "githubUrl": "https://github.com/cloudcaptainai/paywall-sdk-react-native", @@ -137003,13 +136299,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-08T16:06:03Z", + "updatedAt": "2025-10-03T21:18:03Z", "createdAt": "2025-03-04T05:15:51Z", - "pushedAt": "2025-09-08T16:06:03Z", + "pushedAt": "2025-10-03T21:18:03Z", "forks": 0, "issues": 0, "subscribers": 1, - "stars": 0, + "stars": 1, "dependencies": 0 }, "name": "@tryheliumai/paywall-sdk-react-native", @@ -137018,7 +136314,6 @@ "registry": "https://registry.npmjs.org/", "description": "Helium paywall SDK for react native", "topics": [ - "react-native", "ios", "android" ], @@ -137032,22 +136327,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 318, - "weekDownloads": 12, - "size": 140647, - "latestRelease": "0.2.22", - "latestReleaseDate": "2025-09-08T16:34:10.992Z" + "downloads": 533, + "weekDownloads": 8, + "size": 158467, + "latestRelease": "3.0.7", + "latestReleaseDate": "2025-10-03T21:41:07.120Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.968, - "topicSearchString": "react-native ios android" + "popularity": -0.987, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/cloudcaptainai/helium-expo-sdk", @@ -137065,9 +136362,9 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-08T16:28:18Z", + "updatedAt": "2025-10-03T18:37:50Z", "createdAt": "2025-07-11T21:48:47Z", - "pushedAt": "2025-09-08T16:28:18Z", + "pushedAt": "2025-10-03T18:37:50Z", "forks": 0, "issues": 0, "subscribers": 0, @@ -137079,7 +136376,6 @@ "isPrivate": false, "description": "Helium paywalls expo sdk", "topics": [ - "react-native", "expo", "expo-helium", "helium-expo-sdk", @@ -137096,28 +136392,30 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 255, - "weekDownloads": 5, - "size": 90765, - "latestRelease": "0.8.5", - "latestReleaseDate": "2025-09-08T16:34:37.598Z" + "downloads": 304, + "weekDownloads": 68, + "size": 126658, + "latestRelease": "3.0.7", + "latestReleaseDate": "2025-10-03T21:16:56.654Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.983, - "topicSearchString": "react-native expo expo-helium helium-expo-sdk expo-helium-sdk heliumpaywallsdk" + "popularity": -0.808, + "topicSearchString": "expo expo-helium helium-expo-sdk expo-helium-sdk heliumpaywallsdk" }, { "githubUrl": "https://github.com/OneSignal/onesignal-expo-plugin", "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/OneSignal/onesignal-expo-plugin", @@ -137134,7 +136432,7 @@ "pushedAt": "2025-05-13T02:09:33Z", "forks": 56, "issues": 16, - "subscribers": 34, + "subscribers": 33, "stars": 176, "dependencies": 1 }, @@ -137148,7 +136446,6 @@ "push", "notifications", "eas", - "react-native", "ios", "android", "onesignal-notifications", @@ -137164,23 +136461,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "onesignal-expo-plugin", "npm": { - "downloads": 139046, - "weekDownloads": 23348, + "downloads": 156142, + "weekDownloads": 35009, "size": 101579, "latestRelease": "2.0.3", "latestReleaseDate": "2024-06-04T23:31:59.485Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.143, - "topicSearchString": "expo onesignal push notifications eas react-native ios android onesignal-notifications push-notifications" + "popularity": 0.191, + "topicSearchString": "expo onesignal push notifications eas ios android onesignal-notifications push-notifications" }, { "githubUrl": "https://github.com/antosmamanktr/react-native-input-suggestion", @@ -137212,7 +136510,6 @@ "isPrivate": false, "description": "A customizable React Native TextInput with inline suggestion, auto-complete, and swipe-to-fill or tap-to-fill functionality.", "topics": [ - "react-native", "textinput", "autocomplete", "suggestion-input", @@ -137234,22 +136531,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-input-suggestion", "npm": { - "downloads": 24, - "weekDownloads": 4, + "downloads": 15, + "weekDownloads": 3, "size": 13892, "latestRelease": "1.0.2", "latestReleaseDate": "2025-08-02T14:02:25.113Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.84, - "topicSearchString": "react-native textinput autocomplete suggestion-input input auto-fill input-suggestion swipe-to-fill textinput-suggestion component library" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.8, + "topicSearchString": "textinput autocomplete suggestion-input input auto-fill input-suggestion swipe-to-fill textinput-suggestion component library" }, { "githubUrl": "https://github.com/ChristopherGabba/react-native-nitro-screen-recorder", @@ -137259,6 +136555,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/ChristopherGabba/react-native-nitro-screen-recorder", @@ -137270,13 +136567,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-09T11:41:01Z", + "updatedAt": "2025-10-20T18:41:54Z", "createdAt": "2025-07-13T19:44:27Z", - "pushedAt": "2025-09-09T11:41:01Z", - "forks": 0, - "issues": 2, - "subscribers": 2, - "stars": 47, + "pushedAt": "2025-10-20T18:41:54Z", + "forks": 1, + "issues": 3, + "subscribers": 3, + "stars": 55, "dependencies": 0 }, "name": "react-native-nitro-screen-recorder", @@ -137285,7 +136582,6 @@ "registry": "https://registry.npmjs.org/", "description": "A library to capture screen recordings with react-native powered by NitroModules.", "topics": [ - "react-native", "ios", "android", "nitro-screen-recorder", @@ -137313,7 +136609,7 @@ "camera", "audio", "multimedia", - "native-module", + "module", "typescript" ], "license": { @@ -137326,23 +136622,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-screen-recorder", "npm": { - "downloads": 669, - "weekDownloads": 99, - "size": 589381, - "latestRelease": "0.3.9", - "latestReleaseDate": "2025-09-09T11:48:24.165Z" + "downloads": 1015, + "weekDownloads": 121, + "size": 664714, + "latestRelease": "0.4.8", + "latestReleaseDate": "2025-10-20T18:41:51.903Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.624, - "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" + "popularity": 0.102, + "topicSearchString": "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 module typescript" }, { "githubUrl": "https://github.com/braze-inc/braze-expo-plugin/tree/main/plugin", @@ -137353,6 +136650,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/braze-inc/braze-expo-plugin", @@ -137369,7 +136667,7 @@ "pushedAt": "2025-04-09T16:17:18Z", "forks": 9, "issues": 3, - "subscribers": 9, + "subscribers": 8, "stars": 13, "dependencies": 0 }, @@ -137378,7 +136676,6 @@ "isPrivate": false, "description": "Config plugin for @braze/react-native-sdk package", "topics": [ - "react", "expo", "config-plugins", "prebuild", @@ -137391,21 +136688,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 87993, - "weekDownloads": 13535, + "downloads": 135032, + "weekDownloads": 29319, "size": 65701, "latestRelease": "3.1.0", "latestReleaseDate": "2025-04-09T16:19:56.324Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.119, - "topicSearchString": "react expo config-plugins prebuild appboy-sdk braze appboy analytics segmentation" + "popularity": -0.065, + "topicSearchString": "expo config-plugins prebuild appboy-sdk braze appboy analytics segmentation" }, { "githubUrl": "https://github.com/Glazzes/react-native-zoom-toolkit", @@ -137426,10 +136725,10 @@ "updatedAt": "2025-08-14T00:03:29Z", "createdAt": "2024-02-08T20:28:00Z", "pushedAt": "2025-08-14T00:03:29Z", - "forks": 24, - "issues": 7, + "forks": 27, + "issues": 9, "subscribers": 3, - "stars": 325, + "stars": 334, "dependencies": 0 }, "name": "react-native-zoom-toolkit", @@ -137449,7 +136748,6 @@ "lightbox", "image-gallery", "image-cropper", - "react-native", "image-zoom", "zoomable-image", "crop" @@ -137464,23 +136762,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-zoom-toolkit", "npm": { - "downloads": 29183, - "weekDownloads": 4922, + "downloads": 44049, + "weekDownloads": 9307, "size": 594147, "latestRelease": "5.0.1", "latestReleaseDate": "2025-08-14T00:02:40.753Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.143, - "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" + "popularity": 0.18, + "topicSearchString": "zoom zoomable zoomable-view pan pinch pinch-to-zoom double-tap gallery lightbox image-gallery image-cropper image-zoom zoomable-image crop" }, { "githubUrl": "https://github.com/sivantha96/react-native-trays", @@ -137505,9 +136803,9 @@ "createdAt": "2025-04-29T09:40:39Z", "pushedAt": "2025-08-15T04:58:07Z", "forks": 2, - "issues": 4, + "issues": 5, "subscribers": 2, - "stars": 28, + "stars": 32, "dependencies": 0 }, "name": "react-native-trays", @@ -137516,7 +136814,6 @@ "registry": "https://registry.npmjs.org/", "description": "Family inspired Multi-Stack Tray System for React Native with a React Navigation-like API", "topics": [ - "react-native", "ios", "android", "tray", @@ -137531,8 +136828,7 @@ "expo", "mobile-ui", "bottomsheet", - "family", - "react" + "family" ], "license": { "key": "mit", @@ -137544,22 +136840,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-trays", "npm": { - "downloads": 272, - "weekDownloads": 107, + "downloads": 239, + "weekDownloads": 54, "size": 113348, "latestRelease": "0.11.0", "latestReleaseDate": "2025-08-15T04:58:15.472Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.416, - "topicSearchString": "react-native ios android tray bottom-sheet modal drawer popup component ui animation reanimated expo mobile-ui bottomsheet family react" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.557, + "topicSearchString": "ios android tray bottom-sheet modal drawer popup component ui animation reanimated expo mobile-ui bottomsheet family" }, { "githubUrl": "https://github.com/kingstinct/react-native-activity-kit/tree/main/packages/react-native-activity-kit", @@ -137570,6 +136865,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/kingstinct/react-native-activity-kit", @@ -137581,13 +136877,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T12:32:45Z", + "updatedAt": "2025-09-24T12:53:49Z", "createdAt": "2025-08-06T12:23:07Z", - "pushedAt": "2025-09-11T12:32:45Z", - "forks": 3, + "pushedAt": "2025-09-24T12:53:49Z", + "forks": 5, "issues": 3, "subscribers": 0, - "stars": 33, + "stars": 40, "dependencies": 0 }, "name": "@kingstinct/react-native-activity-kit", @@ -137596,7 +136892,6 @@ "registry": "https://registry.npmjs.org/", "description": "@kingstinct/react-native-activity-kit", "topics": [ - "react-native", "nitro" ], "license": { @@ -137609,22 +136904,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "nitro" }, "npm": { - "downloads": 248, - "weekDownloads": 22, - "size": 188882, - "latestRelease": "0.0.5", - "latestReleaseDate": "2025-09-11T12:37:44.753Z" + "downloads": 446, + "weekDownloads": 296, + "size": 340278, + "latestRelease": "0.0.9", + "latestReleaseDate": "2025-09-24T13:08:59.519Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.674, - "topicSearchString": "react-native nitro" + "popularity": -0.181, + "topicSearchString": "nitro" }, { "githubUrl": "https://github.com/unofficialmohit/rn-snappy-toast", @@ -137661,7 +136957,6 @@ "registry": "https://registry.npmjs.org/", "description": "rn-snappy-toast is a lightweight, fast, and fully customizable toast notification library for React Native. It’s designed to help you deliver instant, non-intrusive, and delightful feedback to your users — with minimal setup and maximum flexibility.", "topics": [ - "react-native", "ios", "android" ], @@ -137675,22 +136970,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-snappy-toast", "npm": { - "downloads": 52, - "weekDownloads": 10, + "downloads": 58, + "weekDownloads": 0, "size": 112140, "latestRelease": "0.1.8", "latestReleaseDate": "2025-08-11T04:44:55.660Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.833, - "topicSearchString": "react-native ios android" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -1, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/ony3000/react-native-simple-weekly-calendar", @@ -137722,7 +137016,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 2, + "stars": 3, "dependencies": 1 }, "name": "react-native-simple-weekly-calendar", @@ -137731,12 +137025,9 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native component specialized for weekly calendars.", "topics": [ - "react", - "native", "simple", "weekly", "calendar", - "react-native", "ios", "android" ], @@ -137750,22 +137041,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-simple-weekly-calendar", "npm": { - "downloads": 46, - "weekDownloads": 8, + "downloads": 12, + "weekDownloads": 2, "size": 45119, "latestRelease": "1.0.0", "latestReleaseDate": "2025-08-09T13:03:37.220Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.84, - "topicSearchString": "react native simple weekly calendar react-native ios android" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.8, + "topicSearchString": "simple weekly calendar ios android" }, { "githubUrl": "https://github.com/kolking/react-native-crossfade-image", @@ -137797,7 +137087,7 @@ "forks": 5, "issues": 0, "subscribers": 1, - "stars": 28, + "stars": 30, "dependencies": 0 }, "name": "react-native-crossfade-image", @@ -137806,7 +137096,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native component to update image source with crossfade transition effect.", "topics": [ - "react-native", "ios", "android", "crossfade", @@ -137826,22 +137115,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-crossfade-image", "npm": { - "downloads": 584, - "weekDownloads": 35, + "downloads": 562, + "weekDownloads": 91, "size": 12191, "latestRelease": "1.3.4", "latestReleaseDate": "2025-04-19T09:11:43.661Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.699, - "topicSearchString": "react-native ios android crossfade image transition animation background-image cross-fade" + "popularity": -0.612, + "topicSearchString": "ios android crossfade image transition animation background-image cross-fade" }, { "githubUrl": "https://github.com/kolking/react-native-avatar", @@ -137871,7 +137161,7 @@ "forks": 7, "issues": 0, "subscribers": 1, - "stars": 60, + "stars": 61, "dependencies": 1 }, "name": "@kolking/react-native-avatar", @@ -137880,7 +137170,6 @@ "registry": "https://registry.npmjs.org/", "description": "👩🏼 🧔🏻‍♂️ Display user avatars in React Native like a pro with support for Gravatar, user initials, unique colors, badges, statuses, and more.", "topics": [ - "react-native", "ios", "android", "userpic", @@ -137906,22 +137195,20 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2766, - "weekDownloads": 372, + "downloads": 3413, + "weekDownloads": 627, "size": 90907, "latestRelease": "2.1.6", "latestReleaseDate": "2025-09-10T20:50:40.499Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": 0.114, - "topicSearchString": "react-native ios android userpic avatar gravatar avatar-image user-picture user-image user-avatar initials badge image picture user" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.156, + "topicSearchString": "ios android userpic avatar gravatar avatar-image user-picture user-image user-avatar initials badge image picture user" }, { "githubUrl": "https://github.com/kolking/react-native-rating", @@ -137954,7 +137241,7 @@ "forks": 7, "issues": 1, "subscribers": 1, - "stars": 105, + "stars": 106, "dependencies": 0 }, "name": "@kolking/react-native-rating", @@ -137963,7 +137250,6 @@ "registry": "https://registry.npmjs.org/", "description": "⭐️ ❤️ 😀 An interactive rating component for React Native that can display ratings using stars, hearts, emojis, or custom symbols.", "topics": [ - "react-native", "ios", "android", "rating", @@ -137986,21 +137272,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 12889, - "weekDownloads": 1836, + "downloads": 12264, + "weekDownloads": 3293, "size": 418766, "latestRelease": "1.4.1", "latestReleaseDate": "2025-04-19T09:26:58.159Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": 0.121, - "topicSearchString": "react-native ios android rating rate evaluate feedback user-rating stars-rating hearts-rating emoji-rating rating-stars" + "popularity": 0.228, + "topicSearchString": "ios android rating rate evaluate feedback user-rating stars-rating hearts-rating emoji-rating rating-stars" }, { "githubUrl": "https://github.com/kolking/react-native-page-indicator", @@ -138032,7 +137319,7 @@ "forks": 5, "issues": 2, "subscribers": 1, - "stars": 82, + "stars": 84, "dependencies": 0 }, "name": "react-native-page-indicator", @@ -138041,7 +137328,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native component designed to display the current page of a swiper, slideshow, carousel, and more.", "topics": [ - "react-native", "ios", "android", "pager", @@ -138063,23 +137349,21 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-page-indicator", "npm": { - "downloads": 14790, - "weekDownloads": 2866, + "downloads": 12252, + "weekDownloads": 3126, "size": 21603, "latestRelease": "2.4.3", "latestReleaseDate": "2025-09-12T16:35:25.511Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": 0.165, - "topicSearchString": "react-native ios android pager paging pagination indicator swiper slideshow carousel indicators" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.217, + "topicSearchString": "ios android pager paging pagination indicator swiper slideshow carousel indicators" }, { "githubUrl": "https://github.com/kolking/react-native-parallax-swiper", @@ -138108,7 +137392,7 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 16, + "stars": 17, "dependencies": 0 }, "name": "@kolking/react-native-parallax-swiper", @@ -138117,7 +137401,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native component for building a horizontal scroll swiper with a parallax effect.", "topics": [ - "react-native", "ios", "android", "parallax", @@ -138143,21 +137426,22 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 26, - "weekDownloads": 1, + "downloads": 44, + "weekDownloads": 6, "size": 17975, "latestRelease": "1.0.2", "latestReleaseDate": "2025-04-19T09:36:45.941Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.967, - "topicSearchString": "react-native ios android parallax swiper carousel intro onboarding scrollable reanimated parallax-effect parallax-swiper parallax-scrolling parallax-carousel parallax-slider" + "popularity": -0.88, + "topicSearchString": "ios android parallax swiper carousel intro onboarding scrollable reanimated parallax-effect parallax-swiper parallax-scrolling parallax-carousel parallax-slider" }, { "githubUrl": "https://github.com/mhpdev-com/react-native-haptics", @@ -138177,15 +137461,15 @@ "hasIssues": true, "hasWiki": false, "hasSponsorships": false, - "hasDiscussions": false, + "hasDiscussions": true, "hasTopics": true, "updatedAt": "2025-08-14T19:14:49Z", "createdAt": "2025-08-03T09:17:31Z", "pushedAt": "2025-08-14T19:14:49Z", "forks": 0, - "issues": 0, + "issues": 1, "subscribers": 0, - "stars": 12, + "stars": 17, "dependencies": 0 }, "name": "@mhpdev/react-native-haptics", @@ -138194,7 +137478,6 @@ "registry": "https://registry.npmjs.org/", "description": "A high-performance React Native library for iOS haptics and Android vibration effects", "topics": [ - "react-native", "ios", "android", "haptics", @@ -138217,19 +137500,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 131, - "weekDownloads": 23, + "downloads": 541, + "weekDownloads": 75, "size": 46579, "latestRelease": "1.0.1", "latestReleaseDate": "2025-08-11T17:54:16.750Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.847, - "topicSearchString": "react-native ios android haptics vibration haptic-feedback vibration-effects haptic-feedback-ios haptic haptic-feedback-android haptics-ios haptics-android" + "popularity": -0.882, + "topicSearchString": "ios android haptics vibration haptic-feedback vibration-effects haptic-feedback-ios haptic haptic-feedback-android haptics-ios haptics-android" }, { "githubUrl": "https://github.com/bluesky-social/react-native-device-attest", @@ -138256,7 +137541,7 @@ "forks": 1, "issues": 1, "subscribers": 0, - "stars": 9, + "stars": 12, "dependencies": 0 }, "name": "react-native-device-attest", @@ -138264,7 +137549,6 @@ "isPrivate": false, "description": "A small library that allows for device attestation.", "topics": [ - "react-native", "expo", "device-attest", "reactnativedeviceattest" @@ -138279,22 +137563,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "react-native-device-attest", "npm": { - "downloads": 6676, - "weekDownloads": 1066, + "downloads": 6527, + "weekDownloads": 1491, "size": 29001, "latestRelease": "0.1.6", "latestReleaseDate": "2025-08-01T18:33:56.209Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.114, - "topicSearchString": "react-native expo device-attest reactnativedeviceattest" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.056, + "topicSearchString": "expo device-attest reactnativedeviceattest" }, { "githubUrl": "https://github.com/retyui/react-native-linear-gradient-web", @@ -138340,22 +137624,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-linear-gradient-web", "npm": { - "downloads": 17, - "weekDownloads": 4, + "downloads": 25, + "weekDownloads": 2, "size": 12286, "latestRelease": "1.1.0", "latestReleaseDate": "2025-07-16T08:13:11.536Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.8, + "popularity": -0.92, "topicSearchString": "" }, { @@ -138386,8 +137670,6 @@ "fullName": "retyui/react-native-fbtee", "isPrivate": false, "topics": [ - "react", - "react-native", "component", "android", "android-widget", @@ -138405,11 +137687,13 @@ "hasTypes": false, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-fbtee", "npm": { - "downloads": 21, + "downloads": 24, "weekDownloads": 3, "size": 17942, "latestRelease": "1.1.0", @@ -138417,8 +137701,8 @@ }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.85, - "topicSearchString": "react react-native component android android-widget widget home-screen home-screen-widget" + "popularity": -0.88, + "topicSearchString": "component android android-widget widget home-screen home-screen-widget" }, { "githubUrl": "https://github.com/retyui/react-native-bundle-discovery", @@ -138437,13 +137721,13 @@ "hasSponsorships": true, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-01T10:44:27Z", + "updatedAt": "2025-09-28T10:28:22Z", "createdAt": "2025-06-21T14:19:00Z", - "pushedAt": "2025-09-01T10:44:27Z", + "pushedAt": "2025-09-28T10:28:22Z", "forks": 0, - "issues": 3, + "issues": 4, "subscribers": 1, - "stars": 71, + "stars": 81, "dependencies": 7 }, "name": "react-native-bundle-discovery", @@ -138451,8 +137735,7 @@ "isPrivate": false, "description": "Simple tooling to explore bundle size 📦, spot heavy packages, and inspect module/code structure in React Native apps.", "topics": [ - "metro", - "react-native" + "metro" ], "license": { "name": "MIT License", @@ -138464,23 +137747,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-bundle-discovery", "npm": { - "downloads": 1337, - "weekDownloads": 451, - "size": 360097, - "latestRelease": "1.2.0", - "latestReleaseDate": "2025-07-12T11:28:27.172Z" + "downloads": 1282, + "weekDownloads": 246, + "size": 361499, + "latestRelease": "1.2.1", + "latestReleaseDate": "2025-09-28T10:28:43.544Z" }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.287, - "topicSearchString": "metro react-native" + "popularity": 0.163, + "topicSearchString": "metro" }, { "githubUrl": "https://github.com/TanStack/form/tree/main/packages/react-form", @@ -138500,13 +137784,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-13T11:00:06Z", + "updatedAt": "2025-10-11T07:53:07Z", "createdAt": "2016-11-29T04:53:07Z", - "pushedAt": "2025-09-13T11:00:06Z", - "forks": 506, - "issues": 107, - "subscribers": 45, - "stars": 5781, + "pushedAt": "2025-10-11T07:53:07Z", + "forks": 526, + "issues": 112, + "subscribers": 43, + "stars": 5913, "dependencies": 4 }, "name": "@tanstack/react-form", @@ -138524,14 +137808,15 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 1542952, - "weekDownloads": 250821, - "size": 372235, - "latestRelease": "1.20.0", - "latestReleaseDate": "2025-09-13T11:00:13.712Z" + "downloads": 1752806, + "weekDownloads": 382120, + "size": 372104, + "latestRelease": "1.23.7", + "latestReleaseDate": "2025-10-11T07:53:54.880Z" }, "score": 86, "matchingScoreModifiers": [ @@ -138542,7 +137827,7 @@ "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.138, + "popularity": 0.185, "topicSearchString": "" }, { @@ -138564,13 +137849,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-10T14:10:04Z", + "updatedAt": "2025-10-16T15:09:02Z", "createdAt": "2019-09-10T19:23:58Z", - "pushedAt": "2025-09-10T14:10:04Z", - "forks": 3429, - "issues": 64, + "pushedAt": "2025-10-16T15:09:02Z", + "forks": 3490, + "issues": 70, "subscribers": 214, - "stars": 46623, + "stars": 47069, "dependencies": 2 }, "name": "@tanstack/query-async-storage-persister", @@ -138588,24 +137873,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 779183, - "weekDownloads": 115269, - "size": 56529, - "latestRelease": "5.87.4", - "latestReleaseDate": "2025-09-10T14:10:15.001Z" + "downloads": 812526, + "weekDownloads": 187216, + "size": 56548, + "latestRelease": "5.90.7", + "latestReleaseDate": "2025-10-16T15:15:34.995Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.126, + "popularity": 0.196, "topicSearchString": "" }, { @@ -138627,13 +137912,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": false, - "updatedAt": "2025-09-10T14:10:04Z", + "updatedAt": "2025-10-16T15:09:02Z", "createdAt": "2019-09-10T19:23:58Z", - "pushedAt": "2025-09-10T14:10:04Z", - "forks": 3429, - "issues": 64, + "pushedAt": "2025-10-16T15:09:02Z", + "forks": 3490, + "issues": 70, "subscribers": 214, - "stars": 46623, + "stars": 47069, "dependencies": 1 }, "name": "@tanstack/react-query-persist-client", @@ -138651,24 +137936,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 2129760, - "weekDownloads": 352305, - "size": 33890, - "latestRelease": "5.87.4", - "latestReleaseDate": "2025-09-10T14:10:32.740Z" + "downloads": 2220706, + "weekDownloads": 510472, + "size": 33909, + "latestRelease": "5.90.7", + "latestReleaseDate": "2025-10-16T15:15:34.197Z" }, - "score": 97, + "score": 100, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.141, + "popularity": 0.195, "topicSearchString": "" }, { @@ -138691,10 +137976,10 @@ "updatedAt": "2022-05-31T06:01:47Z", "createdAt": "2015-08-17T15:49:51Z", "pushedAt": "2022-05-31T06:01:47Z", - "forks": 159, - "issues": 48, - "subscribers": 46, - "stars": 2969, + "forks": 158, + "issues": 47, + "subscribers": 45, + "stars": 2972, "dependencies": 4 }, "name": "gl-react-native", @@ -138702,12 +137987,10 @@ "isPrivate": false, "description": "React Native standalone implementation of gl-react, an universal React library to write and compose WebGL shaders", "topics": [ - "gl-react", + "gl", "gl", "opengl", - "react", - "react-native", - "react-component" + "component" ], "license": { "name": "MIT License", @@ -138719,13 +138002,14 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npmPkg": "gl-react-native", "npm": { - "downloads": 1214, - "weekDownloads": 196, + "downloads": 2839, + "weekDownloads": 410, "size": 5765, "latestRelease": "5.2.1", "latestReleaseDate": "2022-05-28T20:16:26.073Z" @@ -138737,8 +138021,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.612, - "topicSearchString": "gl-react gl opengl react react-native react-component" + "popularity": -0.627, + "topicSearchString": "gl gl opengl component" }, { "githubUrl": "https://github.com/fbeccaceci/react-native-fast-squircle", @@ -138756,13 +138040,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T19:07:06Z", + "updatedAt": "2025-09-18T09:24:05Z", "createdAt": "2025-08-03T16:09:47Z", - "pushedAt": "2025-09-11T19:07:06Z", - "forks": 2, - "issues": 1, + "pushedAt": "2025-09-18T09:24:05Z", + "forks": 5, + "issues": 3, "subscribers": 1, - "stars": 212, + "stars": 355, "dependencies": 0 }, "name": "react-native-fast-squircle", @@ -138771,7 +138055,6 @@ "registry": "https://registry.npmjs.org/", "description": "A performant component that renders Squircles in React Native", "topics": [ - "react-native", "ios", "android" ], @@ -138785,22 +138068,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-fast-squircle", "npm": { - "downloads": 864, - "weekDownloads": 51, - "size": 138588, - "latestRelease": "1.0.10", - "latestReleaseDate": "2025-09-11T19:07:05.608Z" + "downloads": 1462, + "weekDownloads": 313, + "size": 184944, + "latestRelease": "1.0.11", + "latestReleaseDate": "2025-09-18T09:24:05.381Z" }, - "score": 51, + "score": 54, "matchingScoreModifiers": [ - "Recently updated" + "Known" ], - "popularity": -0.7, - "topicSearchString": "react-native ios android" + "popularity": 0.182, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/attarchi/react-native-lottie-splash-screen", @@ -138822,10 +138107,10 @@ "updatedAt": "2025-08-16T04:22:00Z", "createdAt": "2024-07-10T10:15:10Z", "pushedAt": "2025-08-16T04:22:00Z", - "forks": 4, + "forks": 5, "issues": 0, "subscribers": 0, - "stars": 5, + "stars": 8, "dependencies": 2 }, "name": "@attarchi/react-native-lottie-splash-screen", @@ -138833,7 +138118,6 @@ "isPrivate": false, "description": "⚡ Lottie splash screen for your react native app!", "topics": [ - "react-native", "component", "splash-screen", "lottie-splash-screen", @@ -138857,21 +138141,20 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 2374, - "weekDownloads": 374, + "downloads": 2434, + "weekDownloads": 568, "size": 37556, "latestRelease": "3.0.0", "latestReleaseDate": "2025-08-14T00:56:54.865Z" }, - "score": 43, - "matchingScoreModifiers": [ - "Not supporting New Architecture" - ], - "popularity": -0.116, - "topicSearchString": "react-native component splash-screen lottie-splash-screen lottie animation splashscreen splash launch-screen launchscreen android ios swift" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.051, + "topicSearchString": "component splash-screen lottie-splash-screen lottie animation splashscreen splash launch-screen launchscreen android ios swift" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-mesh-gradient", @@ -138889,13 +138172,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T20:20:59Z", + "updatedAt": "2025-10-08T12:16:39Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-11T20:20:59Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-08T12:16:39Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-mesh-gradient", @@ -138903,7 +138186,6 @@ "isPrivate": false, "description": "A module that exposes MeshGradient view from SwiftUI to React Native", "topics": [ - "react-native", "expo", "mesh-gradient", "gradient", @@ -138919,27 +138201,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-mesh-gradient", "npm": { - "downloads": 16263, - "weekDownloads": 3314, + "downloads": 21621, + "weekDownloads": 3272, "size": 61658, "latestRelease": "0.4.7", "latestReleaseDate": "2025-09-11T20:24:05.826Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.173, - "topicSearchString": "react-native expo mesh-gradient gradient mesh" + "popularity": 0.129, + "topicSearchString": "expo mesh-gradient gradient mesh" }, { "githubUrl": "https://github.com/software-mansion/react-native-reanimated/tree/main/packages/react-native-worklets", @@ -138958,13 +138241,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-09T12:16:42Z", + "updatedAt": "2025-10-21T13:55:14Z", "createdAt": "2018-04-25T06:35:29Z", - "pushedAt": "2025-09-09T12:16:42Z", - "forks": 1363, - "issues": 196, + "pushedAt": "2025-10-21T13:55:14Z", + "forks": 1372, + "issues": 204, "subscribers": 80, - "stars": 10236, + "stars": 10348, "dependencies": 11 }, "name": "react-native-worklets", @@ -138972,9 +138255,6 @@ "isPrivate": false, "description": "The React Native multithreading library", "topics": [ - "react-native", - "react", - "native", "worklets" ], "license": { @@ -138987,15 +138267,17 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-worklets", "npm": { - "downloads": 552461, - "weekDownloads": 71261, - "size": 682357, - "latestRelease": "0.5.1", - "latestReleaseDate": "2025-09-09T15:30:14.240Z" + "downloads": 1973420, + "weekDownloads": 339986, + "size": 688037, + "latestRelease": "0.6.1", + "latestReleaseDate": "2025-10-09T14:03:07.533Z" }, "score": 89, "matchingScoreModifiers": [ @@ -139005,8 +138287,8 @@ "Lots of open issues", "Recently updated" ], - "popularity": 0.11, - "topicSearchString": "react-native react native worklets" + "popularity": 0.146, + "topicSearchString": "worklets" }, { "githubUrl": "https://github.com/realimposter/react-native-animated-glow", @@ -139032,10 +138314,10 @@ "updatedAt": "2025-09-05T03:18:17Z", "createdAt": "2025-07-26T02:49:02Z", "pushedAt": "2025-09-05T03:18:17Z", - "forks": 5, - "issues": 5, + "forks": 9, + "issues": 6, "subscribers": 0, - "stars": 246, + "stars": 316, "dependencies": 1 }, "name": "react-native-animated-glow", @@ -139043,7 +138325,6 @@ "isPrivate": false, "description": "A fully customizable, performant, animated glow effect wrapper for any React Native component.", "topics": [ - "react-native", "skia", "reanimated", "glow", @@ -139072,24 +138353,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-animated-glow", "npm": { - "downloads": 1697, - "weekDownloads": 282, + "downloads": 3318, + "weekDownloads": 456, "size": 251743, "latestRelease": "3.0.1", "latestReleaseDate": "2025-09-05T03:16:53.426Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.141, - "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" + "popularity": 0.117, + "topicSearchString": "skia reanimated glow animation animated border effect neon button-glow animated-glow glowing-button inner-glow apple-intelligence gradient hover press interactive" }, { "githubUrl": "https://github.com/TheWidlarzGroup/react-native-video-player", @@ -139112,10 +138392,10 @@ "updatedAt": "2025-06-07T05:59:41Z", "createdAt": "2016-09-07T18:16:46Z", "pushedAt": "2025-06-07T05:59:41Z", - "forks": 259, - "issues": 4, - "subscribers": 18, - "stars": 606, + "forks": 260, + "issues": 3, + "subscribers": 17, + "stars": 610, "dependencies": 0 }, "name": "react-native-video-player", @@ -139124,7 +138404,6 @@ "registry": "https://registry.npmjs.org/", "description": "A component for React Native with custom controls", "topics": [ - "react-native", "ios", "android", "video-player", @@ -139140,12 +138419,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-video-player", "npm": { - "downloads": 17747, - "weekDownloads": 3131, + "downloads": 16645, + "weekDownloads": 3904, "size": 215370, "latestRelease": "0.16.3", "latestReleaseDate": "2025-05-05T18:35:32.931Z" @@ -139156,8 +138436,8 @@ "Known", "Not supporting New Architecture" ], - "popularity": 0.15, - "topicSearchString": "react-native ios android video-player hacktoberfest" + "popularity": 0.199, + "topicSearchString": "ios android video-player hacktoberfest" }, { "githubUrl": "https://github.com/dream-sports-labs/d11-react-native-mqtt", @@ -139169,7 +138449,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": { @@ -139181,19 +138461,18 @@ "updatedAt": "2025-07-08T11:58:22Z", "createdAt": "2024-07-18T07:26:34Z", "pushedAt": "2025-07-08T11:58:22Z", - "forks": 5, - "issues": 3, + "forks": 6, + "issues": 4, "subscribers": 2, "stars": 37, "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.", "topics": [ - "react-native", "ios", "android" ], @@ -139207,11 +138486,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 12825, - "weekDownloads": 1608, + "downloads": 3625, + "weekDownloads": 1471, "size": 527188, "latestRelease": "0.0.5", "latestReleaseDate": "2025-07-08T22:33:05.310Z" @@ -139220,8 +138501,8 @@ "matchingScoreModifiers": [ "Not supporting New Architecture" ], - "popularity": 0.107, - "topicSearchString": "react-native ios android" + "popularity": 0.345, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/vvv-sss/react-native-drop-shadow-view", @@ -139247,7 +138528,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 3, + "stars": 4, "dependencies": 0 }, "name": "react-native-drop-shadow-view", @@ -139256,7 +138537,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native component that renders platform-optimized drop shadows with customizable size presets", "topics": [ - "react-native", "ios", "android" ], @@ -139270,11 +138550,12 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-drop-shadow-view", "npm": { - "downloads": 27, + "downloads": 22, "weekDownloads": 0, "size": 27337, "latestRelease": "0.3.1", @@ -139285,7 +138566,7 @@ "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native ios android" + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/rit3zh/expo-liquid-glass-view", @@ -139304,13 +138585,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-08-04T17:47:02Z", + "updatedAt": "2025-09-19T13:44:30Z", "createdAt": "2025-07-31T13:26:19Z", - "pushedAt": "2025-08-04T17:47:02Z", - "forks": 17, - "issues": 5, + "pushedAt": "2025-09-19T13:44:30Z", + "forks": 19, + "issues": 6, "subscribers": 2, - "stars": 257, + "stars": 282, "dependencies": 0 }, "name": "expo-liquid-glass-view", @@ -139318,7 +138599,6 @@ "isPrivate": false, "description": "🚀 Native liquid glass 🧊 views for Expo. Powered by SwiftUI + expo-modules-core", "topics": [ - "react-native", "expo", "expo-liquid-glass", "expoliquidglass" @@ -139333,23 +138613,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-liquid-glass-view", "npm": { - "downloads": 1231, - "weekDownloads": 398, - "size": 327023, - "latestRelease": "0.1.8", - "latestReleaseDate": "2025-08-04T17:52:40.026Z" + "downloads": 728, + "weekDownloads": 71, + "size": 334070, + "latestRelease": "0.1.9", + "latestReleaseDate": "2025-09-19T13:44:13.028Z" }, "score": 51, "matchingScoreModifiers": [ "Known", "Not supporting New Architecture" ], - "popularity": 0.275, - "topicSearchString": "react-native expo expo-liquid-glass expoliquidglass" + "popularity": -0.667, + "topicSearchString": "expo expo-liquid-glass expoliquidglass" }, { "githubUrl": "https://github.com/HeligPfleigh/react-native-thermal-receipt-printer", @@ -139372,10 +138654,10 @@ "updatedAt": "2024-10-07T16:44:56Z", "createdAt": "2019-05-29T03:34:56Z", "pushedAt": "2024-10-07T16:44:56Z", - "forks": 99, + "forks": 100, "issues": 79, "subscribers": 6, - "stars": 189, + "stars": 193, "dependencies": 3 }, "name": "react-native-thermal-receipt-printer", @@ -139383,7 +138665,6 @@ "isPrivate": false, "description": "A RN library for thermal printer", "topics": [ - "react-native", "thermal", "printer", "bluetooth", @@ -139392,6 +138673,7 @@ "android" ], "license": { + "id": "isc", "name": "ISC License", "url": "https://www.isc.org/licenses/", "key": "isc", @@ -139400,12 +138682,13 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-thermal-receipt-printer", "npm": { - "downloads": 1715, - "weekDownloads": 302, + "downloads": 1842, + "weekDownloads": 253, "size": 6242614, "latestRelease": "1.2.0-rc.2", "latestReleaseDate": "2023-12-06T15:18:12.977Z" @@ -139417,8 +138700,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.15, - "topicSearchString": "react-native thermal printer bluetooth net rn android" + "popularity": 0.117, + "topicSearchString": "thermal printer bluetooth net rn android" }, { "githubUrl": "https://github.com/riderodd/react-native-vosk", @@ -139427,6 +138710,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/riderodd/react-native-vosk", @@ -139441,10 +138725,10 @@ "updatedAt": "2025-09-12T15:33:14Z", "createdAt": "2022-07-04T09:18:52Z", "pushedAt": "2025-09-12T15:33:14Z", - "forks": 19, + "forks": 20, "issues": 7, "subscribers": 3, - "stars": 71, + "stars": 80, "dependencies": 0 }, "name": "react-native-vosk", @@ -139453,7 +138737,6 @@ "registry": "https://registry.npmjs.org/", "description": "Speech recognition module for react native using Vosk library", "topics": [ - "react-native", "ios", "android", "vosk", @@ -139472,23 +138755,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "react-native-vosk", "npm": { - "downloads": 6882, - "weekDownloads": 1146, + "downloads": 4127, + "weekDownloads": 739, "size": 186811367, "latestRelease": "2.1.6", "latestReleaseDate": "2025-09-12T15:35:23.028Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": 0.142, - "topicSearchString": "react-native ios android vosk speech-to-text speech-recognition asr offline" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.152, + "topicSearchString": "ios android vosk speech-to-text speech-recognition asr offline" }, { "githubUrl": "https://github.com/stripe/stripe-identity-react-native", @@ -139509,11 +138791,11 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-07T22:24:42Z", + "updatedAt": "2025-10-09T18:55:30Z", "createdAt": "2022-03-03T17:18:21Z", - "pushedAt": "2025-07-07T22:24:42Z", - "forks": 13, - "issues": 11, + "pushedAt": "2025-10-09T18:55:30Z", + "forks": 18, + "issues": 14, "subscribers": 9, "stars": 37, "dependencies": 0 @@ -139524,7 +138806,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native library for Stripe Identity", "topics": [ - "react-native", "ios", "android", "stripe", @@ -139540,21 +138821,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 7964, - "weekDownloads": 1574, + "downloads": 7321, + "weekDownloads": 1559, "size": 1130584, "latestRelease": "0.3.8", "latestReleaseDate": "2025-06-17T15:37:17.610Z" }, - "score": 43, + "score": 49, "matchingScoreModifiers": [ + "Recently updated", "Not supporting New Architecture" ], - "popularity": 0.168, - "topicSearchString": "react-native ios android stripe identity" + "popularity": 0.181, + "topicSearchString": "ios android stripe identity" }, { "githubUrl": "https://github.com/mrousavy/react-native-screen-corner-radius", @@ -139582,8 +138865,8 @@ "pushedAt": "2025-02-12T23:33:04Z", "forks": 8, "issues": 3, - "subscribers": 4, - "stars": 84, + "subscribers": 3, + "stars": 85, "dependencies": 0 }, "name": "react-native-screen-corner-radius", @@ -139592,14 +138875,11 @@ "registry": "https://registry.npmjs.org/", "description": "📱 A React Native library to get the Device's Screen's corner radius", "topics": [ - "react-native", "ios", "android", - "react", - "native", "screen", "library", - "native-module" + "module" ], "license": { "key": "mit", @@ -139611,12 +138891,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-screen-corner-radius", "npm": { - "downloads": 3797, - "weekDownloads": 734, + "downloads": 3559, + "weekDownloads": 870, "size": 28527, "latestRelease": "0.2.2", "latestReleaseDate": "2023-12-07T17:51:57.567Z" @@ -139626,8 +138907,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.164, - "topicSearchString": "react-native ios android react native screen library native-module" + "popularity": 0.208, + "topicSearchString": "ios android screen library module" }, { "githubUrl": "https://github.com/Stephenjoe10/react-native-battery-info", @@ -139660,7 +138941,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native TurboModule for static and dynamic battery information — get battery percentage, charging status, temperature, voltage, and more, with real-time event listeners and an easy-to-use hook API.", "topics": [ - "react-native", "android", "ios", "battery", @@ -139669,7 +138949,6 @@ "turbomodule", "dynamic-battery-info", "static-battery-info", - "react-native-turbomodule", "event-listener" ], "license": { @@ -139682,19 +138961,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 568, - "weekDownloads": 527, + "downloads": 25, + "weekDownloads": 2, "size": 30292, "latestRelease": "0.1.6", "latestReleaseDate": "2025-08-14T11:28:46.586Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.208, - "topicSearchString": "react-native android ios battery batteryinfo batterystatus turbomodule dynamic-battery-info static-battery-info react-native-turbomodule event-listener" + "popularity": -0.92, + "topicSearchString": "android ios battery batteryinfo batterystatus turbomodule dynamic-battery-info static-battery-info event-listener" }, { "githubUrl": "https://github.com/fordat/expo-roomplan", @@ -139704,6 +138985,7 @@ ], "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/fordat/expo-roomplan", @@ -139718,10 +139000,10 @@ "updatedAt": "2025-08-30T16:40:55Z", "createdAt": "2025-07-16T06:49:22Z", "pushedAt": "2025-08-30T16:40:55Z", - "forks": 3, + "forks": 4, "issues": 1, "subscribers": 0, - "stars": 10, + "stars": 12, "dependencies": 0 }, "name": "expo-roomplan", @@ -139729,7 +139011,6 @@ "isPrivate": false, "description": "A React Native link to Apple's RoomPlan SDK", "topics": [ - "react-native", "expo", "expo-roomplan", "exporoomplan", @@ -139752,23 +139033,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-roomplan", "npm": { - "downloads": 694, - "weekDownloads": 145, + "downloads": 286, + "weekDownloads": 58, "size": 102541, "latestRelease": "1.2.1", "latestReleaseDate": "2025-08-30T16:41:17.752Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.822, - "topicSearchString": "react-native expo expo-roomplan exporoomplan roomplan arkit room-scanning augmented-reality ar lidar ios mobile" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.827, + "topicSearchString": "expo expo-roomplan exporoomplan roomplan arkit room-scanning augmented-reality ar lidar ios mobile" }, { "githubUrl": "https://github.com/donni106/matomo-tracker-react-native", @@ -139789,7 +139069,7 @@ "createdAt": "2020-10-21T09:27:38Z", "pushedAt": "2025-04-02T07:53:45Z", "forks": 16, - "issues": 7, + "issues": 8, "subscribers": 2, "stars": 53, "dependencies": 0 @@ -139800,7 +139080,6 @@ "description": "Stand alone library for using Matomo tracking in React Native and Expo projects.", "topics": [ "matomo", - "react-native", "expo" ], "license": { @@ -139813,22 +139092,24 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "matomo-tracker-react-native", "npm": { - "downloads": 8100, - "weekDownloads": 986, + "downloads": 9706, + "weekDownloads": 2249, "size": 84881, "latestRelease": "0.3.3", "latestReleaseDate": "2025-04-02T07:52:36.348Z" }, - "score": 43, + "score": 32, "matchingScoreModifiers": [ + "Not updated recently", "Not supporting New Architecture" ], - "popularity": 0.104, - "topicSearchString": "matomo react-native expo" + "popularity": 0.197, + "topicSearchString": "matomo expo" }, { "githubUrl": "https://github.com/twilio/twilio-voice-react-native", @@ -139850,13 +139131,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-07-31T07:28:55Z", + "updatedAt": "2025-10-13T15:53:17Z", "createdAt": "2021-06-10T20:55:57Z", - "pushedAt": "2025-07-31T07:28:55Z", - "forks": 57, - "issues": 33, - "subscribers": 10, - "stars": 88, + "pushedAt": "2025-10-13T15:53:17Z", + "forks": 59, + "issues": 42, + "subscribers": 9, + "stars": 90, "dependencies": 2 }, "name": "@twilio/voice-react-native-sdk", @@ -139865,7 +139146,6 @@ "registry": "https://registry.npmjs.org/", "description": "Twilio Voice React Native SDK", "topics": [ - "react-native", "ios", "android" ], @@ -139879,22 +139159,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 12807, - "weekDownloads": 2019, - "size": 2709928, - "latestRelease": "1.6.1", - "latestReleaseDate": "2025-07-07T23:10:13.613Z" + "downloads": 16185, + "weekDownloads": 3980, + "size": 3165422, + "latestRelease": "1.7.0", + "latestReleaseDate": "2025-10-08T18:32:44.529Z" }, - "score": 51, + "score": 59, "matchingScoreModifiers": [ "Known", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.134, - "topicSearchString": "react-native ios android" + "popularity": 0.209, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/devanshuruhela/react-native-feedback-hub", @@ -139918,7 +139199,7 @@ "forks": 0, "issues": 3, "subscribers": 0, - "stars": 12, + "stars": 14, "dependencies": 7 }, "name": "react-native-feedback-hub", @@ -139926,7 +139207,6 @@ "isPrivate": false, "description": "React Native Feedback Hub", "topics": [ - "react-native", "feedback", "slack", "jira", @@ -139946,23 +139226,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-feedback-hub", "npm": { - "downloads": 414, - "weekDownloads": 10, + "downloads": 36, + "weekDownloads": 11, "size": 88174, "latestRelease": "1.1.4", "latestReleaseDate": "2025-08-27T23:07:51.573Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.979, - "topicSearchString": "react-native feedback slack jira teams bug-reporting user-feedback screenshot screen-recording" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.725, + "topicSearchString": "feedback slack jira teams bug-reporting user-feedback screenshot screen-recording" }, { "githubUrl": "https://github.com/DimaIvashchuk/react-native-emoji-picker", @@ -139971,8 +139249,9 @@ "https://github.com/DimaIvashchuk/react-native-emoji-picker/tree/master/example" ], "images": [ - "https://github.com/DimaIvashchuk/react-native-emoji-picker/blob/master/gif/dark.gif", - "https://github.com/DimaIvashchuk/react-native-emoji-picker/blob/master/gif/white.gif" + "https://raw.githubusercontent.com/DimaIvashchuk/react-native-emoji-picker/master/assets/dark.gif", + "https://raw.githubusercontent.com/DimaIvashchuk/react-native-emoji-picker/master/assets/white.gif", + "https://raw.githubusercontent.com/DimaIvashchuk/react-native-emoji-picker/master/assets/gifted-chat.gif" ], "ios": true, "android": true, @@ -140003,7 +139282,6 @@ "isPrivate": false, "description": "A customizable emoji picker for React Native", "topics": [ - "react-native", "expo", "emoji-picker", "emoji-chooser", @@ -140022,22 +139300,20 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 952, - "weekDownloads": 179, + "downloads": 56, + "weekDownloads": 8, "size": 70279, "latestRelease": "0.1.11", "latestReleaseDate": "2025-08-23T08:14:54.368Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.84, - "topicSearchString": "react-native expo emoji-picker emoji-chooser emoji-select emoji picker component" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.877, + "topicSearchString": "expo emoji-picker emoji-chooser emoji-select emoji picker component" }, { "githubUrl": "https://github.com/elevenlabs/packages/tree/main/packages/react-native", @@ -140059,14 +139335,14 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T09:27:22Z", + "updatedAt": "2025-10-20T17:12:48Z", "createdAt": "2024-11-21T13:42:10Z", - "pushedAt": "2025-09-11T09:27:22Z", - "forks": 37, - "issues": 18, - "subscribers": 16, - "stars": 52, - "dependencies": 0 + "pushedAt": "2025-10-20T17:12:48Z", + "forks": 50, + "issues": 21, + "subscribers": 17, + "stars": 66, + "dependencies": 1 }, "name": "@elevenlabs/react-native", "fullName": "elevenlabs/packages", @@ -140074,7 +139350,6 @@ "description": "ElevenLabs React Native SDK for Conversational AI", "topics": [ "elevenlabs", - "react-native", "conversational-ai", "webrtc", "voice", @@ -140090,22 +139365,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 3262, - "weekDownloads": 355, - "size": 261733, - "latestRelease": "0.3.1", - "latestReleaseDate": "2025-09-11T09:30:56.038Z" + "downloads": 6458, + "weekDownloads": 1032, + "size": 270254, + "latestRelease": "0.4.3", + "latestReleaseDate": "2025-10-13T15:10:17.174Z" }, - "score": 49, + "score": 59, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Known", + "Recently updated" ], - "popularity": 0.093, - "topicSearchString": "elevenlabs react-native conversational-ai webrtc voice ai" + "popularity": 0.136, + "topicSearchString": "elevenlabs conversational-ai webrtc voice ai" }, { "githubUrl": "https://github.com/Scandit/scandit-react-native-datacapture-core", @@ -140123,12 +139399,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-04T19:25:36Z", + "updatedAt": "2025-10-20T17:29:40Z", "createdAt": "2020-07-27T11:17:39Z", - "pushedAt": "2025-09-04T19:25:36Z", + "pushedAt": "2025-10-20T17:29:40Z", "forks": 4, - "issues": 2, - "subscribers": 22, + "issues": 3, + "subscribers": 21, "stars": 3, "dependencies": 1 }, @@ -140137,8 +139413,7 @@ "isPrivate": false, "description": "Scandit Data Capture SDK for React Native", "topics": [ - "scandit", - "react-native" + "scandit" ], "license": { "name": "Apache License 2.0", @@ -140150,23 +139425,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-core", "npm": { - "downloads": 25763, - "weekDownloads": 4621, - "size": 609494, - "latestRelease": "7.5.1", - "latestReleaseDate": "2025-09-04T19:25:39.016Z" + "downloads": 29417, + "weekDownloads": 6518, + "size": 615012, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:30:50.544Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.098, - "topicSearchString": "scandit react-native" + "popularity": -0.062, + "topicSearchString": "scandit" }, { "githubUrl": "https://github.com/Scandit/scandit-react-native-datacapture-barcode", @@ -140184,12 +139459,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-04T19:25:39Z", + "updatedAt": "2025-10-20T17:29:42Z", "createdAt": "2020-07-27T11:18:01Z", - "pushedAt": "2025-09-04T19:25:39Z", + "pushedAt": "2025-10-20T17:29:42Z", "forks": 7, - "issues": 6, - "subscribers": 20, + "issues": 0, + "subscribers": 19, "stars": 1, "dependencies": 3 }, @@ -140198,8 +139473,7 @@ "isPrivate": false, "description": "Scandit Data Capture SDK for React Native", "topics": [ - "scandit", - "react-native" + "scandit" ], "license": { "name": "Apache License 2.0", @@ -140211,23 +139485,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-barcode", "npm": { - "downloads": 24323, - "weekDownloads": 4398, - "size": 2065699, - "latestRelease": "7.5.1", - "latestReleaseDate": "2025-09-04T19:25:45.471Z" + "downloads": 27813, + "weekDownloads": 6113, + "size": 2122887, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:31:03.879Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.096, - "topicSearchString": "scandit react-native" + "popularity": -0.063, + "topicSearchString": "scandit" }, { "githubUrl": "https://github.com/Scandit/scandit-react-native-datacapture-id", @@ -140245,12 +139519,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-04T19:25:42Z", + "updatedAt": "2025-10-20T17:29:45Z", "createdAt": "2021-06-03T20:11:59Z", - "pushedAt": "2025-09-04T19:25:42Z", + "pushedAt": "2025-10-20T17:29:45Z", "forks": 0, "issues": 0, - "subscribers": 23, + "subscribers": 22, "stars": 0, "dependencies": 3 }, @@ -140259,8 +139533,7 @@ "isPrivate": false, "description": "Scandit Data Capture SDK for React Native", "topics": [ - "scandit", - "react-native" + "scandit" ], "license": { "name": "Apache License 2.0", @@ -140272,23 +139545,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-id", "npm": { - "downloads": 8762, - "weekDownloads": 1531, - "size": 428248, - "latestRelease": "7.5.1", - "latestReleaseDate": "2025-09-04T19:25:51.718Z" + "downloads": 12511, + "weekDownloads": 2398, + "size": 449570, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:31:14.125Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.101, - "topicSearchString": "scandit react-native" + "popularity": -0.087, + "topicSearchString": "scandit" }, { "githubUrl": "https://github.com/Scandit/scandit-react-native-datacapture-parser", @@ -140306,12 +139579,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-04T19:25:47Z", + "updatedAt": "2025-10-20T17:29:51Z", "createdAt": "2020-07-27T11:18:20Z", - "pushedAt": "2025-09-04T19:25:47Z", + "pushedAt": "2025-10-20T17:29:51Z", "forks": 1, "issues": 0, - "subscribers": 22, + "subscribers": 21, "stars": 0, "dependencies": 2 }, @@ -140320,8 +139593,7 @@ "isPrivate": false, "description": "Scandit Data Capture SDK for React Native", "topics": [ - "scandit", - "react-native" + "scandit" ], "license": { "name": "Apache License 2.0", @@ -140333,23 +139605,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-parser", "npm": { - "downloads": 6269, - "weekDownloads": 1090, - "size": 100010, - "latestRelease": "7.5.1", - "latestReleaseDate": "2025-09-04T19:26:03.251Z" + "downloads": 9777, + "weekDownloads": 1766, + "size": 103319, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:31:28.266Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.102, - "topicSearchString": "scandit react-native" + "popularity": -0.096, + "topicSearchString": "scandit" }, { "githubUrl": "https://github.com/Scandit/scandit-react-native-datacapture-label", @@ -140367,12 +139639,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-04T19:25:45Z", + "updatedAt": "2025-10-20T17:29:48Z", "createdAt": "2023-10-05T10:53:19Z", - "pushedAt": "2025-09-04T19:25:45Z", + "pushedAt": "2025-10-20T17:29:48Z", "forks": 0, "issues": 0, - "subscribers": 22, + "subscribers": 21, "stars": 0, "dependencies": 5 }, @@ -140381,8 +139653,7 @@ "isPrivate": false, "description": "Scandit Data Capture SDK for React Native", "topics": [ - "scandit", - "react-native" + "scandit" ], "license": { "name": "Apache License 2.0", @@ -140394,23 +139665,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-label", "npm": { - "downloads": 604, - "weekDownloads": 147, - "size": 469909, - "latestRelease": "7.5.1", - "latestReleaseDate": "2025-09-04T19:25:57.782Z" + "downloads": 839, + "weekDownloads": 79, + "size": 506680, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:31:22.163Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.793, - "topicSearchString": "scandit react-native" + "popularity": -0.92, + "topicSearchString": "scandit" }, { "githubUrl": "https://github.com/Scandit/scandit-react-native-datacapture-label-text", @@ -140428,12 +139699,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-04T19:25:54Z", + "updatedAt": "2025-10-20T17:29:59Z", "createdAt": "2023-10-05T10:54:45Z", - "pushedAt": "2025-09-04T19:25:54Z", + "pushedAt": "2025-10-20T17:29:59Z", "forks": 0, "issues": 0, - "subscribers": 22, + "subscribers": 21, "stars": 0, "dependencies": 0 }, @@ -140442,8 +139713,7 @@ "isPrivate": false, "description": "Scandit Data Capture SDK for React Native", "topics": [ - "scandit", - "react-native" + "scandit" ], "license": { "name": "Apache License 2.0", @@ -140455,23 +139725,23 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-label-text", "npm": { - "downloads": 533, - "weekDownloads": 111, - "size": 57013, - "latestRelease": "7.5.1", - "latestReleaseDate": "2025-09-04T19:26:19.269Z" + "downloads": 920, + "weekDownloads": 78, + "size": 59249, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:32:26.682Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.822, - "topicSearchString": "scandit react-native" + "popularity": -0.928, + "topicSearchString": "scandit" }, { "githubUrl": "https://github.com/Scandit/scandit-react-native-datacapture-price-label", @@ -140489,12 +139759,12 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-04T19:25:49Z", + "updatedAt": "2025-10-20T17:29:53Z", "createdAt": "2023-10-05T10:55:35Z", - "pushedAt": "2025-09-04T19:25:49Z", + "pushedAt": "2025-10-20T17:29:53Z", "forks": 0, "issues": 0, - "subscribers": 22, + "subscribers": 21, "stars": 0, "dependencies": 0 }, @@ -140503,8 +139773,7 @@ "isPrivate": false, "description": "Scandit Data Capture SDK for React Native", "topics": [ - "scandit", - "react-native" + "scandit" ], "license": { "name": "Apache License 2.0", @@ -140516,29 +139785,29 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "scandit-react-native-datacapture-price-label", "npm": { - "downloads": 554, - "weekDownloads": 105, - "size": 57270, - "latestRelease": "7.5.1", - "latestReleaseDate": "2025-09-04T19:26:09.515Z" + "downloads": 1690, + "weekDownloads": 135, + "size": 59506, + "latestRelease": "7.6.2", + "latestReleaseDate": "2025-10-20T17:31:34.440Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.838, - "topicSearchString": "scandit react-native" + "popularity": -0.182, + "topicSearchString": "scandit" }, { "githubUrl": "https://github.com/deepakkumardk/react-native-blossom-ui/tree/main/packages/components", "npmPkg": "@react-native-blossom-ui/components", "examples": [ - "https://github.com/deepakkumardk/react-native-blossom-ui/tree/main/examples", + "https://github.com/deepakkumardk/react-native-blossom-ui/tree/main/apps/native", "https://github.com/deepakkumardk/examples.react-native-blossom-ui" ], "ios": true, @@ -140557,13 +139826,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T17:15:10Z", + "updatedAt": "2025-10-06T17:03:33Z", "createdAt": "2024-10-31T15:52:29Z", - "pushedAt": "2025-09-11T17:15:10Z", + "pushedAt": "2025-10-06T17:03:33Z", "forks": 1, - "issues": 1, + "issues": 0, "subscribers": 1, - "stars": 26, + "stars": 29, "dependencies": 2 }, "name": "@react-native-blossom-ui/components", @@ -140571,7 +139840,6 @@ "isPrivate": false, "description": "Awesome Blossom UI", "topics": [ - "react-native", "ui", "components" ], @@ -140585,28 +139853,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 391, - "weekDownloads": 18, - "size": 472483, - "latestRelease": "0.14.0", - "latestReleaseDate": "2025-09-11T17:15:19.791Z" + "downloads": 324, + "weekDownloads": 5, + "size": 473970, + "latestRelease": "0.15.0", + "latestReleaseDate": "2025-10-06T17:03:43.419Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.711, - "topicSearchString": "react-native ui components" + "popularity": -0.737, + "topicSearchString": "ui components" }, { "githubUrl": "https://github.com/deepakkumardk/react-native-blossom-ui/tree/main/packages/dates", "npmPkg": "@react-native-blossom-ui/dates", "examples": [ - "https://github.com/deepakkumardk/react-native-blossom-ui/tree/main/examples", + "https://github.com/deepakkumardk/react-native-blossom-ui/tree/main/apps/native", "https://github.com/deepakkumardk/examples.react-native-blossom-ui" ], "ios": true, @@ -140625,13 +139893,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T17:15:10Z", + "updatedAt": "2025-10-06T17:03:33Z", "createdAt": "2024-10-31T15:52:29Z", - "pushedAt": "2025-09-11T17:15:10Z", + "pushedAt": "2025-10-06T17:03:33Z", "forks": 1, - "issues": 1, + "issues": 0, "subscribers": 1, - "stars": 26, + "stars": 29, "dependencies": 1 }, "name": "@react-native-blossom-ui/dates", @@ -140639,7 +139907,6 @@ "isPrivate": false, "description": "Dates components of Blossom UI", "topics": [ - "react-native", "calendar", "dates" ], @@ -140653,22 +139920,22 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 338, - "weekDownloads": 6, - "size": 114685, - "latestRelease": "0.14.0", - "latestReleaseDate": "2025-09-11T17:15:19.799Z" + "downloads": 217, + "weekDownloads": 4, + "size": 122276, + "latestRelease": "0.15.0", + "latestReleaseDate": "2025-10-06T17:03:43.123Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.735, - "topicSearchString": "react-native calendar dates" + "popularity": -0.734, + "topicSearchString": "calendar dates" }, { "githubUrl": "https://github.com/10play/10tap-editor", @@ -140697,13 +139964,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-07-02T08:38:52Z", + "updatedAt": "2025-09-11T22:14:21Z", "createdAt": "2024-01-26T19:08:37Z", - "pushedAt": "2025-07-02T08:38:52Z", - "forks": 60, - "issues": 38, + "pushedAt": "2025-09-11T22:14:21Z", + "forks": 64, + "issues": 39, "subscribers": 6, - "stars": 1025, + "stars": 1050, "dependencies": 29 }, "name": "@10play/tentap-editor", @@ -140715,9 +139982,8 @@ "rich-text", "rich-text-editor", "editor", - "tiptap-react-native", - "prosemirror-react-native", - "react-native", + "tiptap", + "prosemirror", "ios", "android" ], @@ -140731,11 +139997,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 84403, - "weekDownloads": 14244, + "downloads": 70913, + "weekDownloads": 16805, "size": 4488272, "latestRelease": "0.7.4", "latestReleaseDate": "2025-07-02T08:38:51.306Z" @@ -140745,58 +140013,78 @@ "Popular", "Known" ], - "popularity": 0.143, - "topicSearchString": "rich-text rich-text-editor editor tiptap-react-native prosemirror-react-native react-native ios android" + "popularity": 0.201, + "topicSearchString": "rich-text rich-text-editor editor tiptap prosemirror ios android" }, { - "githubUrl": "https://github.com/getsettalk/react-native-qr-kit", + "githubUrl": "https://github.com/getsettalk/react-native-qr-kit/tree/main/package", + "npmPkg": "react-native-qr-kit", "examples": [ "https://github.com/getsettalk/react-native-qr-kit/tree/main/Example" ], "android": true, + "ios": true, "newArchitecture": true, "github": { "urls": { "repo": "https://github.com/getsettalk/react-native-qr-kit", - "homepage": "https://www.npmjs.com/package/react-native-qr-kit" + "homepage": "https://github.com/getsettalk/react-native-qr-kit" }, "stats": { "hasIssues": true, "hasWiki": true, "hasSponsorships": false, "hasDiscussions": false, - "updatedAt": "2025-08-24T10:15:20Z", + "hasTopics": true, + "updatedAt": "2025-09-23T11:57:56Z", "createdAt": "2025-08-24T09:00:23Z", - "pushedAt": "2025-08-24T10:15:20Z", + "pushedAt": "2025-09-23T11:57:56Z", "forks": 0, "issues": 0, - "subscribers": 0, - "stars": 0 + "subscribers": 1, + "stars": 12, + "dependencies": 0 }, "name": "react-native-qr-kit", "fullName": "getsettalk/react-native-qr-kit", - "description": "Decode QR codes from images, decode multiple QR codes, decode from base64, and generate QR codes — all locally, with no network required.", - "license": null, + "isPrivate": false, + "description": "Fast, fully native QR code toolkit for React Native. Decode single or multiple QR codes from images or base64, and generate QR codes — all offline, on-device, with native Android & IOS performance. Perfect for local QR code scanning and generation in your React Native apps.", + "topics": [ + "qr-code", + "decoder", + "scanner", + "qr", + "qr-code", + "qr-local-image", + "qr-decode", + "qr-kit" + ], + "license": { + "name": "MIT License", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz", + "key": "mit", + "spdxId": "MIT" + }, "hasTypes": false, + "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": true, + "configPlugin": false }, - "npmPkg": "react-native-qr-kit", "npm": { - "downloads": 241, - "weekDownloads": 0, - "size": 19513, - "latestRelease": "1.0.2", - "latestReleaseDate": "2025-08-24T10:14:42.001Z" + "downloads": 391, + "weekDownloads": 303, + "size": 42792, + "latestRelease": "1.0.5", + "latestReleaseDate": "2025-09-23T11:57:11.048Z" }, - "score": 38, + "score": 51, "matchingScoreModifiers": [ - "No license", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -1, - "topicSearchString": "" + "popularity": -0.341, + "topicSearchString": "qr-code decoder scanner qr qr-code qr-local-image qr-decode qr-kit" }, { "githubUrl": "https://github.com/Shopify/checkout-sheet-kit-react-native/tree/main/modules/%40shopify/checkout-sheet-kit", @@ -140818,13 +140106,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-10T14:32:14Z", + "updatedAt": "2025-10-08T14:58:44Z", "createdAt": "2023-11-08T15:54:50Z", - "pushedAt": "2025-09-10T14:32:14Z", + "pushedAt": "2025-10-08T14:58:44Z", "forks": 11, - "issues": 0, + "issues": 1, "subscribers": 89, - "stars": 59, + "stars": 64, "dependencies": 0 }, "name": "@shopify/checkout-sheet-kit", @@ -140833,7 +140121,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native library for Shopify's Checkout Kit.", "topics": [ - "react-native", "shopify", "checkout" ], @@ -140847,23 +140134,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npm": { - "downloads": 15148, - "weekDownloads": 3322, - "size": 200534, - "latestRelease": "3.3.1", - "latestReleaseDate": "2025-09-08T22:10:43.851Z" + "downloads": 14929, + "weekDownloads": 2814, + "size": 294179, + "latestRelease": "3.4.0", + "latestReleaseDate": "2025-10-08T15:01:24.584Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.186, - "topicSearchString": "react-native shopify checkout" + "popularity": 0.16, + "topicSearchString": "shopify checkout" }, { "githubUrl": "https://github.com/software-mansion-labs/expo-live-activity", @@ -140872,6 +140159,7 @@ ], "ios": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/software-mansion-labs/expo-live-activity", @@ -140883,21 +140171,20 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-08T08:25:08Z", + "updatedAt": "2025-10-17T15:06:25Z", "createdAt": "2025-06-03T11:27:50Z", - "pushedAt": "2025-09-08T08:25:08Z", - "forks": 2, - "issues": 0, - "subscribers": 1, - "stars": 71, + "pushedAt": "2025-10-17T15:06:25Z", + "forks": 9, + "issues": 1, + "subscribers": 2, + "stars": 334, "dependencies": 0 }, "name": "expo-live-activity", "fullName": "software-mansion-labs/expo-live-activity", "isPrivate": false, - "description": "A module for adding Live Activity to a React Native app for iOS.", + "description": "A library for Live Activities in React Native", "topics": [ - "react-native", "expo", "live-activity", "ios", @@ -140913,23 +140200,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npmPkg": "expo-live-activity", "npm": { - "downloads": 1280, - "weekDownloads": 101, - "size": 106177, - "latestRelease": "0.2.1", - "latestReleaseDate": "2025-08-12T14:23:11.173Z" + "downloads": 3261, + "weekDownloads": 619, + "size": 116809, + "latestRelease": "0.4.1", + "latestReleaseDate": "2025-10-13T15:48:00.223Z" }, - "score": 49, + "score": 59, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Known", + "Recently updated" ], - "popularity": 0.067, - "topicSearchString": "react-native expo live-activity ios apple" + "popularity": 0.161, + "topicSearchString": "expo live-activity ios apple" }, { "githubUrl": "https://github.com/software-mansion-labs/react-native-rag", @@ -140942,7 +140231,7 @@ "github": { "urls": { "repo": "https://github.com/software-mansion-labs/react-native-rag", - "homepage": null + "homepage": "https://software-mansion-labs.github.io/react-native-rag/" }, "stats": { "hasIssues": true, @@ -140950,13 +140239,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-12T15:55:31Z", + "updatedAt": "2025-10-10T10:45:02Z", "createdAt": "2025-06-23T12:02:50Z", - "pushedAt": "2025-09-12T15:55:31Z", - "forks": 9, - "issues": 4, + "pushedAt": "2025-10-10T10:45:02Z", + "forks": 12, + "issues": 3, "subscribers": 0, - "stars": 155, + "stars": 240, "dependencies": 2 }, "name": "react-native-rag", @@ -140965,7 +140254,6 @@ "registry": "https://registry.npmjs.org/", "description": "Private, local RAGs. Supercharge LLMs with your own knowledge base.", "topics": [ - "react-native", "ios", "android", "ai", @@ -140982,23 +140270,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-rag", "npm": { - "downloads": 189, - "weekDownloads": 9, - "size": 134676, - "latestRelease": "0.1.2", - "latestReleaseDate": "2025-09-12T15:56:40.004Z" + "downloads": 1195, + "weekDownloads": 90, + "size": 134263, + "latestRelease": "0.2.0", + "latestReleaseDate": "2025-10-10T10:14:52.195Z" }, - "score": 49, + "score": 59, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Known", + "Recently updated" ], - "popularity": -0.709, - "topicSearchString": "react-native ios android ai llm rag" + "popularity": 0.064, + "topicSearchString": "ios android ai llm rag" }, { "githubUrl": "https://github.com/mybigday/llama.rn", @@ -141007,6 +140296,7 @@ ], "ios": true, "android": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/mybigday/llama.rn", @@ -141018,13 +140308,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-13T04:34:25Z", + "updatedAt": "2025-10-18T11:30:22Z", "createdAt": "2023-08-02T04:26:30Z", - "pushedAt": "2025-09-13T04:34:25Z", - "forks": 60, - "issues": 19, + "pushedAt": "2025-10-18T11:30:22Z", + "forks": 69, + "issues": 11, "subscribers": 10, - "stars": 665, + "stars": 700, "dependencies": 0 }, "name": "llama.rn", @@ -141033,7 +140323,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native binding of llama.cpp", "topics": [ - "react-native", "ios", "android", "large-language-model", @@ -141054,24 +140343,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true }, "npmPkg": "llama.rn", "npm": { - "downloads": 10479, - "weekDownloads": 1613, - "size": 582688784, - "latestRelease": "0.6.15", - "latestReleaseDate": "2025-09-13T04:25:32.842Z" + "downloads": 8791, + "weekDownloads": 2144, + "size": 158951813, + "latestRelease": "0.8.0-rc.3", + "latestReleaseDate": "2025-10-18T05:14:52.084Z" }, - "score": 57, + "score": 59, "matchingScoreModifiers": [ "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.131, - "topicSearchString": "react-native ios android large-language-model llm local-llm llama.cpp llama llama-2 llama-cpp" + "popularity": 0.207, + "topicSearchString": "ios android large-language-model llm local-llm llama.cpp llama llama-2 llama-cpp" }, { "githubUrl": "https://github.com/iymra-org/rn-toptabs", @@ -141116,22 +140405,20 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "rn-toptabs", "npm": { - "downloads": 914, - "weekDownloads": 0, + "downloads": 39, + "weekDownloads": 2, "size": 34977, "latestRelease": "1.0.11", "latestReleaseDate": "2025-09-04T14:44:47.397Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -1, + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.956, "topicSearchString": "" }, { @@ -141158,7 +140445,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 21, + "stars": 23, "dependencies": 1 }, "name": "react-native-gnss-status-checker", @@ -141167,7 +140454,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native module to check GNSS status and satellite information on Android, including NavIC and dual-frequency GPS support.", "topics": [ - "react-native", "android", "gnss", "gps", @@ -141186,23 +140472,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false }, "npmPkg": "react-native-gnss-status-checker", "npm": { - "downloads": 126, - "weekDownloads": 7, + "downloads": 32, + "weekDownloads": 4, "size": 115812, "latestRelease": "1.1.0-beta.1", "latestReleaseDate": "2025-08-29T09:22:57.310Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.952, - "topicSearchString": "react-native android gnss gps navic satellite dual-frequency location" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.886, + "topicSearchString": "android gnss gps navic satellite dual-frequency location" }, { "githubUrl": "https://github.com/irolinski/typewriter4react-native", @@ -141220,13 +140504,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-02T15:06:06Z", + "updatedAt": "2025-09-15T09:10:27Z", "createdAt": "2025-08-07T22:36:26Z", - "pushedAt": "2025-09-02T15:06:06Z", + "pushedAt": "2025-09-15T09:10:27Z", "forks": 1, "issues": 0, "subscribers": 0, - "stars": 9, + "stars": 12, "dependencies": 0 }, "name": "typewriter4react-native", @@ -141235,7 +140519,6 @@ "registry": "https://registry.npmjs.org/", "description": "Customizable typewriter-style text animation component for React Native, built for smooth, lightweight, and flexible usage in mobile apps.", "topics": [ - "react-native", "ios", "android", "component", @@ -141256,23 +140539,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "typewriter4react-native", "npm": { - "downloads": 797, - "weekDownloads": 0, - "size": 60409, - "latestRelease": "0.5.2", - "latestReleaseDate": "2025-09-02T15:06:05.769Z" + "downloads": 334, + "weekDownloads": 6, + "size": 59844, + "latestRelease": "0.5.3", + "latestReleaseDate": "2025-09-15T09:10:27.105Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -1, - "topicSearchString": "react-native ios android component reactjs expo npm-package typewriter-animation typewriter-effect typewriter-effects" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.985, + "topicSearchString": "ios android component reactjs expo npm-package typewriter-animation typewriter-effect typewriter-effects" }, { "githubUrl": "https://github.com/thehale/react-native-keep-awake", @@ -141300,7 +140581,7 @@ "forks": 0, "issues": 0, "subscribers": 0, - "stars": 0, + "stars": 1, "dependencies": 0 }, "name": "@thehale/react-native-keep-awake", @@ -141309,7 +140590,6 @@ "registry": "https://registry.npmjs.org/", "description": "Prevent the phone screen from going to sleep.", "topics": [ - "react-native", "ios", "android", "keep-awake" @@ -141324,19 +140604,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 51, - "weekDownloads": 18, + "downloads": 288, + "weekDownloads": 49, "size": 33566, "latestRelease": "0.2.0", "latestReleaseDate": "2025-07-26T01:07:14.096Z" }, "score": 46, "matchingScoreModifiers": [], - "popularity": -0.7, - "topicSearchString": "react-native ios android keep-awake" + "popularity": -0.854, + "topicSearchString": "ios android keep-awake" }, { "githubUrl": "https://github.com/kevcube/expo-better-auth-passkey", @@ -141359,13 +140641,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-03T11:48:58Z", + "updatedAt": "2025-10-08T12:54:13Z", "createdAt": "2025-09-01T07:56:24Z", - "pushedAt": "2025-09-03T11:48:58Z", - "forks": 0, + "pushedAt": "2025-10-08T12:54:13Z", + "forks": 1, "issues": 0, - "subscribers": 0, - "stars": 4, + "subscribers": 1, + "stars": 12, "dependencies": 0 }, "name": "expo-better-auth-passkey", @@ -141373,7 +140655,6 @@ "isPrivate": false, "description": "Expo module for using better-auth's passkey authentication on Android, iOS, web.", "topics": [ - "react-native", "expo", "expo-better-auth-passkey", "better-auth", @@ -141390,23 +140671,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-better-auth-passkey", "npm": { - "downloads": 74, - "weekDownloads": 0, - "size": 52350, - "latestRelease": "1.0.1", - "latestReleaseDate": "2025-09-03T11:04:12.485Z" + "downloads": 838, + "weekDownloads": 250, + "size": 111080, + "latestRelease": "1.3.0", + "latestReleaseDate": "2025-10-08T12:55:00.326Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -1, - "topicSearchString": "react-native expo expo-better-auth-passkey better-auth passkey webauthn" + "popularity": -0.746, + "topicSearchString": "expo expo-better-auth-passkey better-auth passkey webauthn" }, { "githubUrl": "https://github.com/nkzw-tech/stack", @@ -141426,13 +140708,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": false, - "updatedAt": "2025-09-03T11:59:58Z", + "updatedAt": "2025-10-07T11:44:48Z", "createdAt": "2025-06-27T12:23:14Z", - "pushedAt": "2025-09-03T11:59:58Z", + "pushedAt": "2025-10-07T11:44:48Z", "forks": 1, "issues": 0, "subscribers": 1, - "stars": 108, + "stars": 116, "dependencies": 0 }, "name": "@nkzw/stack", @@ -141450,21 +140732,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npm": { - "downloads": 409, - "weekDownloads": 49, - "size": 32199, - "latestRelease": "2.2.0", - "latestReleaseDate": "2025-07-07T09:27:48.931Z" + "downloads": 1130, + "weekDownloads": 268, + "size": 32136, + "latestRelease": "2.3.1", + "latestReleaseDate": "2025-10-07T11:45:34.125Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.648, + "popularity": 0.202, "topicSearchString": "" }, { @@ -141486,13 +140768,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-13T16:02:47Z", + "updatedAt": "2025-10-19T11:59:16Z", "createdAt": "2025-09-02T14:44:03Z", - "pushedAt": "2025-09-13T16:02:47Z", - "forks": 15, - "issues": 0, - "subscribers": 6, - "stars": 508, + "pushedAt": "2025-10-19T11:59:16Z", + "forks": 17, + "issues": 2, + "subscribers": 7, + "stars": 759, "dependencies": 0 }, "name": "@callstack/liquid-glass", @@ -141501,7 +140783,6 @@ "registry": "https://registry.npmjs.org/", "description": "Liquid Glass in React Native", "topics": [ - "react-native", "ios", "android" ], @@ -141515,22 +140796,24 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 640, - "weekDownloads": 0, - "size": 36885, - "latestRelease": "0.4.0", - "latestReleaseDate": "2025-09-13T16:02:39.115Z" + "downloads": 6453, + "weekDownloads": 877, + "size": 36907, + "latestRelease": "0.4.3", + "latestReleaseDate": "2025-10-19T11:59:15.152Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": -1, - "topicSearchString": "react-native ios android" + "popularity": 0.116, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/VladyslavMartynov10/react-native-nitro-event-kit", @@ -141557,7 +140840,7 @@ "forks": 0, "issues": 0, "subscribers": 1, - "stars": 11, + "stars": 13, "dependencies": 0 }, "name": "react-native-nitro-event-kit", @@ -141566,7 +140849,6 @@ "registry": "https://registry.npmjs.org/", "description": "React Native Nitro module for accessing and managing local iOS calendar events.", "topics": [ - "react-native", "nitro", "nitro-event-kit", "calendar" @@ -141581,22 +140863,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-event-kit", "npm": { - "downloads": 30, - "weekDownloads": 2, + "downloads": 27, + "weekDownloads": 0, "size": 438129, "latestRelease": "1.7.6", "latestReleaseDate": "2025-04-17T06:50:03.052Z" }, - "score": 43, + "score": 35, "matchingScoreModifiers": [ - "Not supporting New Architecture" + "Not updated recently" ], - "popularity": -0.943, - "topicSearchString": "react-native nitro nitro-event-kit calendar" + "popularity": -1, + "topicSearchString": "nitro nitro-event-kit calendar" }, { "githubUrl": "https://github.com/ChristopherGabba/react-native-nitro-audio-manager", @@ -141617,13 +140901,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-05T11:48:25Z", + "updatedAt": "2025-10-20T19:07:57Z", "createdAt": "2025-04-17T19:26:26Z", - "pushedAt": "2025-09-05T11:48:25Z", + "pushedAt": "2025-10-20T19:07:57Z", "forks": 0, "issues": 0, "subscribers": 2, - "stars": 42, + "stars": 47, "dependencies": 0 }, "name": "react-native-nitro-audio-manager", @@ -141632,7 +140916,6 @@ "registry": "https://registry.npmjs.org/", "description": "A react native library that gives API access to AVAudioSession on iOS and AudioManager on Android.", "topics": [ - "react-native", "ios", "android" ], @@ -141646,23 +140929,24 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-audio-manager", "npm": { - "downloads": 421, - "weekDownloads": 15, - "size": 574723, - "latestRelease": "0.1.5", - "latestReleaseDate": "2025-09-05T11:55:06.520Z" + "downloads": 449, + "weekDownloads": 100, + "size": 581570, + "latestRelease": "0.1.8", + "latestReleaseDate": "2025-10-20T19:07:55.714Z" }, - "score": 49, + "score": 51, "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -0.72, - "topicSearchString": "react-native ios android" + "popularity": -0.56, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/software-mansion-labs/react-native-enriched", @@ -141674,7 +140958,7 @@ "newArchitecture": true, "github": { "urls": { - "repo": "https://github.com/software-mansion-labs/react-native-enriched", + "repo": "https://github.com/software-mansion/react-native-enriched", "homepage": "https://www.npmjs.com/package/react-native-enriched" }, "stats": { @@ -141683,22 +140967,21 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-11T15:33:14Z", + "updatedAt": "2025-10-21T13:53:49Z", "createdAt": "2025-04-17T08:02:15Z", - "pushedAt": "2025-09-11T15:33:14Z", - "forks": 8, - "issues": 0, - "subscribers": 3, - "stars": 510, + "pushedAt": "2025-10-21T13:53:49Z", + "forks": 14, + "issues": 8, + "subscribers": 6, + "stars": 746, "dependencies": 0 }, "name": "react-native-enriched", - "fullName": "software-mansion-labs/react-native-enriched", + "fullName": "software-mansion/react-native-enriched", "isPrivate": false, "registry": "https://registry.npmjs.org/", - "description": "Rich text input component for React Native.", + "description": "Rich Text Editor for React Native", "topics": [ - "react-native", "ios", "android", "rich-text-editor", @@ -141714,23 +140997,25 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-enriched", "npm": { - "downloads": 379, - "weekDownloads": 0, - "size": 582194, - "latestRelease": "0.1.1", - "latestReleaseDate": "2025-09-05T15:44:09.756Z" + "downloads": 7897, + "weekDownloads": 1244, + "size": 573814, + "latestRelease": "0.1.4", + "latestReleaseDate": "2025-10-20T09:58:11.645Z" }, "score": 59, "matchingScoreModifiers": [ "Known", "Recently updated" ], - "popularity": -1, - "topicSearchString": "react-native ios android rich-text-editor text-input" + "popularity": 0.134, + "topicSearchString": "ios android rich-text-editor text-input" }, { "githubUrl": "https://github.com/hyochan/react-native-masonry-list", @@ -141756,8 +141041,8 @@ "pushedAt": "2023-06-06T07:23:30Z", "forks": 58, "issues": 22, - "subscribers": 4, - "stars": 428, + "subscribers": 3, + "stars": 430, "dependencies": 1 }, "name": "@react-native-seoul/masonry-list", @@ -141766,7 +141051,6 @@ "description": "The Masonry List implementation which has similar implementation as the `FlatList` in React Native", "topics": [ "masonry", - "react-native", "masonry-list", "pinterest", "flatlist", @@ -141782,12 +141066,13 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "unmaintained": true, "npm": { - "downloads": 30395, - "weekDownloads": 5230, + "downloads": 33787, + "weekDownloads": 7448, "size": 16913, "latestRelease": "1.4.2", "latestReleaseDate": "2023-06-06T07:24:32.759Z" @@ -141798,8 +141083,8 @@ "Not updated recently", "Not supporting New Architecture" ], - "popularity": -0.604, - "topicSearchString": "masonry react-native masonry-list pinterest flatlist masonry-layout" + "popularity": -0.563, + "topicSearchString": "masonry masonry-list pinterest flatlist masonry-layout" }, { "githubUrl": "https://github.com/expo/expo/tree/main/packages/expo-glass-effect", @@ -141816,13 +141101,13 @@ "hasSponsorships": false, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T19:42:04Z", + "updatedAt": "2025-10-01T01:01:24Z", "createdAt": "2016-08-15T17:14:25Z", - "pushedAt": "2025-09-12T19:42:04Z", - "forks": 8459, - "issues": 393, - "subscribers": 329, - "stars": 43276, + "pushedAt": "2025-10-01T01:01:24Z", + "forks": 9289, + "issues": 389, + "subscribers": 333, + "stars": 44260, "dependencies": 0 }, "name": "expo-glass-effect", @@ -141830,7 +141115,6 @@ "isPrivate": false, "description": "A component that renders a native glass effect view on iOS.", "topics": [ - "react-native", "apple", "liquid-glass", "expo", @@ -141846,27 +141130,28 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npmPkg": "expo-glass-effect", "npm": { - "downloads": 2736, - "weekDownloads": 0, - "size": 29335, - "latestRelease": "0.1.3", - "latestReleaseDate": "2025-09-12T19:42:31.823Z" + "downloads": 85371, + "weekDownloads": 38057, + "size": 29528, + "latestRelease": "0.1.4", + "latestReleaseDate": "2025-09-17T00:06:51.348Z" }, - "score": 86, + "score": 89, "matchingScoreModifiers": [ "Very popular", "Popular", "Known", "Lots of open issues", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": -1, - "topicSearchString": "react-native apple liquid-glass expo expo-glass-effect" + "popularity": 0.629, + "topicSearchString": "apple liquid-glass expo expo-glass-effect" }, { "githubUrl": "https://github.com/crossplatformkorea/react-native-naver-login", @@ -141878,6 +141163,7 @@ "ios": true, "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/crossplatformkorea/react-native-naver-login", @@ -141893,9 +141179,9 @@ "createdAt": "2017-09-11T16:41:36Z", "pushedAt": "2025-09-07T11:13:08Z", "forks": 96, - "issues": 1, + "issues": 3, "subscribers": 6, - "stars": 175, + "stars": 177, "dependencies": 1 }, "name": "@react-native-seoul/naver-login", @@ -141903,7 +141189,6 @@ "isPrivate": false, "description": "리엑트 네이티브 네이버 로그인 라이브러리", "topics": [ - "react-native", "naver", "네아로", "네이버", @@ -141921,23 +141206,23 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" }, "npm": { - "downloads": 7149, - "weekDownloads": 1045, + "downloads": 8661, + "weekDownloads": 1770, "size": 69246, "latestRelease": "4.2.2", "latestReleaseDate": "2025-09-07T11:14:35.768Z" }, - "score": 57, + "score": 54, "matchingScoreModifiers": [ - "Known", - "Recently updated", - "Not supporting New Architecture" + "Known" ], - "popularity": 0.124, - "topicSearchString": "react-native naver 네아로 네이버 seoul dooboolab naver-login" + "popularity": 0.174, + "topicSearchString": "naver 네아로 네이버 seoul dooboolab naver-login" }, { "githubUrl": "https://github.com/zoontek/react-native-navigation-bar", @@ -141947,6 +141232,7 @@ ], "android": true, "newArchitecture": true, + "configPlugin": true, "github": { "urls": { "repo": "https://github.com/zoontek/react-native-navigation-bar", @@ -141958,13 +141244,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-11T08:48:51Z", + "updatedAt": "2025-10-05T16:15:10Z", "createdAt": "2025-09-06T11:30:22Z", - "pushedAt": "2025-09-11T08:48:51Z", + "pushedAt": "2025-10-05T16:15:10Z", "forks": 1, "issues": 0, "subscribers": 1, - "stars": 56, + "stars": 66, "dependencies": 0 }, "name": "@zoontek/react-native-navigation-bar", @@ -141973,8 +141259,6 @@ "registry": "https://registry.npmjs.org", "description": "React Native StatusBar long-lost twin: A component to control your Android app's navigation bar.", "topics": [ - "react", - "react-native", "navigation-bar", "edge-to-edge", "status-bar", @@ -141990,11 +141274,13 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" }, "npm": { - "downloads": 254, - "weekDownloads": 0, + "downloads": 1496, + "weekDownloads": 121, "size": 51475, "latestRelease": "1.0.1", "latestReleaseDate": "2025-09-07T17:52:20.712Z" @@ -142003,8 +141289,8 @@ "matchingScoreModifiers": [ "Recently updated" ], - "popularity": -1, - "topicSearchString": "react react-native navigation-bar edge-to-edge status-bar system-bar" + "popularity": 0.069, + "topicSearchString": "navigation-bar edge-to-edge status-bar system-bar" }, { "githubUrl": "https://github.com/satya164/react-native-animated-observer", @@ -142025,13 +141311,13 @@ "hasSponsorships": false, "hasDiscussions": false, "hasTopics": true, - "updatedAt": "2025-09-10T08:50:36Z", + "updatedAt": "2025-09-13T21:31:36Z", "createdAt": "2021-03-12T22:35:18Z", - "pushedAt": "2025-09-10T08:50:36Z", + "pushedAt": "2025-09-13T21:31:36Z", "forks": 1, "issues": 0, - "subscribers": 3, - "stars": 47, + "subscribers": 2, + "stars": 68, "dependencies": 0 }, "name": "react-native-animated-observer", @@ -142040,7 +141326,6 @@ "registry": "https://registry.npmjs.org/", "description": "Helper to convert an Animated value to Reanimated and vice-versa", "topics": [ - "react-native", "ios", "android" ], @@ -142054,22 +141339,22 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-animated-observer", "npm": { - "downloads": 374, - "weekDownloads": 0, - "size": 37911, - "latestRelease": "0.2.3", - "latestReleaseDate": "2025-09-10T07:50:05.736Z" + "downloads": 67, + "weekDownloads": 19, + "size": 37950, + "latestRelease": "0.2.4", + "latestReleaseDate": "2025-09-13T21:31:35.764Z" }, - "score": 51, - "matchingScoreModifiers": [ - "Recently updated" - ], - "popularity": -1, - "topicSearchString": "react-native ios android" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.497, + "topicSearchString": "ios android" }, { "githubUrl": "https://github.com/google-pay/react-native-make-payment", @@ -142094,9 +141379,9 @@ "createdAt": "2023-03-03T00:19:45Z", "pushedAt": "2025-09-12T09:55:02Z", "forks": 21, - "issues": 1, - "subscribers": 6, - "stars": 48, + "issues": 3, + "subscribers": 5, + "stars": 53, "dependencies": 1 }, "name": "@google/react-native-make-payment", @@ -142109,7 +141394,6 @@ "google-pay", "pay", "payment", - "react-native", "ios", "android" ], @@ -142123,21 +141407,21 @@ "hasTypes": true, "newArchitecture": true, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npm": { - "downloads": 26584, - "weekDownloads": 4320, + "downloads": 54420, + "weekDownloads": 11951, "size": 78390, "latestRelease": "0.2.2", "latestReleaseDate": "2025-09-10T06:48:11.576Z" }, - "score": 51, - "matchingScoreModifiers": [ - "Recently updated" - ], - "popularity": 0.138, - "topicSearchString": "googlepay google-pay pay payment react-native ios android" + "score": 46, + "matchingScoreModifiers": [], + "popularity": 0.187, + "topicSearchString": "googlepay google-pay pay payment ios android" }, { "githubUrl": "https://github.com/mtebele/react-native-tiktok-business-sdk", @@ -142153,17 +141437,17 @@ }, "stats": { "hasIssues": true, - "hasWiki": true, + "hasWiki": false, "hasSponsorships": false, - "hasDiscussions": false, + "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-09T18:39:47Z", + "updatedAt": "2025-09-15T19:35:12Z", "createdAt": "2025-02-26T21:03:41Z", - "pushedAt": "2025-09-09T18:39:47Z", - "forks": 5, - "issues": 0, + "pushedAt": "2025-09-15T19:35:12Z", + "forks": 6, + "issues": 2, "subscribers": 1, - "stars": 9, + "stars": 14, "dependencies": 0 }, "name": "react-native-tiktok-business-sdk", @@ -142172,7 +141456,6 @@ "registry": "https://registry.npmjs.org/", "description": "A React Native bridge for the TikTok Business SDK", "topics": [ - "react-native", "tiktok", "business", "sdk", @@ -142189,29 +141472,27 @@ "hasTypes": false, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" }, "npmPkg": "react-native-tiktok-business-sdk", "npm": { - "downloads": 1427, - "weekDownloads": 127, + "downloads": 2288, + "weekDownloads": 410, "size": 90276, "latestRelease": "1.5.0", "latestReleaseDate": "2025-09-09T18:39:45.140Z" }, - "score": 49, + "score": 43, "matchingScoreModifiers": [ - "Recently updated", "Not supporting New Architecture" ], - "popularity": -0.174, - "topicSearchString": "react-native tiktok business sdk ios android" + "popularity": -0.098, + "topicSearchString": "tiktok business sdk ios android" }, { "githubUrl": "https://github.com/luisscruza/react-native-multi-resource-timeline", - "examples": [ - "https://github.com/luisscruza/react-native-multi-resource-timeline/tree/main/example" - ], "ios": true, "android": true, "newArchitecture": true, @@ -142230,9 +141511,9 @@ "createdAt": "2025-07-15T16:51:17Z", "pushedAt": "2025-09-13T08:54:01Z", "forks": 0, - "issues": 2, + "issues": 0, "subscribers": 0, - "stars": 1, + "stars": 5, "dependencies": 0 }, "name": "react-native-multi-resource-timeline", @@ -142240,7 +141521,6 @@ "isPrivate": false, "description": "A powerful, customizable multi-resource timeline component for React Native with advanced gesture support, zoom capabilities, and working hours visualization", "topics": [ - "react-native", "timeline", "calendar", "scheduler", @@ -142260,23 +141540,21 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": false + "hasNativeCode": false, + "configPlugin": false }, "npmPkg": "react-native-multi-resource-timeline", "npm": { - "downloads": 324, - "weekDownloads": 5, + "downloads": 30, + "weekDownloads": 4, "size": 393137, "latestRelease": "2.0.2", "latestReleaseDate": "2025-09-13T08:54:12.074Z" }, - "score": 49, - "matchingScoreModifiers": [ - "Recently updated", - "Not supporting New Architecture" - ], - "popularity": -0.987, - "topicSearchString": "react-native timeline calendar scheduler multi-resource gesture-handler reanimated expo typescript" + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.886, + "topicSearchString": "timeline calendar scheduler multi-resource gesture-handler reanimated expo typescript" }, { "githubUrl": "https://github.com/clerk/javascript/tree/main/packages/expo-passkeys", @@ -142295,13 +141573,13 @@ "hasSponsorships": true, "hasDiscussions": true, "hasTopics": true, - "updatedAt": "2025-09-12T15:46:02Z", + "updatedAt": "2025-10-17T18:15:17Z", "createdAt": "2021-12-14T16:53:48Z", - "pushedAt": "2025-09-12T15:46:02Z", - "forks": 379, - "issues": 7, + "pushedAt": "2025-10-17T18:15:17Z", + "forks": 394, + "issues": 15, "subscribers": 8, - "stars": 1558, + "stars": 1587, "dependencies": 2 }, "name": "@clerk/expo-passkeys", @@ -142309,7 +141587,6 @@ "isPrivate": false, "description": "Passkeys library to be used with Clerk for expo", "topics": [ - "react-native", "expo", "expo-passkey", "clerkexpopasskeys", @@ -142326,24 +141603,25 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" }, "npm": { - "downloads": 12201, - "weekDownloads": 2313, - "size": 222776, - "latestRelease": "0.4.0", - "latestReleaseDate": "2025-09-12T15:49:25.492Z" + "downloads": 21531, + "weekDownloads": 1849, + "size": 227778, + "latestRelease": "0.4.10", + "latestReleaseDate": "2025-10-17T18:18:48.509Z" }, - "score": 73, + "score": 76, "matchingScoreModifiers": [ "Popular", "Known", - "Recently updated", - "Not supporting New Architecture" + "Recently updated" ], - "popularity": 0.161, - "topicSearchString": "react-native expo expo-passkey clerkexpopasskeys clerk passkeys" + "popularity": 0.073, + "topicSearchString": "expo expo-passkey clerkexpopasskeys clerk passkeys" }, { "githubUrl": "https://github.com/tconns/react-native-nitro-keyevent", @@ -142375,7 +141653,6 @@ "registry": "https://registry.npmjs.org/", "description": "⌨️ NitroModule Capture external keyboard keys or remote control button events", "topics": [ - "react-native", "nitro", "nitro-keyevent", "keyevent", @@ -142397,183 +141674,5477 @@ "hasTypes": true, "newArchitecture": false, "isArchived": false, - "hasNativeCode": true + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" }, "npmPkg": "react-native-nitro-keyevent", "npm": { - "downloads": 495, - "weekDownloads": 0, + "downloads": 64, + "weekDownloads": 7, "size": 85182, "latestRelease": "0.0.6", "latestReleaseDate": "2025-09-09T03:35:48.776Z" }, + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.907, + "topicSearchString": "nitro nitro-keyevent keyevent keyboard external android module remote tvos androidtv" + }, + { + "githubUrl": "https://github.com/Lomray-Software/react-native-apple-music", + "npmPkg": "@lomray/react-native-apple-music", + "examples": [ + "https://github.com/Lomray-Software/react-native-apple-music/tree/prod/example" + ], + "ios": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/Lomray-Software/react-native-apple-music", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": true, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2024-01-23T14:39:13Z", + "createdAt": "2024-01-02T17:17:45Z", + "pushedAt": "2024-01-23T14:39:13Z", + "forks": 10, + "issues": 4, + "subscribers": 3, + "stars": 24, + "dependencies": 0 + }, + "name": "@lomray/react-native-apple-music", + "fullName": "Lomray-Software/react-native-apple-music", + "isPrivate": false, + "description": "A react native module for the Apple Music SDK. ", + "topics": [ + "js", + "ios", + "music-kit", + "apple" + ], + "license": { + "key": "apache-2.0", + "name": "Apache License 2.0", + "spdxId": "Apache-2.0", + "url": "http://choosealicense.com/licenses/apache-2.0/", + "id": "MDc6TGljZW5zZTI=" + }, + "hasTypes": false, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false + }, + "npm": { + "downloads": 788, + "weekDownloads": 123, + "size": 66248, + "latestRelease": "1.2.1", + "latestReleaseDate": "2024-01-23T14:40:01.381Z" + }, + "score": 35, + "matchingScoreModifiers": [ + "Not updated recently" + ], + "popularity": -0.867, + "topicSearchString": "js ios music-kit apple" + }, + { + "githubUrl": "https://github.com/Gautham495/react-native-app-clip-overlay", + "examples": [ + "https://github.com/Gautham495/react-native-app-clip-overlay/tree/main/example" + ], + "ios": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/Gautham495/react-native-app-clip-overlay", + "homepage": "https://www.npmjs.com/package/react-native-app-clip-overlay" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-09-12T07:44:06Z", + "createdAt": "2025-09-11T17:08:49Z", + "pushedAt": "2025-09-12T07:44:06Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 4, + "dependencies": 0 + }, + "name": "react-native-app-clip-overlay", + "fullName": "Gautham495/react-native-app-clip-overlay", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "Prompt users to download your main app with app clip overlay", + "topics": [ + "ios", + "android", + "app-clips", + "turbomodule", + "turbomodules", + "new-architecture" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npmPkg": "react-native-app-clip-overlay", + "npm": { + "downloads": 16, + "weekDownloads": 1, + "size": 15407, + "latestRelease": "0.1.6", + "latestReleaseDate": "2025-09-12T07:44:17.009Z" + }, + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.933, + "topicSearchString": "ios android app-clips turbomodule turbomodules new-architecture" + }, + { + "githubUrl": "https://github.com/sbaiahmed1/react-native-google-auth", + "ios": true, + "android": true, + "newArchitecture": true, + "configPlugin": true, + "github": { + "urls": { + "repo": "https://github.com/sbaiahmed1/react-native-google-auth", + "homepage": "https://www.npmjs.com/package/react-native-google-auth" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-09-21T23:09:37Z", + "createdAt": "2025-08-25T08:49:57Z", + "pushedAt": "2025-09-21T23:09:37Z", + "forks": 1, + "issues": 2, + "subscribers": 0, + "stars": 95, + "dependencies": 0 + }, + "name": "react-native-google-auth", + "fullName": "sbaiahmed1/react-native-google-auth", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "Modern React Native Google Authentication library with TypeScript support, token management, and cross-platform compatibility for iOS and Android (SWG Credential manager).", + "topics": [ + "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" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" + }, + "npmPkg": "react-native-google-auth", + "npm": { + "downloads": 1299, + "weekDownloads": 476, + "size": 177761, + "latestRelease": "1.1.1", + "latestReleaseDate": "2025-09-21T23:09:36.915Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": 0.312, + "topicSearchString": "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" + }, + { + "githubUrl": "https://github.com/omarsdev/react-native-contacts", + "npmPkg": "@omarsdev/react-native-contacts", + "examples": [ + "https://github.com/omarsdev/react-native-contacts/tree/main/example" + ], + "ios": true, + "android": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/omarsdev/react-native-contacts", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-09-25T15:54:05Z", + "createdAt": "2025-09-16T13:10:41Z", + "pushedAt": "2025-09-25T15:54:05Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 4, + "dependencies": 0 + }, + "name": "@omarsdev/react-native-contacts", + "fullName": "omarsdev/react-native-contacts", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "Access the device address book and track when contacts were last touched.", + "topics": [ + "ios", + "android" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npm": { + "downloads": 1503, + "weekDownloads": 1340, + "size": 110862, + "latestRelease": "1.3.1", + "latestReleaseDate": "2025-09-25T15:54:10.866Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": 0.509, + "topicSearchString": "ios android" + }, + { + "githubUrl": "https://github.com/kirillzyusko/react-native-teleport", + "examples": [ + "https://github.com/kirillzyusko/react-native-teleport/tree/main/example" + ], + "images": [ + "https://github.com/kirillzyusko/react-native-teleport/blob/main/gifs/demo.png" + ], + "ios": true, + "android": true, + "web": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/kirillzyusko/react-native-teleport", + "homepage": "https://kirillzyusko.github.io/react-native-teleport/" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": true, + "hasDiscussions": true, + "hasTopics": true, + "updatedAt": "2025-10-10T15:54:15Z", + "createdAt": "2025-08-30T09:49:44Z", + "pushedAt": "2025-10-10T15:54:15Z", + "forks": 0, + "issues": 1, + "subscribers": 1, + "stars": 78, + "dependencies": 0 + }, + "name": "react-native-teleport", + "fullName": "kirillzyusko/react-native-teleport", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "A missing (and yet experimental) native portal implementation for react-native 🌀➡️🌀", + "topics": [ + "portal", + "teleport", + "tunnel", + "re-parent", + "reparent", + "reparentable", + "gateway", + "ios", + "android", + "web", + "reparenting" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npmPkg": "react-native-teleport", + "npm": { + "downloads": 737, + "weekDownloads": 95, + "size": 75911, + "latestRelease": "0.3.0", + "latestReleaseDate": "2025-09-23T08:49:16.321Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.64, + "topicSearchString": "portal teleport tunnel re-parent reparent reparentable gateway ios android web reparenting" + }, + { + "githubUrl": "https://github.com/Dinesh7571/react-native-calllogs-android", + "examples": [ + "https://github.com/Dinesh7571/react-native-calllogs-android/tree/main/example" + ], + "ios": true, + "android": true, + "web": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/Dinesh7571/react-native-calllogs-android", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": true, + "hasTopics": true, + "updatedAt": "2025-09-20T05:26:48Z", + "createdAt": "2025-09-19T19:29:45Z", + "pushedAt": "2025-09-20T05:26:48Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 4, + "dependencies": 0 + }, + "name": "react-native-calllogs-android", + "fullName": "Dinesh7571/react-native-calllogs-android", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "A react native library to get call logs in android based on new architecture", + "topics": [ + "ios", + "android" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npmPkg": "react-native-calllogs-android", + "npm": { + "downloads": 48, + "weekDownloads": 22, + "size": 35149, + "latestRelease": "0.2.1", + "latestReleaseDate": "2025-09-20T05:27:37.792Z" + }, + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.6, + "topicSearchString": "ios android" + }, + { + "githubUrl": "https://github.com/huextrat/expo-core-spotlight", + "ios": true, + "android": true, + "newArchitecture": true, + "configPlugin": true, + "github": { + "urls": { + "repo": "https://github.com/huextrat/expo-core-spotlight", + "homepage": "https://www.npmjs.com/package/expo-core-spotlight" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-09-29T07:48:03Z", + "createdAt": "2025-09-22T11:47:31Z", + "pushedAt": "2025-09-29T07:48:03Z", + "forks": 0, + "issues": 1, + "subscribers": 0, + "stars": 2, + "dependencies": 0 + }, + "name": "expo-core-spotlight", + "fullName": "huextrat/expo-core-spotlight", + "isPrivate": false, + "description": "Expo module implementing iOS Core Spotlight", + "topics": [ + "expo", + "expo-core-spotlight", + "expocorespotlight", + "ios", + "spotlight", + "spotlight-search" + ], + "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": true, + "moduleType": "expo" + }, + "npmPkg": "expo-core-spotlight", + "npm": { + "downloads": 967, + "weekDownloads": 687, + "size": 44666, + "latestRelease": "1.1.1", + "latestReleaseDate": "2025-09-23T09:43:09.470Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.395, + "topicSearchString": "expo expo-core-spotlight expocorespotlight ios spotlight spotlight-search" + }, + { + "githubUrl": "https://github.com/Survicate/survicate-react-native-sdk", + "npmPkg": "@survicate/react-native-survicate", + "ios": true, + "android": true, + "newArchitecture": true, + "configPlugin": true, + "github": { + "urls": { + "repo": "https://github.com/Survicate/survicate-react-native-sdk", + "homepage": null + }, + "stats": { + "hasIssues": false, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-09-30T12:43:25Z", + "createdAt": "2020-01-24T09:16:15Z", + "pushedAt": "2025-09-30T12:43:25Z", + "forks": 8, + "issues": 0, + "subscribers": 3, + "stars": 15, + "dependencies": 0 + }, + "name": "@survicate/react-native-survicate", + "fullName": "Survicate/survicate-react-native-sdk", + "isPrivate": false, + "description": "React Native bindings for Survicate Mobile SDK", + "topics": [ + "expo" + ], + "license": { + "name": "MIT License", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz", + "key": "mit", + "spdxId": "MIT" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "turbo" + }, + "npm": { + "downloads": 52564, + "weekDownloads": 11247, + "size": 92736, + "latestRelease": "6.4.2", + "latestReleaseDate": "2025-09-30T12:43:13.069Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.068, + "topicSearchString": "expo" + }, + { + "githubUrl": "https://github.com/purrseus/react-native-xenon", + "examples": [ + "https://github.com/purrseus/react-native-xenon/tree/main/example" + ], + "images": [ + "https://raw.githubusercontent.com/purrseus/react-native-xenon/refs/heads/main/images/screenshots/preview.png" + ], + "ios": true, + "android": true, + "expoGo": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/purrseus/react-native-xenon", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": true, + "hasDiscussions": true, + "hasTopics": true, + "updatedAt": "2025-10-12T00:30:44Z", + "createdAt": "2024-12-03T16:38:44Z", + "pushedAt": "2025-10-12T00:30:44Z", + "forks": 5, + "issues": 1, + "subscribers": 3, + "stars": 67, + "dependencies": 3 + }, + "name": "react-native-xenon", + "fullName": "purrseus/react-native-xenon", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "A powerful in-app debugging tool for React Native.", + "topics": [ + "android", + "ios", + "xenon", + "inspector", + "debugger", + "devtools", + "https", + "network", + "nsurlsession", + "okhttp", + "logger", + "console" + ], + "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-xenon", + "npm": { + "downloads": 404, + "weekDownloads": 122, + "size": 375543, + "latestRelease": "2.3.0", + "latestReleaseDate": "2025-10-12T00:30:43.981Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.493, + "topicSearchString": "android ios xenon inspector debugger devtools https network nsurlsession okhttp logger console" + }, + { + "githubUrl": "https://github.com/NIKHIL0VERMA/flixsrota-player", + "npmPkg": "@flixsrota/player", + "examples": [ + "https://github.com/NIKHIL0VERMA/flixsrota-player/tree/main/example" + ], + "images": [ + "https://raw.githubusercontent.com/NIKHIL0VERMA/flixsrota-player/main/assets/buffering.jpg", + "https://raw.githubusercontent.com/NIKHIL0VERMA/flixsrota-player/main/assets/controls.jpg", + "https://raw.githubusercontent.com/NIKHIL0VERMA/flixsrota-player/main/assets/fullscreen_player.jpg", + "https://raw.githubusercontent.com/NIKHIL0VERMA/flixsrota-player/main/assets/skip_gesture.jpg" + ], + "ios": true, + "android": true, + "expoGo": true, + "github": { + "urls": { + "repo": "https://github.com/NIKHIL0VERMA/flixsrota-player", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": true, + "hasDiscussions": true, + "hasTopics": true, + "updatedAt": "2025-09-23T17:20:08Z", + "createdAt": "2025-09-07T18:39:21Z", + "pushedAt": "2025-09-23T17:20:08Z", + "forks": 0, + "issues": 1, + "subscribers": 0, + "stars": 2, + "dependencies": 0 + }, + "name": "@flixsrota/player", + "fullName": "NIKHIL0VERMA/flixsrota-player", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "A Youtube player for react-native and expo; distraction free(without recommendations, share buttons, or channel overlays). Future versions will integrate with the upcoming Flixsrota Video Server, enabling adaptive streaming", + "topics": [ + "video", + "video-player", + "media", + "media-player", + "youtube", + "youtube-player", + "yt", + "player", + "streaming", + "custom-player", + "playback", + "web-video", + "iframe" + ], + "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 + }, + "npm": { + "downloads": 30, + "weekDownloads": 6, + "size": 65733, + "latestRelease": "0.2.0", + "latestReleaseDate": "2025-09-17T18:09:46.842Z" + }, + "score": 49, + "matchingScoreModifiers": [ + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": -0.829, + "topicSearchString": "video video-player media media-player youtube youtube-player yt player streaming custom-player playback web-video iframe" + }, + { + "githubUrl": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/devtools-floating-menu", + "npmPkg": "@react-buoy/core", + "examples": [ + "https://github.com/LovesWorking/react-native-buoy/tree/main/example" + ], + "ios": true, + "android": true, + "github": { + "urls": { + "repo": "https://github.com/LovesWorking/react-native-buoy", + "homepage": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/devtools-floating-menu#readme" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": false, + "updatedAt": "2025-10-21T15:00:31Z", + "createdAt": "2024-02-19T16:22:39Z", + "pushedAt": "2025-10-21T15:00:31Z", + "forks": 18, + "issues": 1, + "subscribers": 3, + "stars": 463, + "dependencies": 1 + }, + "name": "@react-buoy/core", + "fullName": "LovesWorking/react-native-buoy", + "isPrivate": false, + "description": "Floating dev tools launcher and AppHost", + "topics": [], + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npm": { + "downloads": 1550, + "weekDownloads": 809, + "size": 459232, + "latestRelease": "0.1.14", + "latestReleaseDate": "2025-10-16T03:19:40.240Z" + }, + "score": 57, + "matchingScoreModifiers": [ + "Known", + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": 0.445, + "topicSearchString": "" + }, + { + "githubUrl": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/shared", + "npmPkg": "@react-buoy/shared-ui", + "examples": [ + "https://github.com/LovesWorking/react-native-buoy/tree/main/example" + ], + "ios": true, + "android": true, + "github": { + "urls": { + "repo": "https://github.com/LovesWorking/react-native-buoy", + "homepage": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/shared#readme" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": false, + "updatedAt": "2025-10-21T15:08:02Z", + "createdAt": "2024-02-19T16:22:39Z", + "pushedAt": "2025-10-21T15:08:02Z", + "forks": 18, + "issues": 1, + "subscribers": 3, + "stars": 463, + "dependencies": 1 + }, + "name": "@react-buoy/shared-ui", + "fullName": "LovesWorking/react-native-buoy", + "isPrivate": false, + "description": "Shared UI components, hooks, and utilities", + "topics": [], + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npm": { + "downloads": 2157, + "weekDownloads": 1318, + "size": 3692478, + "latestRelease": "0.1.14", + "latestReleaseDate": "2025-10-16T03:19:33.659Z" + }, + "score": 57, + "matchingScoreModifiers": [ + "Known", + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": 0.52, + "topicSearchString": "" + }, + { + "githubUrl": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/env-tools", + "npmPkg": "@react-buoy/env", + "examples": [ + "https://github.com/LovesWorking/react-native-buoy/tree/main/example" + ], + "ios": true, + "android": true, + "github": { + "urls": { + "repo": "https://github.com/LovesWorking/react-native-buoy", + "homepage": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/env-tools#readme" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": false, + "updatedAt": "2025-10-16T03:19:13Z", + "createdAt": "2024-02-19T16:22:39Z", + "pushedAt": "2025-10-16T03:19:13Z", + "forks": 18, + "issues": 1, + "subscribers": 3, + "stars": 463, + "dependencies": 1 + }, + "name": "@react-buoy/env", + "fullName": "LovesWorking/react-native-buoy", + "isPrivate": false, + "description": "Environment variables dev tooling", + "topics": [], + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npm": { + "downloads": 1235, + "weekDownloads": 772, + "size": 217488, + "latestRelease": "0.1.14", + "latestReleaseDate": "2025-10-16T03:19:46.232Z" + }, + "score": 57, + "matchingScoreModifiers": [ + "Known", + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": 0.532, + "topicSearchString": "" + }, + { + "githubUrl": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/network", + "npmPkg": "@react-buoy/network", + "examples": [ + "https://github.com/LovesWorking/react-native-buoy/tree/main/example" + ], + "ios": true, + "android": true, + "github": { + "urls": { + "repo": "https://github.com/LovesWorking/react-native-buoy", + "homepage": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/network#readme" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": false, + "updatedAt": "2025-10-16T03:19:13Z", + "createdAt": "2024-02-19T16:22:39Z", + "pushedAt": "2025-10-16T03:19:13Z", + "forks": 18, + "issues": 1, + "subscribers": 3, + "stars": 463, + "dependencies": 2 + }, + "name": "@react-buoy/network", + "fullName": "LovesWorking/react-native-buoy", + "isPrivate": false, + "description": "network package", + "topics": [], + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npm": { + "downloads": 1512, + "weekDownloads": 879, + "size": 545905, + "latestRelease": "0.1.14", + "latestReleaseDate": "2025-10-16T03:19:51.848Z" + }, + "score": 57, + "matchingScoreModifiers": [ + "Known", + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": 0.495, + "topicSearchString": "" + }, + { + "githubUrl": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/react-query", + "npmPkg": "@react-buoy/react-query", + "examples": [ + "https://github.com/LovesWorking/react-native-buoy/tree/main/example" + ], + "ios": true, + "android": true, + "github": { + "urls": { + "repo": "https://github.com/LovesWorking/react-native-buoy", + "homepage": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/react-query#readme" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": false, + "updatedAt": "2025-10-16T03:19:13Z", + "createdAt": "2024-02-19T16:22:39Z", + "pushedAt": "2025-10-16T03:19:13Z", + "forks": 18, + "issues": 1, + "subscribers": 3, + "stars": 463, + "dependencies": 1 + }, + "name": "@react-buoy/react-query", + "fullName": "LovesWorking/react-native-buoy", + "isPrivate": false, + "description": "react-query package", + "topics": [], + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npm": { + "downloads": 1468, + "weekDownloads": 979, + "size": 1193496, + "latestRelease": "0.1.14", + "latestReleaseDate": "2025-10-16T03:20:04.284Z" + }, + "score": 57, + "matchingScoreModifiers": [ + "Known", + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": 0.568, + "topicSearchString": "" + }, + { + "githubUrl": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/storage", + "npmPkg": "@react-buoy/storage", + "examples": [ + "https://github.com/LovesWorking/react-native-buoy/tree/main/example" + ], + "ios": true, + "android": true, + "github": { + "urls": { + "repo": "https://github.com/LovesWorking/react-native-buoy", + "homepage": "https://github.com/LovesWorking/react-native-buoy/tree/main/packages/storage#readme" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": false, + "updatedAt": "2025-10-16T03:19:13Z", + "createdAt": "2024-02-19T16:22:39Z", + "pushedAt": "2025-10-16T03:19:13Z", + "forks": 18, + "issues": 1, + "subscribers": 3, + "stars": 463, + "dependencies": 2 + }, + "name": "@react-buoy/storage", + "fullName": "LovesWorking/react-native-buoy", + "isPrivate": false, + "description": "storage package", + "topics": [], + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npm": { + "downloads": 1306, + "weekDownloads": 891, + "size": 1387434, + "latestRelease": "0.1.14", + "latestReleaseDate": "2025-10-16T03:19:58.473Z" + }, + "score": 57, + "matchingScoreModifiers": [ + "Known", + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": 0.58, + "topicSearchString": "" + }, + { + "githubUrl": "https://github.com/margelo/react-native-nitro-fetch", + "examples": [ + "https://github.com/margelo/react-native-nitro-fetch/tree/main/example" + ], + "ios": true, + "android": true, + "github": { + "urls": { + "repo": "https://github.com/margelo/react-native-nitro-fetch", + "homepage": "https://margelo.com" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-15T17:15:14Z", + "createdAt": "2025-09-03T13:37:12Z", + "pushedAt": "2025-10-15T17:15:14Z", + "forks": 10, + "issues": 8, + "subscribers": 2, + "stars": 422, + "dependencies": 0 + }, + "name": "react-native-nitro-fetch-monorepo", + "fullName": "margelo/react-native-nitro-fetch", + "isPrivate": true, + "description": "A super-fast network fetching library for React Native with prefetching support", + "topics": [ + "cronet", + "fast", + "fetch", + "http", + "http2", + "network", + "nitro", + "prefetch" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": false, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "nitro" + }, + "npmPkg": "react-native-nitro-fetch", + "npm": { + "downloads": 358, + "weekDownloads": 82, + "size": 218496, + "latestRelease": "0.1.3", + "latestReleaseDate": "2025-09-19T18:08:46.394Z" + }, + "score": 57, + "matchingScoreModifiers": [ + "Known", + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": -0.555, + "topicSearchString": "cronet fast fetch http http2 network nitro prefetch" + }, + { + "githubUrl": "https://github.com/patrickkabwe/react-native-nitro-text", + "examples": [ + "https://github.com/patrickkabwe/react-native-nitro-text/tree/main/example" + ], + "ios": true, + "android": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/patrickkabwe/react-native-nitro-text", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-12T06:18:17Z", + "createdAt": "2025-09-10T18:18:44Z", + "pushedAt": "2025-10-12T06:18:17Z", + "forks": 3, + "issues": 5, + "subscribers": 2, + "stars": 158, + "dependencies": 0 + }, + "name": "react-native-nitro-text", + "fullName": "patrickkabwe/react-native-nitro-text", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "A Text component that is much richer and performant for both iOS and Android.", + "topics": [ + "nitro-text" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" + }, + "npmPkg": "react-native-nitro-text", + "npm": { + "downloads": 769, + "weekDownloads": 559, + "size": 340211, + "latestRelease": "1.0.3", + "latestReleaseDate": "2025-09-22T11:02:51.970Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.129, + "topicSearchString": "nitro-text" + }, + { + "githubUrl": "https://github.com/thereallo1026/expo-native-storage", + "examples": [ + "https://github.com/thereallo1026/expo-storage-benchmark" + ], + "images": [ + "https://github.com/Thereallo1026/expo-storage-benchmark/blob/master/images/andorid_100ops.png?raw=true", + "https://github.com/Thereallo1026/expo-storage-benchmark/blob/master/images/android_1000ops.png?raw=true", + "https://github.com/Thereallo1026/expo-storage-benchmark/blob/master/images/ios_100ops.png?raw=true" + ], + "ios": true, + "android": true, + "web": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/Thereallo1026/expo-native-storage", + "homepage": "https://npmjs.com/package/expo-native-storage" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-09-28T03:39:31Z", + "createdAt": "2025-09-27T10:04:29Z", + "pushedAt": "2025-09-28T03:39:31Z", + "forks": 0, + "issues": 2, + "subscribers": 0, + "stars": 1, + "dependencies": 0 + }, + "name": "expo-native-storage", + "fullName": "Thereallo1026/expo-native-storage", + "isPrivate": false, + "description": "Drop-in replacement for AsyncStorage, 5KB packed, native.", + "topics": [ + "expo", + "storage", + "userdefaults", + "sharedpreferences" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" + }, + "npmPkg": "expo-native-storage", + "npm": { + "downloads": 413, + "weekDownloads": 0, + "size": 20468, + "latestRelease": "0.1.3", + "latestReleaseDate": "2025-09-28T03:39:58.233Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "expo storage userdefaults sharedpreferences" + }, + { + "githubUrl": "https://github.com/pushpender-singh-ap/react-native-unarchive", + "examples": [ + "https://github.com/pushpender-singh-ap/react-native-unarchive/tree/main/example" + ], + "ios": true, + "android": true, + "github": { + "urls": { + "repo": "https://github.com/pushpender-singh-ap/react-native-unarchive", + "homepage": "https://www.npmjs.com/package/react-native-unarchive" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-05T13:23:36Z", + "createdAt": "2025-09-29T18:56:23Z", + "pushedAt": "2025-10-05T13:23:36Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 4, + "dependencies": 0 + }, + "name": "react-native-unarchive", + "fullName": "pushpender-singh-ap/react-native-unarchive", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "A React Native module to unarchive zip, cbr, cbz and rar files.", + "topics": [ + "ios", + "android", + "unarchive", + "unzip", + "zip", + "rar", + "extract", + "file", + "archive", + "module", + "turbo-module", + "cross-platform", + "cbr", + "cbr-archive", + "cbz", + "cbz-archive" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npmPkg": "react-native-unarchive", + "npm": { + "downloads": 231, + "weekDownloads": 0, + "size": 81878, + "latestRelease": "1.1.0", + "latestReleaseDate": "2025-10-05T13:24:40.300Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "ios android unarchive unzip zip rar extract file archive module turbo-module cross-platform cbr cbr-archive cbz cbz-archive" + }, + { + "githubUrl": "https://github.com/SamadK01/react-native-ultrastore", + "examples": [ + "https://github.com/SamadK01/react-native-ultrastore/tree/main/example" + ], + "ios": true, + "android": true, + "github": { + "urls": { + "repo": "https://github.com/SamadK01/react-native-ultrastore", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-01T11:29:52Z", + "createdAt": "2025-10-01T11:15:00Z", + "pushedAt": "2025-10-01T11:29:52Z", + "forks": 1, + "issues": 0, + "subscribers": 0, + "stars": 4, + "dependencies": 1 + }, + "name": "react-native-ultrastore", + "fullName": "SamadK01/react-native-ultrastore", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "Ultra fast (10–30x faster than AsyncStorage) storage and state management library for React Native. Built on MMKV with hooks, persistence, encryption, namespaces, and middleware. Simple for small apps, powerful enough for large projects.", + "topics": [ + "storage", + "state-management", + "mmkv", + "asyncstorage-alternative", + "redux-alternative", + "hooks", + "typescript", + "persist", + "fast", + "ultrastore", + "zustand-alternative", + "encryption", + "namespaces", + "middleware", + "ios", + "android" + ], + "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-ultrastore", + "npm": { + "downloads": 83, + "weekDownloads": 0, + "size": 101840, + "latestRelease": "1.0.0", + "latestReleaseDate": "2025-10-01T11:46:15.639Z" + }, "score": 49, "matchingScoreModifiers": [ "Recently updated", "Not supporting New Architecture" ], "popularity": -1, - "topicSearchString": "react-native nitro nitro-keyevent keyevent keyboard external android module remote tvos androidtv" - } - ], - "topics": { + "topicSearchString": "storage state-management mmkv asyncstorage-alternative redux-alternative hooks typescript persist fast ultrastore zustand-alternative encryption namespaces middleware ios android" + }, + { + "githubUrl": "https://github.com/pushpender-singh-ap/react-native-otp-verify", + "npmPkg": "@pushpendersingh/react-native-otp-verify", + "examples": [ + "https://github.com/pushpender-singh-ap/react-native-otp-verify/tree/main/example" + ], + "android": true, + "github": { + "urls": { + "repo": "https://github.com/pushpender-singh-ap/react-native-otp-verify", + "homepage": "https://www.npmjs.com/package/@pushpendersingh/react-native-otp-verify" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-15T21:58:37Z", + "createdAt": "2025-10-01T00:19:03Z", + "pushedAt": "2025-10-15T21:58:37Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 4, + "dependencies": 0 + }, + "name": "@pushpendersingh/react-native-otp-verify", + "fullName": "pushpender-singh-ap/react-native-otp-verify", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "Automatic OTP verification for React Native. Zero-permission SMS verification using Google's SMS Retriever API on Android.", + "topics": [ + "android", + "otp", + "otp-verification", + "sms-verification", + "sms-retriever", + "auto-verify", + "phone-verification", + "authentication" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npm": { + "downloads": 287, + "weekDownloads": 0, + "size": 54421, + "latestRelease": "1.2.0", + "latestReleaseDate": "2025-10-15T21:40:15.943Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "android otp otp-verification sms-verification sms-retriever auto-verify phone-verification authentication" + }, + { + "githubUrl": "https://github.com/ahmedawaad1804/react-native-restart-newarch", + "examples": [ + "https://github.com/ahmedawaad1804/react-native-restart-newarch/tree/main/example" + ], + "android": true, + "ios": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/ahmedawaad1804/react-native-restart-newarch", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-06T12:32:17Z", + "createdAt": "2025-02-23T16:59:25Z", + "pushedAt": "2025-10-06T12:32:17Z", + "forks": 1, + "issues": 0, + "subscribers": 2, + "stars": 22, + "dependencies": 0 + }, + "name": "react-native-restart-newarch", + "fullName": "ahmedawaad1804/react-native-restart-newarch", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "Restart the app for new architecture", + "topics": [ + "restart", + "restart-newarch", + "newarch", + "android", + "ios" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npmPkg": "react-native-restart-newarch", + "npm": { + "downloads": 18260, + "weekDownloads": 3465, + "size": 21457, + "latestRelease": "1.0.82", + "latestReleaseDate": "2025-10-05T08:11:23.196Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.089, + "topicSearchString": "restart restart-newarch newarch android ios" + }, + { + "githubUrl": "https://github.com/roeycohen/react-native-mdm-config", + "examples": [ + "https://github.com/roeycohen/react-native-mdm-config/tree/main/example" + ], + "ios": true, + "android": true, + "github": { + "urls": { + "repo": "https://github.com/roeycohen/react-native-mdm-config", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-05T16:50:39Z", + "createdAt": "2025-09-22T10:42:35Z", + "pushedAt": "2025-10-05T16:50:39Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 1, + "dependencies": 0 + }, + "name": "react-native-mdm-config", + "fullName": "roeycohen/react-native-mdm-config", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "Simplest react-native library for accessing application configurations received from MDM", + "topics": [ + "ios", + "android", + "mdm" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npmPkg": "react-native-mdm-config", + "npm": { + "downloads": 169, + "weekDownloads": 0, + "size": 14443, + "latestRelease": "1.0.1", + "latestReleaseDate": "2025-10-05T16:58:53.884Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "ios android mdm" + }, + { + "githubUrl": "https://github.com/ebrimasamba/react-native-sms-retriever", + "npmPkg": "@ebrimasamba/react-native-sms-retriever", + "examples": [ + "https://github.com/ebrimasamba/react-native-sms-retriever/tree/main/example" + ], + "android": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/ebrimasamba/react-native-sms-retriever", + "homepage": "https://www.npmjs.com/package/@ebrimasamba/react-native-sms-retriever" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-12T21:38:40Z", + "createdAt": "2025-10-01T19:05:03Z", + "pushedAt": "2025-10-12T21:38:40Z", + "forks": 0, + "issues": 0, + "subscribers": 1, + "stars": 8, + "dependencies": 0 + }, + "name": "@ebrimasamba/react-native-sms-retriever", + "fullName": "ebrimasamba/react-native-sms-retriever", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "A React Native library for automatically retrieving otp from sms", + "topics": [ + "android", + "sms", + "otp", + "sms-retriever", + "turbo-module", + "otp-verification", + "library" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npm": { + "downloads": 2521, + "weekDownloads": 0, + "size": 47981, + "latestRelease": "2.1.0", + "latestReleaseDate": "2025-10-12T21:39:54.906Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "android sms otp sms-retriever turbo-module otp-verification library" + }, + { + "githubUrl": "https://github.com/huytdps13400/react-native-ssl-manager", + "examples": [ + "https://github.com/huytdps13400/react-native-ssl-manager/tree/main/example", + "https://github.com/huytdps13400/react-native-ssl-manager/tree/main/example-expo" + ], + "android": true, + "ios": true, + "newArchitecture": true, + "configPlugin": true, + "github": { + "urls": { + "repo": "https://github.com/huytdps13400/react-native-ssl-manager", + "homepage": "https://www.npmjs.com/package/react-native-ssl-manager" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-09-03T10:24:24Z", + "createdAt": "2024-08-09T06:26:11Z", + "pushedAt": "2025-09-03T10:24:24Z", + "forks": 2, + "issues": 0, + "subscribers": 1, + "stars": 30, + "dependencies": 2 + }, + "name": "react-native-ssl-manager", + "fullName": "huytdps13400/react-native-ssl-manager", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "React Native SSL Pinning provides seamless SSL certificate pinning integration for enhanced network security in React Native apps. This module enables developers to easily implement and manage certificate pinning, protecting applications against man-in-the-middle (MITM) attacks. With dynamic configuration options and the ability to toggle SSL ", + "topics": [ + "ios", + "android", + "expo", + "bun", + "ssl-pinning", + "security", + "certificate-pinning" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" + }, + "npmPkg": "react-native-ssl-manager", + "npm": { + "downloads": 95, + "weekDownloads": 14, + "size": 77333, + "latestRelease": "1.0.2", + "latestReleaseDate": "2025-09-03T10:25:11.212Z" + }, + "score": 46, + "matchingScoreModifiers": [], + "popularity": -0.623, + "topicSearchString": "ios android expo bun ssl-pinning security certificate-pinning" + }, + { + "githubUrl": "https://github.com/huytdps13400/react-native-sms-retriever-nitro-module", + "npmPkg": "@huymobile/react-native-sms-retriever-nitro-module", + "examples": [ + "https://github.com/huytdps13400/react-native-sms-retriever-nitro-module/tree/main/example" + ], + "android": true, + "newArchitecture": true, + "configPlugin": true, + "github": { + "urls": { + "repo": "https://github.com/huytdps13400/react-native-sms-retriever-nitro-module", + "homepage": "https://www.npmjs.com/package/@huymobile/react-native-sms-retriever-nitro-module" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-07T09:44:26Z", + "createdAt": "2025-10-06T09:29:53Z", + "pushedAt": "2025-10-07T09:44:26Z", + "forks": 0, + "issues": 0, + "subscribers": 2, + "stars": 38, + "dependencies": 0 + }, + "name": "@huymobile/react-native-sms-retriever-nitro-module", + "fullName": "huytdps13400/react-native-sms-retriever-nitro-module", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "A react native android sms retriever api library with Nitro module support for new architecture, old architecture, Nitro module, and Expo compatibility", + "topics": [ + "android", + "sms", + "otp", + "sms-retriever", + "turbo-module", + "nitro-module", + "expo", + "new-architecture", + "old-architecture", + "sms-retriever-nitro", + "sms-android", + "one-time-password", + "one-time-password-nitro", + "one-time-password-expo", + "one-time-password-new-architecture", + "one-time-password-old-architecture", + "one-time-password-android", + "one-time-password-ios", + "one-time-password-web", + "bun", + "sms-listener", + "nitro", + "nitromodule" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "nitro" + }, + "npm": { + "downloads": 143, + "weekDownloads": 0, + "size": 81039, + "latestRelease": "1.0.0", + "latestReleaseDate": "2025-10-06T20:20:40.160Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "android sms otp sms-retriever turbo-module nitro-module expo new-architecture old-architecture sms-retriever-nitro sms-android one-time-password one-time-password-nitro one-time-password-expo one-time-password-new-architecture one-time-password-old-architecture one-time-password-android one-time-password-ios one-time-password-web bun sms-listener nitro nitromodule" + }, + { + "githubUrl": "https://github.com/coolsoftwaretyler/cool-pdf", + "npmPkg": "@coolsoftwaretyler/cool-pdf", + "examples": [ + "https://github.com/coolsoftwaretyler/cool-pdf/tree/main/example" + ], + "android": true, + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/coolsoftwaretyler/cool-pdf", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-06T01:42:37Z", + "createdAt": "2025-10-03T01:20:06Z", + "pushedAt": "2025-10-06T01:42:37Z", + "forks": 1, + "issues": 1, + "subscribers": 1, + "stars": 17, + "dependencies": 0 + }, + "name": "@coolsoftwaretyler/cool-pdf", + "fullName": "coolsoftwaretyler/cool-pdf", + "isPrivate": false, + "description": "PDF View Component for Expo", + "topics": [ + "expo", + "cool-pdf", + "coolpdf", + "pdf", + "pdf-viewer", + "pdf-renderer", + "pdf-viewer-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": 940, + "weekDownloads": 0, + "size": 115770, + "latestRelease": "0.1.10", + "latestReleaseDate": "2025-10-06T01:42:46.087Z" + }, + "score": 49, + "matchingScoreModifiers": [ + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": -1, + "topicSearchString": "expo cool-pdf coolpdf pdf pdf-viewer pdf-renderer pdf-viewer-expo" + }, + { + "githubUrl": "https://github.com/heroui-inc/heroui-native", + "examples": [ + "https://github.com/heroui-inc/heroui-native/tree/alpha/example" + ], + "android": true, + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/heroui-inc/heroui-native", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": true, + "hasTopics": true, + "updatedAt": "2025-10-21T14:53:40Z", + "createdAt": "2025-06-03T15:21:45Z", + "pushedAt": "2025-10-21T14:53:40Z", + "forks": 42, + "issues": 1, + "subscribers": 12, + "stars": 936, + "dependencies": 0 + }, + "name": "heroui-native", + "fullName": "heroui-inc/heroui-native", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "📱Beautiful, fast and modern React Native UI library", + "topics": [ + "ios", + "android", + "hero-ui", + "library", + "nativewind", + "design-system", + "expo", + "heroui", + "ui-components" + ], + "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": "heroui-native", + "npm": { + "downloads": 4497, + "weekDownloads": 764, + "size": 2438149, + "latestRelease": "1.0.0-alpha.15", + "latestReleaseDate": "2025-10-15T13:21:12.194Z" + }, + "score": 73, + "matchingScoreModifiers": [ + "Popular", + "Known", + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": 0.144, + "topicSearchString": "ios android hero-ui library nativewind design-system expo heroui ui-components" + }, + { + "githubUrl": "https://github.com/GG11HEDR/react-native-google-places-textinput", + "android": true, + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/GG11HEDR/react-native-google-places-textinput", + "homepage": null + }, + "stats": { + "hasIssues": false, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-21T11:01:47Z", + "createdAt": "2025-03-30T00:54:38Z", + "pushedAt": "2025-10-21T11:01:47Z", + "forks": 0, + "issues": 0, + "subscribers": 1, + "stars": 5, + "dependencies": 0 + }, + "name": "react-native-google-places-textinput", + "fullName": "GG11HEDR/react-native-google-places-textinput", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "A customizable React Native Google Places autocomplete TextInput component [using the NEW Places API]", + "topics": [ + "ios", + "android", + "autocomplete", + "autocompletion", + "geocode", + "google", + "google-api", + "places", + "places-api", + "textinput" + ], + "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-google-places-textinput", + "npm": { + "downloads": 13180, + "weekDownloads": 2804, + "size": 90864, + "latestRelease": "0.8.0", + "latestReleaseDate": "2025-07-09T20:49:38.314Z" + }, + "score": 49, + "matchingScoreModifiers": [ + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": -0.069, + "topicSearchString": "ios android autocomplete autocompletion geocode google google-api places places-api textinput" + }, + { + "githubUrl": "https://github.com/DanielAraldi/react-native-blur-view", + "npmPkg": "@danielsaraldi/react-native-blur-view", + "android": true, + "ios": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/DanielAraldi/react-native-blur-view", + "homepage": "https://www.npmjs.com/package/@danielsaraldi/react-native-blur-view" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": true, + "hasTopics": true, + "updatedAt": "2025-10-08T12:24:08Z", + "createdAt": "2025-05-09T17:45:25Z", + "pushedAt": "2025-10-08T12:24:08Z", + "forks": 2, + "issues": 0, + "subscribers": 1, + "stars": 28, + "dependencies": 0 + }, + "name": "@danielsaraldi/react-native-blur-view", + "fullName": "DanielAraldi/react-native-blur-view", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "A simple Blur library for React Native ⚛️🌫️.", + "topics": [ + "ios", + "android", + "blur", + "blur-view", + "blurview" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npm": { + "downloads": 1199, + "weekDownloads": 219, + "size": 53895, + "latestRelease": "0.8.0", + "latestReleaseDate": "2025-10-08T12:24:16.887Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": 0.155, + "topicSearchString": "ios android blur blur-view blurview" + }, + { + "githubUrl": "https://github.com/furkananter/react-native-shimmer-text", + "android": true, + "ios": true, + "web": true, + "github": { + "urls": { + "repo": "https://github.com/furkananter/react-native-shimmer-text", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-09-14T19:28:12Z", + "createdAt": "2025-09-14T10:47:01Z", + "pushedAt": "2025-09-14T19:28:12Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 54, + "dependencies": 0 + }, + "name": "react-native-shimmer-text", + "fullName": "furkananter/react-native-shimmer-text", + "isPrivate": false, + "description": "Lightweight, customizable shimmer text effect for React Native apps", + "topics": [ + "expo", + "shimmer", + "text", + "ios", + "android", + "web" + ], + "license": { + "name": "MIT License", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz", + "key": "mit", + "spdxId": "MIT" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npmPkg": "react-native-shimmer-text", + "npm": { + "downloads": 2105, + "weekDownloads": 163, + "size": 85212, + "latestRelease": "0.1.4", + "latestReleaseDate": "2025-09-14T19:25:07.660Z" + }, + "score": 43, + "matchingScoreModifiers": [ + "Not supporting New Architecture" + ], + "popularity": 0.066, + "topicSearchString": "expo shimmer text ios android web" + }, + { + "githubUrl": "https://github.com/avas-app/react-native-android-otp-autofill", + "npmPkg": "@avasapp/react-native-otp-autofill", + "example": [ + "https://github.com/avas-app/react-native-android-otp-autofill/tree/main/example" + ], + "ios": true, + "android": true, + "newArchitecture": true, + "alternatives": [ + "react-native-otp-verify" + ], + "github": { + "urls": { + "repo": "https://github.com/avas-app/react-native-android-otp-autofill", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-08T08:07:17Z", + "createdAt": "2025-07-28T07:24:39Z", + "pushedAt": "2025-10-08T08:07:17Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 1, + "dependencies": 0 + }, + "name": "@avasapp/react-native-otp-autofill", + "fullName": "avas-app/react-native-android-otp-autofill", + "isPrivate": false, + "description": "Automatic SMS Verification / AutoFill for Android with the SMS Retriever API. Implemented with Expo Modules for React Native Applications.", + "topics": [ + "expo", + "otp-autofill", + "avasotpautofill", + "expo-modules", + "otp-verification", + "android", + "autofill" + ], + "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": 256, + "weekDownloads": 23, + "size": 392687, + "latestRelease": "1.0.2", + "latestReleaseDate": "2025-08-11T08:52:05.979Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.923, + "topicSearchString": "expo otp-autofill avasotpautofill expo-modules otp-verification android autofill" + }, + { + "githubUrl": "https://github.com/appwrite/sdk-for-react-native", + "npmPkg": "react-native-appwrite", + "android": true, + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/appwrite/sdk-for-react-native", + "homepage": "https://appwrite.io" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-09T11:03:30Z", + "createdAt": "2024-03-07T07:40:59Z", + "pushedAt": "2025-10-09T11:03:30Z", + "forks": 34, + "issues": 2, + "subscribers": 13, + "stars": 4315, + "dependencies": 2 + }, + "name": "react-native-appwrite", + "fullName": "appwrite/sdk-for-react-native", + "isPrivate": false, + "description": "[READ ONLY] Official Appwrite React Native SDK 💙 ⚛︎", + "topics": [ + "appwrite", + "baas", + "javascript", + "typescript" + ], + "license": { + "key": "bsd-3-clause", + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "spdxId": "BSD-3-Clause", + "url": "http://choosealicense.com/licenses/bsd-3-clause/", + "id": "MDc6TGljZW5zZTU=" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npm": { + "downloads": 18311, + "weekDownloads": 4350, + "size": 2442926, + "latestRelease": "0.17.1", + "latestReleaseDate": "2025-10-09T11:07:37.670Z" + }, + "score": 73, + "matchingScoreModifiers": [ + "Popular", + "Known", + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": 0.202, + "topicSearchString": "appwrite baas javascript 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", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-08T02:42:10Z", + "createdAt": "2025-07-02T17:42:16Z", + "pushedAt": "2025-10-08T02:42:10Z", + "forks": 1, + "issues": 0, + "subscribers": 0, + "stars": 4, + "dependencies": 1 + }, + "name": "react-native-deepgram", + "fullName": "itsRares/react-native-deepgram", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "Brings Deepgram's capabilities to React Native applications, with a focus on performance and ease of use.", + "topics": [ + "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" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": false, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "expo" + }, + "npmPkg": "react-native-deepgram", + "npm": { + "downloads": 579, + "weekDownloads": 4, + "size": 1298016, + "latestRelease": "1.0.4", + "latestReleaseDate": "2025-10-08T02:43:02.099Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.994, + "topicSearchString": "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" + }, + { + "githubUrl": "https://github.com/ursnj/nayan-ui/tree/main/packages/react-native", + "npmPkg": "@nayan-ui/react-native", + "android": true, + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/ursnj/nayan-ui", + "homepage": "https://www.nayanui.com" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-07T17:46:24Z", + "createdAt": "2025-07-24T07:18:07Z", + "pushedAt": "2025-10-07T17:46:24Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 3, + "dependencies": 28 + }, + "name": "@nayan-ui/react-native", + "fullName": "ursnj/nayan-ui", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "React Native Component Library for smooth and faster mobile application development.", + "topics": [ + "ios", + "android", + "component-library", + "reusable-components", + "nayan-ui" + ], + "license": { + "name": "MIT License", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz", + "key": "mit", + "spdxId": "MIT" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npm": { + "downloads": 389, + "weekDownloads": 12, + "size": 709633, + "latestRelease": "1.0.0-beta.24", + "latestReleaseDate": "2025-10-07T17:45:58.356Z" + }, + "score": 49, + "matchingScoreModifiers": [ + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": -0.974, + "topicSearchString": "ios android component-library reusable-components nayan-ui" + }, + { + "githubUrl": "https://github.com/sharathchandramg/react-native-formo", + "npmPkg": "react-native-form0", + "android": true, + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/sharathchandramg/react-native-formo", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-12T12:34:13Z", + "createdAt": "2018-10-27T18:21:15Z", + "pushedAt": "2025-10-12T12:34:13Z", + "forks": 6, + "issues": 0, + "subscribers": 5, + "stars": 16, + "dependencies": 1 + }, + "name": "react-native-form0", + "fullName": "sharathchandramg/react-native-formo", + "isPrivate": false, + "description": "Build model based simple forms for React Native ", + "topics": [ + "form-builder", + "form-generator", + "model-based-design", + "form", + "forms" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": false, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false + }, + "npm": { + "downloads": 1397, + "weekDownloads": 120, + "size": 628571, + "latestRelease": "0.0.205", + "latestReleaseDate": "2025-10-12T12:39:56.786Z" + }, + "score": 49, + "matchingScoreModifiers": [ + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": -0.177, + "topicSearchString": "form-builder form-generator model-based-design form forms" + }, + { + "githubUrl": "https://github.com/Gautham495/react-native-play-age-range-declaration", + "examples": [ + "https://github.com/Gautham495/react-native-play-age-range-declaration/tree/main/example" + ], + "android": true, + "ios": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/Gautham495/react-native-play-age-range-declaration", + "homepage": "https://www.npmjs.com/package/react-native-play-age-signals" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-14T21:17:33Z", + "createdAt": "2025-10-10T06:27:09Z", + "pushedAt": "2025-10-14T21:17:33Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 4, + "dependencies": 0 + }, + "name": "react-native-play-age-range-declaration", + "fullName": "Gautham495/react-native-play-age-range-declaration", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "React Native Nitro Module to access Google Play's Age Signals API & Apple's Declared Age Range API - Alpha", + "topics": [ + "ios", + "android", + "new-architecture", + "turbomodules", + "play-age-signals" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" + }, + "npmPkg": "react-native-play-age-range-declaration", + "npm": { + "downloads": 148, + "weekDownloads": 0, + "size": 27207, + "latestRelease": "1.1.5", + "latestReleaseDate": "2025-10-14T21:17:40.578Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "ios android new-architecture turbomodules play-age-signals" + }, + { + "githubUrl": "https://github.com/rafalmeida73/heart-switch-react-native", + "examples": [ + "https://snack.expo.dev/@rafalmeida73/heart-switch-react-native", + "https://github.com/rafalmeida73/heart-switch-react-native/tree/main/example" + ], + "images": [ + "https://raw.githubusercontent.com/rafalmeida73/heart-switch-react-native/main/ios.gif" + ], + "ios": true, + "android": true, + "web": true, + "expoGo": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/rafalmeida73/heart-switch-react-native", + "homepage": "https://snack.expo.dev/@rafalmeida73/heart-switch-react-native" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-15T20:06:22Z", + "createdAt": "2025-10-10T14:59:43Z", + "pushedAt": "2025-10-15T20:06:22Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 1, + "dependencies": 0 + }, + "name": "heart-switch-react-native", + "fullName": "rafalmeida73/heart-switch-react-native", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "A heart-shaped toggle switch component for React Native", + "topics": [ + "expo", + "ios", + "android", + "animated", + "switch", + "reanimated", + "heart-switch", + "component", + "javascript", + "toggle", + "toggle-switch", + "typescript" + ], + "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": "heart-switch-react-native", + "npm": { + "downloads": 1513, + "weekDownloads": 0, + "size": 51452, + "latestRelease": "0.18.5", + "latestReleaseDate": "2025-10-15T20:06:41.395Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "expo ios android animated switch reanimated heart-switch component javascript toggle toggle-switch typescript" + }, + { + "githubUrl": "https://github.com/Gautham495/react-native-apns-kit", + "examples": [ + "https://github.com/Gautham495/react-native-apns-kit/tree/main/example" + ], + "ios": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/Gautham495/react-native-apns-kit", + "homepage": "https://www.npmjs.com/package/react-native-apns-kit" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-13T09:02:14Z", + "createdAt": "2025-10-10T06:37:27Z", + "pushedAt": "2025-10-13T09:02:14Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 1, + "dependencies": 0 + }, + "name": "react-native-apns-kit", + "fullName": "Gautham495/react-native-apns-kit", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "React Native module for iOS APNs permission and token management - Beta", + "topics": [ + "ios", + "android", + "apns" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npmPkg": "react-native-apns-kit", + "npm": { + "downloads": 231, + "weekDownloads": 0, + "size": 21956, + "latestRelease": "1.0.7", + "latestReleaseDate": "2025-10-13T09:02:23.834Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "ios android apns" + }, + { + "githubUrl": "https://github.com/Gautham495/react-native-app-attest", + "examples": [ + "https://github.com/Gautham495/react-native-app-attest/tree/main/example" + ], + "ios": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/Gautham495/react-native-app-attest", + "homepage": "https://www.npmjs.com/package/react-native-app-attest" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-13T09:02:12Z", + "createdAt": "2025-10-10T06:37:07Z", + "pushedAt": "2025-10-13T09:02:12Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 1, + "dependencies": 0 + }, + "name": "react-native-app-attest", + "fullName": "Gautham495/react-native-app-attest", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "React Native iOS App Attest wrapper for any iOS target (App, App Clip etc) - Beta", + "topics": [ + "ios", + "android", + "app-attest" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npmPkg": "react-native-app-attest", + "npm": { + "downloads": 517, + "weekDownloads": 0, + "size": 23717, + "latestRelease": "1.0.6", + "latestReleaseDate": "2025-10-13T09:02:20.246Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "ios android app-attest" + }, + { + "githubUrl": "https://github.com/anirudhabhurke/react-native-google-code-scanner-android", + "android": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/anirudhabhurke/react-native-google-code-scanner-android", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-12T11:43:51Z", + "createdAt": "2024-05-29T18:26:35Z", + "pushedAt": "2025-10-12T11:43:51Z", + "forks": 0, + "issues": 0, + "subscribers": 1, + "stars": 1, + "dependencies": 0 + }, + "name": "react-native-google-code-scanner-android", + "fullName": "anirudhabhurke/react-native-google-code-scanner-android", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "Google Code Scanner API (Android only) for react native", + "topics": [ + "ios", + "android" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npmPkg": "react-native-google-code-scanner-android", + "npm": { + "downloads": 601, + "weekDownloads": 45, + "size": 42099, + "latestRelease": "1.2.4", + "latestReleaseDate": "2025-10-12T11:43:50.492Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.936, + "topicSearchString": "ios android" + }, + { + "githubUrl": "https://github.com/pinpong/react-native-google-maps-plus", + "examples": [ + "https://github.com/pinpong/react-native-google-maps-plus/tree/main/example" + ], + "ios": true, + "android": true, + "newArchitecture": "new-arch-only", + "expoGo": true, + "configPlugin": true, + "github": { + "urls": { + "repo": "https://github.com/pinpong/react-native-google-maps-plus", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": true, + "hasTopics": true, + "updatedAt": "2025-10-21T03:35:53Z", + "createdAt": "2025-09-30T01:47:22Z", + "pushedAt": "2025-10-21T03:35:53Z", + "forks": 2, + "issues": 0, + "subscribers": 2, + "stars": 15, + "dependencies": 0 + }, + "name": "react-native-google-maps-plus", + "fullName": "pinpong/react-native-google-maps-plus", + "isPrivate": false, + "description": "React-native wrapper for android & IOS google maps sdk", + "topics": [ + "google-maps", + "google-maps-plus", + "google-maps-sdk", + "android", + "ios", + "maps", + "expo" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": true, + "moduleType": "nitro" + }, + "npmPkg": "react-native-google-maps-plus", + "npm": { + "downloads": 2629, + "weekDownloads": 0, + "size": 1090729, + "latestRelease": "1.6.1", + "latestReleaseDate": "2025-10-21T03:36:02.877Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "google-maps google-maps-plus google-maps-sdk android ios maps expo" + }, + { + "githubUrl": "https://github.com/MisterMunchkin/expo-video-thumbref", + "android": true, + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/MisterMunchkin/expo-video-thumbref", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-13T22:11:27Z", + "createdAt": "2025-10-11T12:38:15Z", + "pushedAt": "2025-10-13T22:11:27Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 1, + "dependencies": 1 + }, + "name": "expo-video-thumbref", + "fullName": "MisterMunchkin/expo-video-thumbref", + "isPrivate": false, + "description": "fork of expo-video-thumbnail for image references", + "topics": [ + "expo", + "expo-video-thumbnails", + "thumbnail", + "android", + "ios", + "video", + "image" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "expo" + }, + "npmPkg": "expo-video-thumbref", + "npm": { + "downloads": 85, + "weekDownloads": 0, + "size": 42441, + "latestRelease": "9.3.0", + "latestReleaseDate": "2025-10-11T12:52:34.147Z" + }, + "score": 49, + "matchingScoreModifiers": [ + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": -1, + "topicSearchString": "expo expo-video-thumbnails thumbnail android ios video image" + }, + { + "githubUrl": "https://github.com/zykeco/react-native-ble-nitro", + "examples": [ + "https://github.com/zykeco/react-native-ble-nitro/tree/main/example" + ], + "ios": true, + "android": true, + "newArchitecture": "new-arch-only", + "newArchitectureNote": "This library is built on top of Nitro Modules, which only supports new architecture and it's not compatible with the old architecture.", + "github": { + "urls": { + "repo": "https://github.com/zykeco/react-native-ble-nitro", + "homepage": "https://zykeband.com" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-16T19:29:25Z", + "createdAt": "2025-07-22T08:58:08Z", + "pushedAt": "2025-10-16T19:29:25Z", + "forks": 3, + "issues": 0, + "subscribers": 2, + "stars": 43, + "dependencies": 0 + }, + "name": "react-native-ble-nitro", + "fullName": "zykeco/react-native-ble-nitro", + "isPrivate": false, + "description": "A high-performance React Native BLE library built on Nitro Modules.", + "topics": [ + "bluetooth", + "ble", + "bluetooth-low-energy", + "nitro-modules", + "expo", + "ios", + "android", + "performance", + "nitro" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "nitro" + }, + "npmPkg": "react-native-ble-nitro", + "npm": { + "downloads": 720, + "weekDownloads": 25, + "size": 551531, + "latestRelease": "1.8.0", + "latestReleaseDate": "2025-10-16T11:47:15.510Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.72, + "topicSearchString": "bluetooth ble bluetooth-low-energy nitro-modules expo ios android performance nitro" + }, + { + "githubUrl": "https://github.com/FFGlobal/expo-onboarding", + "web": true, + "expoGo": true, + "fireos": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/FFGlobal/expo-onboarding", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-17T00:39:26Z", + "createdAt": "2025-07-19T22:03:00Z", + "pushedAt": "2025-10-17T00:39:26Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 4, + "dependencies": 0 + }, + "name": "expo-onboarding", + "fullName": "FFGlobal/expo-onboarding", + "isPrivate": false, + "description": "Dead simple onboarding for your React Native/Expo app.", + "topics": [ + "expo", + "onboarding", + "onboarding-screen", + "onboard" + ], + "license": { + "name": "MIT License", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz", + "key": "mit", + "spdxId": "MIT" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false, + "moduleType": "expo" + }, + "npmPkg": "expo-onboarding", + "npm": { + "downloads": 268, + "weekDownloads": 2, + "size": 85181, + "latestRelease": "1.1.2", + "latestReleaseDate": "2025-10-17T00:39:01.934Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.994, + "topicSearchString": "expo onboarding onboarding-screen onboard" + }, + { + "githubUrl": "https://github.com/Unistyles-OSS/uniwind/tree/main/packages/uniwind", + "examples": [ + "https://github.com/Unistyles-OSS/uniwind/tree/main/apps/expo-router", + "https://github.com/Unistyles-OSS/uniwind/tree/main/apps/expo-example", + "https://github.com/Unistyles-OSS/uniwind/tree/main/apps/bare" + ], + "ios": true, + "android": true, + "web": true, + "expoGo": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/Unistyles-OSS/uniwind", + "homepage": "https://uniwind.dev" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": true, + "hasTopics": true, + "updatedAt": "2025-10-21T09:12:10Z", + "createdAt": "2025-07-29T08:10:42Z", + "pushedAt": "2025-10-21T09:12:10Z", + "forks": 4, + "issues": 0, + "subscribers": 4, + "stars": 367, + "dependencies": 4 + }, + "name": "uniwind", + "fullName": "Unistyles-OSS/uniwind", + "isPrivate": false, + "description": "The fastest Tailwind bindings for React Native", + "topics": [ + "unistyles", + "unistyles", + "tailwind", + "tailwindcss", + "theme", + "style" + ], + "license": { + "name": "MIT License", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz", + "key": "mit", + "spdxId": "MIT" + }, + "hasTypes": false, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npmPkg": "uniwind", + "npm": { + "downloads": 2995, + "weekDownloads": 661, + "size": 492246, + "latestRelease": "1.0.0-rc.3", + "latestReleaseDate": "2025-10-21T09:12:35.859Z" + }, + "score": 59, + "matchingScoreModifiers": [ + "Known", + "Recently updated" + ], + "popularity": 0.188, + "topicSearchString": "unistyles unistyles tailwind tailwindcss theme style" + }, + { + "githubUrl": "https://github.com/LottieFiles/dotlottie-react-native", + "npmPkg": "@lottiefiles/dotlottie-react-native", + "examples": [ + "https://github.com/LottieFiles/dotlottie-react-native/tree/main/example" + ], + "ios": true, + "android": true, + "web": true, + "github": { + "urls": { + "repo": "https://github.com/LottieFiles/dotlottie-react-native", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-21T07:00:08Z", + "createdAt": "2024-08-05T15:00:47Z", + "pushedAt": "2025-10-21T07:00:08Z", + "forks": 5, + "issues": 2, + "subscribers": 4, + "stars": 18, + "dependencies": 1 + }, + "name": "@lottiefiles/dotlottie-react-native", + "fullName": "LottieFiles/dotlottie-react-native", + "isPrivate": false, + "description": "Official LottieFiles player for rendering Lottie and dotLottie animations in React Native", + "topics": [ + "ios", + "android", + "web", + "lottie", + "dotlottie", + "player", + "animation", + "lottie-android", + "lottie-ios" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": false, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npm": { + "downloads": 696, + "weekDownloads": 56, + "size": 201164, + "latestRelease": "0.6.1", + "latestReleaseDate": "2025-10-21T07:00:07.637Z" + }, + "score": 49, + "matchingScoreModifiers": [ + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": -0.931, + "topicSearchString": "ios android web lottie dotlottie player animation lottie-android lottie-ios" + }, + { + "githubUrl": "https://github.com/LegendApp/legend-motion", + "npmPkg": "@legendapp/motion", + "examples": [ + "https://github.com/LegendApp/legend-motion/tree/main/example" + ], + "android": true, + "ios": true, + "web": true, + "expoGo": true, + "newArchitecture": true, + "macos": true, + "windows": true, + "fireos": true, + "tvos": true, + "visionos": true, + "github": { + "urls": { + "repo": "https://github.com/LegendApp/legend-motion", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": true, + "hasTopics": true, + "updatedAt": "2025-10-17T10:53:34Z", + "createdAt": "2022-04-20T07:39:55Z", + "pushedAt": "2025-10-17T10:53:34Z", + "forks": 14, + "issues": 8, + "subscribers": 4, + "stars": 420, + "dependencies": 1 + }, + "name": "@legendapp/motion", + "fullName": "LegendApp/legend-motion", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "Legend Motion is a declarative animations library for React Native, to make it easy to transition between styles without needing to manage animations.", + "topics": [ + "animations", + "transitions", + "framer", + "motion", + "framer-motion" + ], + "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, + "moduleType": "expo" + }, + "npm": { + "downloads": 251738, + "weekDownloads": 57264, + "size": 241489, + "latestRelease": "2.5.3", + "latestReleaseDate": "2025-10-17T10:53:32.378Z" + }, + "score": 59, + "matchingScoreModifiers": [ + "Known", + "Recently updated" + ], + "popularity": 0.193, + "topicSearchString": "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": 757, + "issues": 463, + "subscribers": 108, + "stars": 8872, + "dependencies": 9 + }, + "name": "@atproto/oauth-client-expo", + "fullName": "bluesky-social/atproto", + "isPrivate": false, + "description": "ATPROTO OAuth client for Expo applications", + "topics": [ + "atproto", + "oauth", + "client", + "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": 97, + "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 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": [ + "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": 30, + "size": 1129748, + "latestRelease": "0.1.0", + "latestReleaseDate": "2025-08-09T13:48:49.691Z" + }, + "score": 43, + "matchingScoreModifiers": [ + "Not supporting New Architecture" + ], + "popularity": -0.664, + "topicSearchString": "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-21T12:22:43Z", + "createdAt": "2025-06-17T07:41:33Z", + "pushedAt": "2025-10-21T12:22:43Z", + "forks": 2, + "issues": 0, + "subscribers": 1, + "stars": 136, + "dependencies": 6 + }, + "name": "react-native-harness", + "fullName": "callstackincubator/react-native-harness", + "isPrivate": false, + "topics": [], + "license": { + "name": "MIT License", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz", + "key": "mit", + "spdxId": "MIT" + }, + "hasTypes": true, + "newArchitecture": false, + "isArchived": false, + "hasNativeCode": false, + "configPlugin": false + }, + "npmPkg": "react-native-harness", + "npm": { + "downloads": 1300, + "weekDownloads": 298, + "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.195, + "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": 13, + "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": [ + "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": 467, + "weekDownloads": 86, + "size": 112138, + "latestRelease": "1.2.3", + "latestReleaseDate": "2025-10-16T20:34:03.590Z" + }, + "score": 49, + "matchingScoreModifiers": [ + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": -0.842, + "topicSearchString": "ios android modal popup overlay reanimated gesture-handler animation swipe fade slide typescript performant lightweight javascript gesture" + }, + { + "githubUrl": "https://github.com/software-mansion-labs/react-native-detour", + "npmPkg": "@swmansion/react-native-detour", + "examples": [ + "https://github.com/software-mansion-labs/react-native-detour/tree/main/example" + ], + "android": true, + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/software-mansion-labs/react-native-detour", + "homepage": "https://docs.swmansion.com/detour/" + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-16T14:27:04Z", + "createdAt": "2025-08-28T10:06:54Z", + "pushedAt": "2025-10-16T14:27:04Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 13, + "dependencies": 0 + }, + "name": "@swmansion/react-native-detour", + "fullName": "software-mansion-labs/react-native-detour", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "SDK for handling deferred deep links", + "topics": [ + "ios", + "android", + "deep-linking", + "deferred-deep-link", + "reac" + ], + "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 + }, + "npm": { + "downloads": 340, + "weekDownloads": 72, + "size": 38456, + "latestRelease": "0.2.4", + "latestReleaseDate": "2025-10-16T09:36:54.793Z" + }, + "score": 49, + "matchingScoreModifiers": [ + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": -0.82, + "topicSearchString": "ios android deep-linking deferred-deep-link reac" + }, + { + "githubUrl": "https://github.com/rn-bridge/react-native-shortcuts", + "npmPkg": "@rn-bridge/react-native-shortcuts", + "examples": [ + "https://github.com/rn-bridge/react-native-shortcuts/tree/master/example" + ], + "android": true, + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/rn-bridge/react-native-shortcuts", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": false, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-18T07:00:19Z", + "createdAt": "2024-08-18T18:07:53Z", + "pushedAt": "2025-10-18T07:00:19Z", + "forks": 7, + "issues": 0, + "subscribers": 0, + "stars": 28, + "dependencies": 0 + }, + "name": "@rn-bridge/react-native-shortcuts", + "fullName": "rn-bridge/react-native-shortcuts", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "React native library for Android Shortcuts and iOS Quick Actions ", + "topics": [ + "ios", + "android", + "library", + "shortcuts", + "quick-actions", + "quick", + "quickactions" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npm": { + "downloads": 4862, + "weekDownloads": 1131, + "size": 70620, + "latestRelease": "1.0.6", + "latestReleaseDate": "2025-10-18T05:59:47.118Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": 0.198, + "topicSearchString": "ios android library shortcuts quick-actions quick quickactions" + }, + { + "githubUrl": "https://github.com/rn-bridge/react-native-geofencing", + "npmPkg": "@rn-bridge/react-native-geofencing", + "examples": [ + "https://github.com/rn-bridge/react-native-geofencing/tree/master/example" + ], + "android": true, + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/rn-bridge/react-native-geofencing", + "homepage": null + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-18T07:00:00Z", + "createdAt": "2024-08-16T05:51:48Z", + "pushedAt": "2025-10-18T07:00:00Z", + "forks": 5, + "issues": 3, + "subscribers": 0, + "stars": 11, + "dependencies": 0 + }, + "name": "@rn-bridge/react-native-geofencing", + "fullName": "rn-bridge/react-native-geofencing", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "Native modules to determine if a location is within defined geographical boundaries", + "topics": [ + "geofence", + "geofencing", + "library", + "ios", + "android" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npm": { + "downloads": 1364, + "weekDownloads": 362, + "size": 99543, + "latestRelease": "1.1.3", + "latestReleaseDate": "2025-09-12T05:50:23.757Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -0.024, + "topicSearchString": "geofence geofencing library ios android" + }, + { + "githubUrl": "https://github.com/relateddigital/react-native-related-digital/tree/master/sdk", + "npmPkg": "react-native-related-digital", + "examples": [ + "https://github.com/relateddigital/react-native-related-digital/tree/master/client" + ], + "android": true, + "ios": true, + "github": { + "urls": { + "repo": "https://github.com/relateddigital/react-native-related-digital", + "homepage": "https://github.com/relateddigital/react-native-related-digital#readme" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": false, + "updatedAt": "2025-10-17T12:23:54Z", + "createdAt": "2021-03-01T10:36:23Z", + "pushedAt": "2025-10-17T12:23:54Z", + "forks": 1, + "issues": 2, + "subscribers": 4, + "stars": 31, + "dependencies": 0 + }, + "name": "react-native-related-digital", + "fullName": "relateddigital/react-native-related-digital", + "isPrivate": false, + "description": "react-native-related-digital", + "topics": [], + "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 + }, + "npm": { + "downloads": 1122, + "weekDownloads": 89, + "size": 271858, + "latestRelease": "1.1.3", + "latestReleaseDate": "2025-10-17T12:24:27.506Z" + }, + "score": 49, + "matchingScoreModifiers": [ + "Recently updated", + "Not supporting New Architecture" + ], + "popularity": 0.067, + "topicSearchString": "" + }, + { + "githubUrl": "https://github.com/effx13/react-native-secure-view", + "npmPkg": "react-native-secure-view", + "examples": [ + "https://github.com/effx13/react-native-secure-view/tree/main/example" + ], + "ios": true, + "android": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/effx13/react-native-secure-view", + "homepage": "https://www.npmjs.com/package/react-native-secure-view" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-20T04:48:08Z", + "createdAt": "2025-08-08T05:42:12Z", + "pushedAt": "2025-10-20T04:48:08Z", + "forks": 0, + "issues": 0, + "subscribers": 0, + "stars": 2, + "dependencies": 0 + }, + "name": "react-native-secure-view", + "fullName": "effx13/react-native-secure-view", + "isPrivate": false, + "registry": "https://registry.npmjs.org/", + "description": "A React Native package for protecting content from screenshots on iOS and Android.", + "topics": [ + "ios", + "android" + ], + "license": { + "key": "mit", + "name": "MIT License", + "spdxId": "MIT", + "url": "http://choosealicense.com/licenses/mit/", + "id": "MDc6TGljZW5zZTEz" + }, + "hasTypes": true, + "newArchitecture": true, + "isArchived": false, + "hasNativeCode": true, + "configPlugin": false, + "moduleType": "turbo" + }, + "npm": { + "downloads": 529, + "weekDownloads": 0, + "size": 23912, + "latestRelease": "1.0.0", + "latestReleaseDate": "2025-10-20T04:48:07.700Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "ios android" + }, + { + "githubUrl": "https://github.com/alexrus28996/react-native-threadforge/tree/main/packages/react-native-threadforge", + "examples": [ + "https://github.com/alexrus28996/react-native-threadforge", + "https://snack.expo.dev/@alexrus28996/threadforge-demo" + ], + "images": [ + "https://raw.githubusercontent.com/alexrus28996/react-native-threadforge/main/docs/assets/threadforge-demo.gif" + ], + "ios": true, + "android": true, + "newArchitecture": true, + "github": { + "urls": { + "repo": "https://github.com/alexrus28996/react-native-threadforge", + "homepage": "https://github.com/alexrus28996/react-native-threadforge#readme" + }, + "stats": { + "hasIssues": true, + "hasWiki": true, + "hasSponsorships": false, + "hasDiscussions": false, + "hasTopics": true, + "updatedAt": "2025-10-21T14:21:10Z", + "createdAt": "2025-10-14T13:21:49Z", + "pushedAt": "2025-10-21T14:21:10Z", + "forks": 0, + "issues": 1, + "subscribers": 1, + "stars": 2, + "dependencies": 0 + }, + "name": "react-native-threadforge", + "fullName": "alexrus28996/react-native-threadforge", + "isPrivate": false, + "description": "React Native multithreading toolkit for executing JavaScript functions on background threads using a native C++ worker pool with Hermes and JSI compatibility.", + "topics": [ + "multithreading", + "background-threads", + "c++-worker-pool", + "performance", + "optimization", + "modules", + "threadforge" + ], + "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 + }, + "npmPkg": "react-native-threadforge", + "npm": { + "downloads": 736, + "weekDownloads": 0, + "size": 1007280, + "latestRelease": "1.1.8", + "latestReleaseDate": "2025-10-21T14:29:07.841Z" + }, + "score": 51, + "matchingScoreModifiers": [ + "Recently updated" + ], + "popularity": -1, + "topicSearchString": "multithreading background-threads c++-worker-pool performance optimization modules threadforge" + } + ], + "topics": { + "ios": 1006, + "android": 983, + "component": 387, + "expo": 290, + "typescript": 138, + "javascript": 94, + "web": 91, + "ui": 76, + "mobile": 75, + "hacktoberfest": 66, + "image": 58, + "animation": 58, + "reanimated": 56, + "picker": 51, + "library": 50, + "navigation": 43, + "reactnative": 40, + "modal": 39, + "svg": 35, + "video": 31, + "reactjs": 31, + "components": 31, + "animated": 31, + "rn": 28, + "slider": 27, + "hooks": 26, + "windows": 26, + "material-design": 25, + "cross-platform": 25, + "module": 25, + "material": 24, + "flatlist": 24, + "select": 24, + "firebase": 24, + "authentication": 24, + "audio": 24, + "nitro": 24, + "view": 23, + "calendar": 23, + "input": 23, + "swipe": 22, + "redux": 21, + "dropdown": 21, + "swift": 21, + "jsi": 21, + "sdk": 20, + "scrollview": 20, + "toast": 19, + "notifications": 19, + "apple": 19, + "keyboard": 19, + "maps": 19, + "text": 19, + "alert": 19, + "performance": 19, + "auth": 18, + "icons": 17, + "responsive": 17, + "carousel": 16, + "swiper": 16, + "form": 16, + "popup": 16, + "textinput": 16, + "chart": 16, + "scroll": 16, + "loading": 16, + "notification": 16, + "camera": 15, + "css": 15, + "localization": 15, + "customizable": 15, + "state": 15, + "button": 14, + "listview": 14, + "card": 14, + "background": 14, + "network": 14, + "gesture": 14, + "kotlin": 14, + "player": 14, + "bottom-sheet": 14, + "gesture-handler": 14, + "bar": 13, + "bootstrap": 13, + "java": 13, + "ui-components": 13, + "gallery": 13, + "analytics": 13, + "fetch": 13, + "storage": 13, + "sqlite": 13, + "macos": 13, + "fast": 13, + "grid": 12, + "push": 12, + "browser": 12, + "location": 12, + "i18n": 12, + "upload": 12, + "download": 12, + "webrtc": 12, + "barcode": 12, + "security": 12, + "new-architecture": 12, + "loader": 11, + "charts": 11, + "tabs": 11, + "style": 11, + "pdf": 11, + "push-notifications": 11, + "bluetooth": 11, + "spinner": 11, + "http": 11, + "pinch-to-zoom": 11, + "theme": 11, + "icon": 11, + "gradient": 11, + "crypto": 11, + "animations": 11, + "rudder": 11, + "file": 10, + "gl": 10, + "menu": 10, + "asyncstorage": 10, + "font": 10, + "objective-c": 10, + "screen": 10, + "dialog": 10, + "tab": 10, + "progress": 10, + "text-input": 10, + "list": 10, + "popover": 10, + "fabric": 10, + "pinch": 10, + "internationalization": 10, + "design": 10, + "zoom": 10, + "placeholder": 10, + "sheet": 10, + "skia": 10, + "otp": 10, + "photo": 9, + "api": 9, + "validation": 9, + "drawer": 9, + "layout": 9, + "simple": 9, + "time": 9, + "images": 9, + "date": 9, + "scanner": 9, + "checkbox": 9, + "google": 9, + "webview": 9, + "immutable": 9, + "blur": 9, + "oauth": 9, + "testing": 9, + "database": 9, + "qrcode": 9, + "fs": 9, + "npm": 9, + "media": 9, + "boilerplate": 9, + "reanimated2": 9, + "ui-component": 9, + "nitro-modules": 9, + "opengl": 8, + "crop": 8, + "facebook": 8, + "events": 8, + "ui-kit": 8, + "map": 8, + "scrollable": 8, + "parallax": 8, + "autocomplete": 8, + "utility": 8, + "drag": 8, + "html": 8, + "link": 8, + "url": 8, + "navbar": 8, + "datepicker": 8, + "emoji": 8, + "markdown": 8, + "sms": 8, + "screenshot": 8, + "navigation-bar": 8, + "config": 8, + "cli": 8, + "payments": 8, + "canvas": 8, + "music": 8, + "accessibility": 8, + "video-player": 8, + "qr-code": 8, + "ai": 8, + "ui-library": 8, + "cpp": 8, + "error": 7, + "multiple": 7, + "splash-screen": 7, + "splashscreen": 7, + "splash": 7, + "search": 7, + "cache": 7, + "mask": 7, + "tabbar": 7, + "forms": 7, + "styles": 7, + "orientation": 7, + "mobile-app": 7, + "pager": 7, + "timer": 7, + "bridge": 7, + "ble": 7, + "indicator": 7, + "app": 7, + "intro": 7, + "modules": 7, + "device": 7, + "stripe": 7, + "tooltip": 7, + "l10n": 7, + "datetime": 7, + "onboarding": 7, + "tutorial": 7, + "fingerprint": 7, + "async-storage": 7, + "bundle": 7, + "template": 7, + "code-push": 7, + "elements": 7, + "skeleton": 7, + "tvos": 7, + "tailwind": 7, + "shadow": 7, + "ui-lib": 7, + "state-management": 7, + "lightweight": 7, + "turbo-module": 7, + "scandit": 7, + "custom": 6, + "debugging": 6, + "logging": 6, + "launch-screen": 6, + "a11y": 6, + "tableview": 6, + "bottom": 6, + "viewpager": 6, + "viewer": 6, + "login": 6, + "tracking": 6, + "xcode": 6, + "infinite": 6, + "cards": 6, + "twitter": 6, + "lightbox": 6, + "image-gallery": 6, + "graphs": 6, + "country": 6, + "status-bar": 6, + "phone": 6, + "speech": 6, + "bottomsheet": 6, + "collapsible": 6, + "ux": 6, + "fontawesome": 6, + "snackbar": 6, + "instagram": 6, + "haptics": 6, + "geolocation": 6, + "store": 6, + "wifi": 6, + "generator": 6, + "promise": 6, + "swipeable": 6, + "color": 6, + "chat": 6, + "image-viewer": 6, + "polyfill": 6, + "rating": 6, + "js": 6, + "codepush": 6, + "sectionlist": 6, + "gps": 6, + "wheel": 6, + "nodejs": 6, + "tailwindcss": 6, + "async": 6, + "graph": 6, + "vector": 5, + "segmented-control": 5, + "launchscreen": 5, + "feedback": 5, + "event": 5, + "component-library": 5, + "signature": 5, + "multiselect": 5, + "navigator": 5, + "google-maps": 5, + "floating": 5, + "circle": 5, + "scrolling": 5, + "stack": 5, + "deck": 5, + "tinder": 5, + "infinite-scroll": 5, + "share": 5, + "intent": 5, + "mobile-development": 5, + "email": 5, + "tab-bar": 5, + "payment": 5, + "accordion": 5, + "overlay": 5, + "message": 5, + "emoji-picker": 5, + "header": 5, + "uikit": 5, + "number": 5, + "healthkit": 5, + "contacts": 5, + "networking": 5, + "globalization": 5, + "styling": 5, + "router": 5, + "action-sheet": 5, + "gestures": 5, + "apple-pay": 5, + "realtime": 5, + "https": 5, + "filesystem": 5, + "actionsheet": 5, + "build": 5, + "oauth2": 5, + "draggable": 5, + "translation": 5, + "time-picker": 5, + "timepicker": 5, + "devtools": 5, + "voice": 5, + "app-store": 5, + "zoomable": 5, + "hook": 5, + "appstore": 5, + "iap": 5, + "in-app-purchase": 5, + "playstore": 5, + "review": 5, + "env": 5, + "code": 5, + "blob": 5, + "switch": 5, + "fitness": 5, + "youtube": 5, + "debugger": 5, + "qr": 5, + "node": 5, + "manager": 5, + "media-player": 5, + "phone-input": 5, + "encryption": 5, + "turbomodule": 5, + "paper": 5, + "dark-mode": 5, + "css-in-js": 5, + "version": 5, + "vision-camera": 5, + "interactive": 5, + "otp-verification": 5, + "llm": 5, + "console": 4, + "debug": 4, + "image-editor": 4, + "recording": 4, + "ads": 4, + "reporting": 4, + "bug-reporting": 4, + "drawing": 4, + "line": 4, + "declarative": 4, + "reactive": 4, + "multi-select": 4, + "listener": 4, + "fcm": 4, + "image-picker": 4, + "lottie": 4, + "mapview": 4, + "slide": 4, + "flexbox": 4, + "responsive-layout": 4, + "textfield": 4, + "label": 4, + "snap": 4, + "social": 4, + "credit-card": 4, + "progressbar": 4, + "linking": 4, + "nextjs": 4, + "photos": 4, + "flip": 4, + "styled-components": 4, + "country-picker": 4, + "parse": 4, + "deep-linking": 4, + "permissions": 4, + "capture": 4, + "health-kit": 4, + "viewport": 4, + "speech-to-text": 4, + "privacy": 4, + "stylesheet": 4, + "test": 4, + "scaling": 4, + "support": 4, + "toggle": 4, + "admob": 4, + "messaging": 4, + "crash": 4, + "query": 4, + "remote": 4, + "fonts": 4, + "document": 4, + "braintree": 4, + "google-play": 4, + "azure": 4, + "frontend": 4, + "npm-package": 4, + "graphics": 4, + "pdf-viewer": 4, + "date-picker": 4, + "datetimepicker": 4, + "offline": 4, + "offline-first": 4, + "avatar": 4, + "touchid": 4, + "faceid": 4, + "expo-web": 4, + "in-app": 4, + "selector": 4, + "tree": 4, + "double-tap": 4, + "axios": 4, + "speech-recognition": 4, + "dual-screen": 4, + "launch": 4, + "safe-area": 4, + "push-notification": 4, + "iphonex": 4, + "voip": 4, + "palette": 4, + "rate": 4, + "jest": 4, + "gif": 4, + "12factor": 4, + "exception": 4, + "transitions": 4, + "shimmer": 4, + "haptic-feedback": 4, + "mapbox": 4, + "focus": 4, + "masonry": 4, + "confirmation-code": 4, + "health": 4, + "expo-plugin": 4, + "plugin": 4, + "touch-id": 4, + "marquee": 4, + "image-zoom": 4, + "responsive-ui": 4, + "sortable": 4, + "one-time-password": 4, + "cryptography": 4, + "shortcuts": 4, + "flex": 4, + "storybook": 4, + "screen-capture": 4, + "totp": 4, + "c++": 4, + "utilities": 4, + "classes": 4, + "wrapper": 4, + "context": 4, + "compression": 4, + "app-icon": 4, + "edge-to-edge": 4, + "passkey": 4, + "jwt": 4, + "wallet": 4, + "editor": 4, + "reanimated3": 4, + "selection": 4, + "visualization": 4, + "hash": 4, + "otp-input": 4, + "highlight": 4, + "swiftui": 4, + "eas": 4, + "toastify": 4, + "ping": 4, + "mobile-ui": 4, + "reducer": 4, + "awesome": 4, + "logger": 3, + "vector-icons": 3, + "imageeditor": 3, + "segmentedcontrolios": 3, + "step": 3, + "keychain": 3, + "image-cache": 3, + "uitableview": 3, + "core": 3, + "multiline": 3, + "form-builder": 3, + "typography": 3, + "event-listener": 3, + "apns": 3, + "onesignal": 3, + "signin": 3, + "side-menu": 3, + "mapkit": 3, + "directions": 3, + "fade": 3, + "transition": 3, + "progress-view": 3, + "modals": 3, + "field": 3, + "backdrop": 3, + "clock": 3, + "items": 3, + "rtl": 3, + "net": 3, + "places": 3, + "cameraroll": 3, + "drop": 3, + "touch": 3, + "cell": 3, + "page": 3, + "links": 3, + "check": 3, + "dismiss": 3, + "art": 3, + "settings": 3, + "radio-buttons": 3, + "activity": 3, + "portal": 3, + "progress-bar": 3, + "sticky": 3, + "status": 3, + "flag": 3, + "badge": 3, + "pagination": 3, + "scroll-view": 3, + "parser": 3, + "statusbar": 3, + "calls": 3, + "safari": 3, + "gyroscope": 3, + "magnetometer": 3, + "geocoding": 3, + "digits": 3, + "horizontal": 3, + "vertical": 3, + "secure": 3, + "lan": 3, + "sensor": 3, + "language": 3, + "tools": 3, + "collapse": 3, + "detection": 3, + "functions": 3, + "firestore": 3, + "crashlytics": 3, + "bug": 3, + "ml": 3, + "text-recognition": 3, + "perf": 3, + "file-transfer": 3, + "base64": 3, + "zip": 3, + "bouncy": 3, + "environment": 3, + "dom": 3, + "walkthrough": 3, + "highlighting": 3, + "linear-gradient": 3, + "measure": 3, + "ruler": 3, + "file-system": 3, + "webgl": 3, + "videos": 3, + "sql": 3, + "task": 3, + "gaming": 3, + "thumbnail": 3, + "chrome-custom-tabs": 3, + "nested": 3, + "inline": 3, + "lazy": 3, + "icloud": 3, + "handler": 3, + "clipboard": 3, + "geofence": 3, + "geofencing": 3, + "help-center": 3, + "voice-recognition": 3, + "user-interface": 3, + "appearance": 3, + "photo-gallery": 3, + "video-streaming": 3, + "redux-middleware": 3, + "fit": 3, + "i18next": 3, + "ssr": 3, + "sound": 3, + "cached": 3, + "option": 3, + "subscriptions": 3, + "google-sign-in": 3, + "webp": 3, + "typing": 3, + "filestream": 3, + "image-header": 3, + "prompt": 3, + "rotate": 3, + "flip-card": 3, + "wheel-picker": 3, + "haptic": 3, + "flatlist-alternative": 3, + "60fps": 3, + "high-performance": 3, + "timeline": 3, + "preview": 3, + "code-input": 3, + "google-fit": 3, + "in-app-browser": 3, + "open-source": 3, + "dotenv": 3, + "gradle": 3, + "metadata": 3, + "mock": 3, + "qrcode-scanner": 3, + "barcode-scanner": 3, + "password": 3, + "face-id": 3, + "biometrics": 3, + "panel": 3, + "microphone": 3, + "countdown": 3, + "sse": 3, + "qrcode-generator": 3, + "play-store": 3, + "decoder": 3, + "mmkv": 3, + "freakycoder": 3, + "kuray": 3, + "utils": 3, + "development": 3, + "color-picker": 3, + "bottom-bar": 3, + "nsurlsession": 3, + "design-system": 3, + "framework": 3, + "2fa": 3, + "sharedpreferences": 3, + "vision": 3, + "worklet": 3, + "ssl": 3, + "ticker": 3, + "service": 3, + "image-processing": 3, + "toast-notifications": 3, + "eventemitter": 3, + "tags": 3, + "barcode-generator": 3, + "detector": 3, + "compress": 3, + "phone-number": 3, + "system-bar": 3, + "symbols": 3, + "passkeys": 3, + "passwordless": 3, + "svg-icons": 3, + "story": 3, + "share-extension": 3, + "visibility": 3, + "maestro": 3, + "web3": 3, + "random": 3, + "data-visualization": 3, + "metro": 3, + "pan": 3, + "customer-support": 3, + "volume": 3, + "dropdown-menu": 3, + "quick-actions": 3, + "home-screen": 3, + "libsodium": 3, + "sodium": 3, + "widget": 3, + "flux": 3, + "front-end": 3, + "middleware": 3, + "chatbot": 3, + "cropper": 3, + "ssl-pinning": 3, + "server": 3, + "jni": 3, + "package": 3, + "expo-modules": 3, + "braze": 3, + "segmentation": 3, + "management": 3, + "rneui": 3, + "themed": 3, + "ping-android": 3, + "cpf": 3, + "cnpj": 3, + "javascript-library": 3, + "nitrogen": 3, + "expo-module": 3, + "android-app": 3, + "immer": 3, + "classname": 3, + "classnames": 3, + "toast-notification": 3, + "turbo": 3, + "streaming": 3, + "update": 3, + "optimization": 3, + "translate": 3, + "local-llm": 3, + "compare": 3, + "google-api": 3, + "better-auth": 3, + "google-signin": 3, + "deep-equal": 3, + "zod": 3, + "drizzle": 3, + "ts": 3, + "sms-retriever": 3, + "colors": 2, + "namespace": 2, + "photo-editor": 2, + "photoeditor": 2, + "image-manipulation": 2, + "video-editor": 2, + "cropping": 2, + "khtwah": 2, + "dimensions": 2, + "redux-persist": 2, + "toaster": 2, + "units": 2, + "scale": 2, + "shake": 2, + "downloader": 2, + "reader": 2, + "resize": 2, + "attribution": 2, + "class-validator": 2, + "keychain-service": 2, + "keystore-service": 2, + "device-security": 2, + "keystore": 2, + "squircle": 2, + "smooth": 2, + "bug-reporter": 2, + "toolbar": 2, + "menubar": 2, + "form-generator": 2, + "subscription": 2, + "swipeview": 2, + "gcm": 2, + "onesignal-notifications": 2, + "mixpanel": 2, + "mixpanel-sdk": 2, + "pageview": 2, + "google-maps-api": 2, + "orientation-changes": 2, + "responsive-design": 2, + "universal": 2, + "animate": 2, + "es6": 2, + "box": 2, + "coverflow": 2, + "circular": 2, + "snapping": 2, + "flatlist-based": 2, + "parallax-effect": 2, + "tcp": 2, + "sockets": 2, + "uwp": 2, + "bluetooth-low-energy": 2, + "card.io": 2, + "credit": 2, + "scan": 2, + "google-places": 2, + "google-places-api": 2, + "bottom-navigation": 2, + "activityindicator": 2, + "introduction": 2, + "sort": 2, + "pie": 2, + "autolink": 2, + "hyperlink": 2, + "fuzzy-links": 2, + "swipeout": 2, + "action-button": 2, + "float-button": 2, + "multi-action-button": 2, + "info": 2, + "scrollview-component": 2, + "mentions": 2, + "hashtag": 2, + "chooser": 2, + "select-tag": 2, + "calendar-picker": 2, + "radio": 2, + "data-store": 2, + "uri": 2, + "alphabetlist": 2, + "smart": 2, + "md": 2, + "set": 2, + "virtualizedlist": 2, + "metrics": 2, + "deep": 2, + "awake": 2, + "lock": 2, + "sleep": 2, + "call": 2, + "show": 2, + "hide": 2, + "viewshot": 2, + "snapshot": 2, + "safari-view-controller": 2, + "firestack": 2, + "accelerometer": 2, + "addressbook": 2, + "background-jobs": 2, + "siri": 2, + "sms-listener": 2, + "android-library": 2, + "iphone": 2, + "reminders": 2, + "localstorage": 2, + "sync": 2, + "ab": 2, + "experiment": 2, + "variant": 2, + "pouchdb": 2, + "offlinefirst": 2, + "image-resizer": 2, + "easing": 2, + "pull-to-refresh": 2, + "cloud-firestore": 2, + "remote-config": 2, + "in-app-messaging": 2, + "machine-learning": 2, + "json": 2, + "font-awesome": 2, + "archive": 2, + "unzip": 2, + "batch": 2, + "deprecated": 2, + "drag-and-drop": 2, + "material-ui": 2, + "scheme": 2, + "ui-kitten": 2, + "higher-order-component": 2, + "hoc": 2, + "swiper-flatlist": 2, + "grid-view": 2, + "grid-layout": 2, + "i10n": 2, + "keyboard-accessory": 2, + "radial-gradient": 2, + "persistence": 2, + "rxjs": 2, + "db": 2, + "audio-player": 2, + "chromecast": 2, + "audio-library": 2, + "autocompletion": 2, + "apple-authentication": 2, + "asset": 2, + "brightness": 2, + "keep-awake": 2, + "mail": 2, + "expo-notifications": 2, + "game": 2, + "2d": 2, + "pixi": 2, + "print": 2, + "barometer": 2, + "reviews": 2, + "arkit": 2, + "threejs": 2, + "expo-video-thumbnails": 2, + "verification": 2, + "custom-tabs": 2, + "chrome": 2, + "sfsafariviewcontroller": 2, + "treeview": 2, + "split": 2, + "require": 2, + "ram": 2, + "ram-bundle": 2, + "google-drive": 2, + "persian-calendar": 2, + "month-picker": 2, + "persian": 2, + "jalaali": 2, + "double": 2, + "tap": 2, + "developer-tools": 2, + "eslint": 2, + "zendesk": 2, + "spinkit": 2, + "localize": 2, + "l20n": 2, + "updates": 2, + "community": 2, + "twilio": 2, + "callkit": 2, + "call-kit": 2, + "flipper": 2, + "aspect-ratio": 2, + "image-colors": 2, + "dominant": 2, + "messenger": 2, + "commonmark": 2, + "markdown-it": 2, + "scrollintoview": 2, + "into": 2, + "visible": 2, + "tablet": 2, + "amazon": 2, + "billing": 2, + "cocoapod": 2, + "fastimage": 2, + "priority": 2, + "glide": 2, + "google-login": 2, + "cloud": 2, + "count": 2, + "range": 2, + "seekbar": 2, + "mongodb": 2, + "aws": 2, + "tts": 2, + "text-to-speech": 2, + "config-var": 2, + "sqlite3": 2, + "wechat": 2, + "video-controls": 2, + "itunes": 2, + "apple-music": 2, + "ipad": 2, + "inapp": 2, + "syntax-highlighter": 2, + "md5": 2, + "star": 2, + "stars": 2, + "ratings": 2, + "shapes": 2, + "initials": 2, + "card-flip": 2, + "flip-animation": 2, + "recyclerview": 2, + "mapbox-gl": 2, + "large-list": 2, + "pinterest": 2, + "masonry-layout": 2, + "schedule": 2, + "joyride": 2, + "copilot": 2, + "intro.js": 2, + "sketch": 2, + "draw": 2, + "mobile-apps": 2, + "height": 2, + "precompute": 2, + "block": 2, + "quicklook": 2, + "fontsize": 2, + "font-size": 2, + "git": 2, + "github": 2, + "size": 2, + "hypertext": 2, + "geometry": 2, + "polygon": 2, + "fused": 2, + "sentry": 2, + "pin-code": 2, + "confirmation-code-input": 2, + "pin-code-input": 2, + "authenticate": 2, + "interceptor": 2, + "babel": 2, + "environment-variables": 2, + "track": 2, + "rng": 2, + "radial": 2, + "border": 2, + "dx-sdk": 2, + "restart": 2, + "responsive-view": 2, + "responsive-screen": 2, + "pincode": 2, + "pin": 2, + "table": 2, + "integration": 2, + "card-view": 2, + "shadow-view": 2, + "shadowview": 2, + "maplibre": 2, + "cluster": 2, + "clustering": 2, + "apple-watch": 2, + "large-files": 2, + "google-nearby": 2, + "broadcast": 2, + "font-face": 2, + "bottom-drawer": 2, + "youtube-iframe": 2, + "iframe": 2, + "youtube-player": 2, + "use": 2, + "event-source": 2, + "video-calls": 2, + "conference-calls": 2, + "jwplayer": 2, + "mediaplayer": 2, + "jw": 2, + "emoji-keyboard": 2, + "telephone": 2, + "tel": 2, + "input-text": 2, + "international": 2, + "app-review": 2, + "in-app-review": 2, + "area-chart": 2, + "sass": 2, + "scss": 2, + "bounceable": 2, + "recorder": 2, + "screenrecord": 2, + "screen-recorder": 2, + "paypal": 2, + "checkout": 2, + "data-matrix": 2, + "qr-generator": 2, + "qr-decode": 2, + "calendar-view": 2, + "purchases": 2, + "auto": 2, + "electron": 2, + "spotify": 2, + "nitromodule": 2, + "processing": 2, + "edit": 2, + "navigation-bar-color": 2, + "popover-view": 2, + "uploadservice": 2, + "file-upload": 2, + "tor": 2, + "socks5": 2, + "streams": 2, + "proxy": 2, + "form-validation": 2, + "adobe": 2, + "adobe-experience-platform": 2, + "payment-request": 2, + "2-factor": 2, + "payment-intents": 2, + "tracker": 2, + "apple-health": 2, + "body": 2, + "userdefaults": 2, + "3d": 2, + "benchmark": 2, + "tls": 2, + "starter": 2, + "fast-image": 2, + "atomic-css": 2, + "background-task": 2, + "breeffy": 2, + "lifecycle": 2, + "big": 2, + "dark": 2, + "tint": 2, + "avoid-keyboard": 2, + "alipay": 2, + "realm": 2, + "local-first": 2, + "release": 2, + "production": 2, + "augmented-reality": 2, + "ar": 2, + "visualizer": 2, + "responsive-font-size": 2, + "responsive-dimensions": 2, + "curved": 2, + "giphy": 2, + "gifs": 2, + "shadows": 2, + "automatic": 2, + "new": 2, + "rails": 2, + "category": 2, + "compressor": 2, + "whatsapp": 2, + "video-metadata": 2, + "neumorphism": 2, + "inner-shadow": 2, + "alerts": 2, + "performant": 2, + "opencv": 2, + "buttons": 2, + "loading-indicator": 2, + "mlkit": 2, + "ocr": 2, + "lazy-loading": 2, + "system-bars": 2, + "sfsymbols": 2, + "material-you": 2, + "hashing": 2, + "address": 2, + "share-intent": 2, + "notifee": 2, + "numbers": 2, + "searchable": 2, + "leaflet": 2, + "slideshow": 2, + "wheelpicker": 2, + "crypto.getrandomvalues": 2, + "get-random-values": 2, + "getrandomvalues": 2, + "line-charts": 2, + "pie-chart": 2, + "donut-chart": 2, + "rxn": 2, + "tailwind-css": 2, + "webassembly": 2, + "picture": 2, + "zoomable-image": 2, + "document-scanner": 2, + "passkit": 2, + "sendbird": 2, + "real-time": 2, + "user-authentication": 2, + "animation-library": 2, + "stagger-view": 2, + "starter-kit": 2, + "form-component": 2, + "nativewind": 2, + "stories": 2, + "app-shortcuts": 2, + "uiapplicationshortcutitem": 2, + "rtl-support": 2, + "type": 2, + "data": 2, + "api-client": 2, + "websocket": 2, + "rest": 2, + "line-chart": 2, + "chatgpt": 2, + "rotation": 2, + "syntax-highlighting": 2, + "screenshot-protection": 2, + "json-schema": 2, + "i9n": 2, + "multilingual": 2, + "click-outside": 2, + "google-pay": 2, + "android-widget": 2, + "home-screen-widget": 2, + "vimeo": 2, + "bottom-tabs": 2, + "physics": 2, + "spotlight": 2, + "hook-form": 2, + "codes": 2, + "flags": 2, + "otp-text-input": 2, + "blur-view": 2, + "arraybuffer": 2, + "multithreading": 2, + "worklets": 2, + "coreml": 2, + "local-network": 2, + "profiling": 2, + "turbo-modules": 2, + "select-picker": 2, + "version-check": 2, + "app-version": 2, + "market-version": 2, + "app-store-version": 2, + "config-plugins": 2, + "prebuild": 2, + "observability": 2, + "reaction": 2, + "motion": 2, + "framer-motion": 2, + "appkit": 2, + "user": 2, + "user-interaction": 2, + "tab-control": 2, + "rich-text": 2, + "ahap": 2, + "two-factor-authentication": 2, + "newarchitecture": 2, + "network-discovery": 2, + "quick": 2, + "pub/sub": 2, + "photo-viewer": 2, + "photo-preview": 2, + "image-preview": 2, + "segment": 2, + "appboy": 2, + "feature-flags": 2, + "in-app-receipt": 2, + "clevertap": 2, + "loading-animations": 2, + "oidc": 2, + "tiny": 2, + "expo-share-extension": 2, + "expo-config-plugin": 2, + "country-codes": 2, + "google-places-autocomplete": 2, + "playback": 2, + "sms-verification": 2, + "collaborate": 2, + "moengage": 2, + "appsflyer": 2, + "toasts": 2, + "qr-code-generator": 2, + "mobile-barcode-generator": 2, + "npm-library": 2, + "press": 2, + "shopify": 2, + "vibration": 2, + "validate": 2, + "typescript-library": 2, + "translator": 2, + "persist": 2, + "redux-toolkit": 2, + "hotp": 2, + "otpauth": 2, + "back-end": 2, + "expo-updates": 2, + "in-app-updates": 2, + "skeleton-loader": 2, + "highlighter": 2, + "scaffold": 2, + "ajax": 2, + "client": 2, + "http-client": 2, + "schema": 2, + "in-view": 2, + "tree-view": 2, + "tree-select": 2, + "tree-structure": 2, + "toast-message": 2, + "jsx": 2, + "app-update": 2, + "in-app-update": 2, + "nitro-module": 2, + "ota": 2, + "self-hosted": 2, + "buffer": 2, + "bugsnag": 2, + "monitoring": 2, + "stability": 2, + "variants": 2, + "statechart": 2, + "scxml": 2, + "appcenter": 2, + "multi-step": 2, + "stepper": 2, + "wizard": 2, + "llama": 2, + "image-compressor": 2, + "wav": 2, + "audio-processing": 2, + "mobile-security": 2, + "velements": 2, + "rn-vui": 2, + "expo-passkey": 2, + "biometric": 2, + "matomo": 2, + "google-sso": 2, + "equality": 2, + "lodash": 2, + "vue": 2, + "angular": 2, + "emitter": 2, + "class-variance-authority": 2, + "pressable": 2, + "orm": 2, + "pg": 2, + "mysql": 2, + "postgresql": 2, + "postgres": 2, + "drizzle-orm": 2, + "exit": 2, + "webauthn": 2, + "credential-manager": 2, + "identity": 2, + "external": 2, + "lottie-splash-screen": 2, + "mutable": 2, + "copy-on-write": 2, + "certificate-pinning": 2, + "blurview": 2, + "liquid-glass": 2, + "equal": 2, + "node-api": 2, + "bindings": 2, + "apple-intelligence": 2, + "nlp": 2, + "mobile-ai": 2, + "dates": 2, + "screen-recording": 2, + "rich-text-editor": 2, + "turbomodules": 2, + "bun": 2, + "unistyles": 2, "log": 1, "logs": 1, - "logger": 2, - "react-native": 1762, - "expo": 271, - "error": 7, - "console": 3, - "colors": 2, - "debug": 4, - "file": 9, - "custom": 6, "levels": 1, - "namespace": 2, - "debugging": 7, - "ios": 972, - "android": 947, - "logging": 6, - "gl-react": 3, - "gl-react-native": 1, "image-filters": 1, - "gl-react-expo": 1, - "gl-react-dom": 1, - "gl": 9, - "opengl": 8, - "react": 592, + "gl-expo": 1, + "gl-dom": 1, "unicons": 1, - "icons": 17, "iconscout": 1, - "vector": 5, - "vector-icons": 3, - "image": 57, - "image-editor": 4, - "imageeditor": 3, - "photo": 9, - "photo-editor": 2, - "photoeditor": 2, "photoeditorsdk": 1, "photoeditor-sdk": 1, - "sdk": 20, "photo-editing": 1, "image-editing": 1, - "image-manipulation": 2, - "video": 29, - "video-editor": 2, "videoeditor": 1, "videoeditorsdk": 1, "videoeditor-sdk": 1, "video-editing": 1, "video-manipulation": 1, - "crop": 8, "filter": 1, - "native": 170, - "picker": 51, - "cropping": 2, - "multiple": 7, - "camera": 15, - "recording": 4, "segmented": 1, "control": 1, "resegmented": 1, "uisegmentedcontrol": 1, - "segmentedcontrolios": 3, - "segmented-control": 5, - "khtwah": 2, - "step": 3, - "dimensions": 2, - "reactnative": 40, - "redux": 21, - "react-redux": 3, - "redux-persist": 2, - "react-hooks": 8, - "reactjs": 30, "redux-thunk": 1, "redux-store": 1, "redux-actions": 1, - "toast": 19, "toastboard": 1, - "toaster": 2, - "notifications": 19, - "units": 2, "pixels": 1, - "grid": 12, - "scale": 2, - "javascript": 91, - "css": 15, - "responsive": 17, - "react-component": 271, - "component": 198, - "shake": 2, "shake-event": 1, "shake-event-android": 1, "shake-event-ios": 1, - "splash-screen": 7, - "splashscreen": 7, - "splash": 7, - "launch-screen": 6, - "launchscreen": 5, "launchimage": 1, - "carousel": 16, "carousel-component": 1, - "slider": 27, - "swiper": 16, - "scrollview": 20, - "typescript": 132, - "a11y": 6, "mp4upload": 1, "google-photos": 1, - "downloader": 2, "blogger": 1, "cloudvideo": 1, "readability": 1, - "reader": 2, "ios-reader": 1, "android-reader": 1, "safari-reader": 1, "column": 1, "columns": 1, - "resize": 2, - "svg": 34, - "loader": 11, "transformer": 1, - "react-components": 6, - "apple": 18, - "search": 7, - "ads": 3, - "attribution": 2, - "api": 8, "iad": 1, "attributiondetails": 1, - "ui": 74, - "validation": 9, - "class-validator": 2, "validate.js": 1, - "form": 14, - "react-formawesome-core": 1, - "keychain-service": 2, - "keystore-service": 2, - "device-security": 2, - "keystore": 2, - "keychain": 4, + "formawesome-core": 1, "secure-preferences": 1, "token": 1, - "react-token": 1, "multiple-values": 1, "multiple-keys": 1, - "cache": 7, "cached-image": 1, - "image-cache": 3, "imagebackground": 1, - "squircle": 2, - "smooth": 2, "rounded": 1, "superellipse": 1, "curvature": 1, "continuity": 1, - "mask": 7, - "view": 23, "smooth-corners": 1, "corners": 1, "rounded-corners": 1, @@ -142581,389 +147152,129 @@ "instabug": 1, "errors": 1, "exceptions": 1, - "reporting": 4, - "feedback": 5, - "bug-reporting": 4, - "bug-reporter": 2, - "tableview": 6, - "uitableview": 3, "crossplatform": 1, "localizable": 1, - "localization": 15, - "facebook": 8, - "core": 3, - "react-navigation": 23, - "hacktoberfest": 66, - "animated": 30, - "multiline": 3, - "drawing": 4, - "line": 4, "scatterpoint": 1, - "charts": 11, "d3.js": 1, "d3v4": 1, "multiline-graph": 1, "line-graph": 1, "scatterpoint-graph": 1, "d3js": 1, - "toolbar": 2, - "bottom": 6, - "bar": 12, - "tabs": 11, - "menubar": 2, - "menu": 10, - "tabbar": 7, - "calendar": 23, - "event": 5, - "events": 8, - "component-library": 4, - "ui-kit": 8, - "material-design": 25, - "bootstrap": 13, "facepile": 1, "face-pile": 1, "avatar-group": 1, "avatar-list": 1, "circle-avatar-list": 1, "faces": 1, - "asyncstorage": 10, - "declarative": 4, - "forms": 6, - "reactive": 4, "reactive-form": 1, - "form-generator": 1, - "form-builder": 2, "observer": 1, - "subscription": 2, "form-controls": 1, - "typography": 3, - "style": 10, - "styles": 7, "typeface": 1, - "font": 10, "typography-themes": 1, - "button": 14, "mirror": 1, - "viewpager": 6, "rondell": 1, "pager-component": 1, - "swipe": 21, - "swipeview": 2, "event-listeners": 1, "listeners": 1, - "event-listener": 3, - "signature": 5, - "pdf": 10, - "viewer": 6, - "java": 13, - "objective-c": 10, - "multiselect": 5, - "multi-select": 4, - "orientation": 7, - "windows": 26, - "screen": 10, - "listener": 4, "locker": 1, - "push": 12, - "apns": 2, - "fcm": 4, - "gcm": 2, - "onesignal": 3, - "push-notifications": 11, - "mobile": 75, "onesignal-instructions": 1, - "onesignal-notifications": 2, "linkedin": 1, - "login": 6, "linkedin-sdk": 1, - "signin": 3, - "drawer": 9, - "side-menu": 3, - "image-picker": 4, - "keyboard": 19, "spacer": 1, "helper": 1, "clean-code": 1, - "tracking": 6, - "mixpanel": 2, - "mixpanel-sdk": 2, "ios-app": 1, - "xcode": 6, "mixpanel-ios-sdk": 1, - "mobile-app": 7, - "navigation": 26, - "navigator": 5, - "pageview": 2, - "pager": 7, "page-control": 1, "pagecontrol": 1, "uipagecontrol": 1, - "lottie": 3, - "animation": 54, "keyframe": 1, - "map": 8, - "mapview": 4, - "google-maps": 4, - "mapkit": 3, - "maps": 17, - "directions": 3, - "google-maps-api": 2, - "fade": 2, "bounce": 1, - "slide": 3, "animatable": 1, - "transition": 3, - "ui-components": 12, "icon-pack": 1, - "flexbox": 4, - "responsive-layout": 4, - "layout": 9, - "orientation-changes": 2, - "responsive-design": 2, - "universal": 2, "step-indicator": 1, - "listview": 14, - "progress-view": 3, - "dialog": 10, - "popup": 15, - "react-dialog": 1, - "modals": 3, - "react-animate": 1, - "es6": 2, - "material": 24, - "input": 23, - "textinput": 15, - "field": 3, - "textfield": 4, - "floating": 5, - "label": 4, - "modal": 38, - "box": 2, "modalbox": 1, "window": 1, - "backdrop": 3, - "simple": 9, - "cross-platform": 23, - "tab": 9, - "scrollable": 8, - "coverflow": 2, - "chart": 16, "bedtime": 1, - "circular": 2, - "circle": 5, "round": 1, - "time": 9, - "timer": 7, - "clock": 3, - "flatlist": 24, - "parallax": 8, - "images": 9, - "infinite": 6, - "scroll": 16, - "scrolling": 5, - "items": 3, "edge": 1, - "snap": 4, - "card": 14, - "cards": 6, - "stack": 5, - "deck": 5, - "tinder": 5, - "snapping": 2, - "rtl": 3, - "flatlist-based": 2, - "parallax-effect": 2, - "infinite-scroll": 5, "advanced-effects": 1, - "date": 9, - "select": 24, - "dropdown": 21, - "net": 3, - "tcp": 2, - "sockets": 2, - "bridge": 7, - "share": 5, - "intent": 5, - "uwp": 2, - "mobile-development": 5, "dialog-box": 1, "keychain-access": 1, - "twitter": 6, "slcomposeviewcontroller": 1, "rctbridgemodule": 1, - "social": 4, "share-popups": 1, - "ble": 6, - "bluetooth": 10, "low-energy": 1, - "bluetooth-low-energy": 1, - "email": 5, "mfmailcomposeviewcontroller": 1, - "card.io": 2, - "credit": 2, - "scanner": 7, - "credit-card": 4, - "scan": 2, "card-scanning": 1, "card-io": 1, - "places": 2, - "google-places": 2, - "google-places-api": 2, - "autocomplete": 7, "google-place-picker": 1, "google-place-api": 1, "google-place-autocomplete": 1, - "text": 18, "money": 1, "bottomnavigation": 1, - "bottom-navigation": 2, - "cameraroll": 3, "camera-roll": 1, "tween": 1, "conductor": 1, - "utility": 8, - "progress": 10, - "progressbar": 4, - "spinner": 11, - "activityindicator": 2, - "loading": 16, - "indicator": 7, "producttour": 1, - "app": 7, - "intro": 7, - "introduction": 2, - "lightbox": 6, - "gallery": 13, - "text-input": 10, - "drag": 8, - "drop": 3, - "touch": 3, - "list": 10, - "sort": 2, "andorid": 1, "foldingcell": 1, "folding": 1, - "cell": 3, "progressindicator": 1, - "pie": 2, "indeterminate": 1, - "page": 3, "tab-navigator": 1, - "tab-bar": 5, "tab-view": 1, - "react-button": 1, "button-component": 1, - "html": 8, "autolinking": 1, - "autolink": 2, - "linking": 4, "autolinker": 1, - "links": 3, - "link": 8, - "hyperlink": 2, - "url": 8, - "web": 88, - "fuzzy-links": 2, - "checkbox": 9, "check-box": 1, - "check": 3, "checkbox-component": 1, - "react-svg": 1, "fill": 1, "sidebar": 1, - "native-modules": 3, - "navbar": 8, "packager": 1, "nativebase": 1, - "native-platforms": 1, - "nextjs": 4, - "swipeout": 2, + "platforms": 1, "looped": 1, - "datepicker": 8, - "google": 7, - "payment": 5, "photo-browser": 1, - "image-gallery": 6, "media-gallery": 1, - "photos": 4, "paths-js": 1, - "react-pathjs-chart": 1, - "graphs": 6, + "pathjs-chart": 1, "radar-graphs": 1, "bar-graphs": 1, - "action-button": 2, - "float-button": 2, - "multi-action-button": 2, "fab": 1, "actionbutton": 1, - "alert": 19, - "dismiss": 3, - "info": 2, "warn": 1, "success": 1, - "notification": 16, "popup-menu": 1, - "rn": 28, "calendar-strip": 1, "strip": 1, "waiting": 1, - "react-art": 1, "animated-spinners": 1, - "scrollview-component": 2, "percentage": 1, "percent": 1, - "flip": 4, "card-component": 1, - "firebase": 24, "cloud-messaging": 1, "local-notifications": 1, "toast-ios": 1, - "react-toast": 1, - "mentions": 2, - "hashtag": 2, "settings-list": 1, - "settings": 3, "redux-form": 1, "immutable.js": 1, - "styled-components": 4, - "accordion": 5, - "chooser": 2, - "select-tag": 2, "day": 1, "calendar-picker-component": 1, "calendarpicker": 1, - "calendar-picker": 2, - "radio-buttons": 3, - "radio": 2, "segmentedcontrols": 1, "segmented-controls": 1, "gesture-password": 1, "interval": 1, - "data-store": 2, "key-value-store": 1, - "activity": 3, "full": 1, "pop-up": 1, - "overlay": 4, - "portal": 2, - "progress-bar": 3, - "sticky": 3, - "message": 5, - "status": 3, "text-field": 1, "hud": 1, - "components": 24, - "country-picker": 4, - "country": 6, - "flag": 3, "countries": 1, "awesome-button": 1, - "react-ui": 1, - "uri": 2, - "http": 10, - "webview": 9, "webbrowser": 1, - "browser": 11, "circular-menu": 1, "arc-menu": 1, "satellite-menu": 1, @@ -142972,132 +147283,52 @@ "segmentedcontroltab": 1, "controlled-segmentedcontroltab": 1, "selectlist": 1, - "alphabetlist": 2, "contactlist": 1, "pixel-ratio": 1, - "emoji": 8, - "emoji-picker": 5, - "smart": 2, - "badge": 3, "tcomb": 1, - "pagination": 3, - "scroll-view": 3, "invertible": 1, - "popover": 10, - "markdown": 8, - "md": 2, - "parse": 4, - "parser": 3, - "library": 45, - "status-bar": 6, "banner": 1, - "statusbar": 3, "scaled": 1, "datasource": 1, "pure": 1, - "immutable": 9, - "set": 2, "immutablejs": 1, - "virtualizedlist": 2, "search-header": 1, - "header": 5, - "uikit": 5, - "device": 7, "net-info": 1, "audience-network": 1, - "native-ads": 2, "facebook-sdk": 1, "branch": 1, - "metrics": 2, "deeplink": 1, - "deep": 2, "universal-links": 1, "app-links": 1, - "analytics": 13, - "deep-linking": 3, - "module": 11, - "auth": 17, - "awake": 2, - "lock": 2, - "sleep": 2, "send": 1, "sent": 1, - "phone": 6, - "sms": 6, - "call": 2, - "calls": 3, "dial": 1, - "number": 5, "launchui": 1, - "show": 2, - "hide": 2, - "blur": 8, "uiview": 1, - "location": 12, "permission": 1, "authorization": 1, - "permissions": 4, - "screenshot": 8, - "viewshot": 2, "view-snapshot": 1, - "snapshot": 2, "rasterize": 1, - "capture": 4, - "safari": 3, "safariview": 1, - "safari-view-controller": 2, - "firestack": 2, - "oauth": 8, "cmmotionmanager": 1, "motionmanager": 1, - "gyroscope": 3, - "accelerometer": 2, - "magnetometer": 3, - "health-kit": 4, - "healthkit": 5, - "addressbook": 2, - "contacts": 5, "background-job": 1, "scheduled-jobs": 1, - "background-jobs": 2, - "geocoding": 3, "device-orientation": 1, "display": 1, - "viewport": 4, "universal-apps": 1, "device-detection": 1, - "background": 14, - "fetch": 11, - "stripe": 7, - "siri": 2, - "speech": 5, "speak": 1, - "speech-to-text": 2, "search-bar": 1, - "fabric": 10, - "authentication": 22, - "digits": 3, - "horizontal": 3, - "vertical": 3, "direction": 1, "custom-input": 1, "keyboard-input": 1, "keyboard-component": 1, "inputaccessoryview": 1, - "privacy": 4, - "secure": 3, - "sms-listener": 1, - "network": 12, - "lan": 3, - "android-library": 2, "ios-lib": 1, - "networking": 5, "proximity": 1, "proximity-sensor": 1, - "sensor": 3, - "iphone": 2, "eventkit": 1, - "reminders": 2, "calendar-events": 1, "android-calendar-events": 1, "ios-calendar-events": 1, @@ -143106,41 +147337,16 @@ "recurring-events": 1, "ios-calendar-api": 1, "android-calendar-api": 1, - "pinch": 10, - "pinch-to-zoom": 11, "materialkit": 1, - "i18n": 12, - "tooltip": 7, "bottom-sheet-behavior": 1, "coordinatorlayout": 1, - "bottomsheet": 6, "bottomsheetbehavior": 1, "floatingactionbutton": 1, "nestedscrollview": 1, - "internationalization": 10, - "globalization": 5, - "l10n": 7, "currency": 1, - "datetime": 7, - "language": 3, - "localstorage": 2, - "sync": 2, "stylesheets": 1, - "theme": 10, "theming": 1, - "styling": 5, - "stylesheet": 4, - "performance": 17, - "design": 10, "css-modules": 1, - "ab": 2, - "test": 4, - "testing": 9, - "experiment": 2, - "variant": 2, - "pouchdb": 2, - "offlinefirst": 2, - "database": 10, "local-db": 1, "db-events": 1, "rerender": 1, @@ -143148,47 +147354,24 @@ "models": 1, "cairn": 1, "infrastructure": 1, - "tools": 3, "debug-panel": 1, - "image-resizer": 2, - "scaling": 4, "jpeg": 1, "position": 1, "remobile": 1, "lazyload": 1, "load": 1, - "customizable": 15, "nav": 1, "tweening": 1, - "easing": 2, "tablayout": 1, - "support": 4, - "pull-to-refresh": 2, "refreshable": 1, "infinite-scrolling": 1, "confirm": 1, "iqkeyboardmanager": 1, "mrn": 1, - "collapse": 3, - "collapsible": 6, - "toggle": 3, - "navigation-bar": 8, - "router": 5, - "react-router": 1, - "gesture": 12, - "detection": 3, - "action-sheet": 5, - "gestures": 5, - "zoom": 10, "listitem": 1, "low": 1, "energy": 1, - "ux": 6, - "placeholder": 10, - "apple-pay": 5, - "qrcode": 9, "node-qrcode": 1, - "admob": 4, "mobile-ads": 1, "google-ads": 1, "gdpr": 1, @@ -143199,187 +147382,88 @@ "app-check": 1, "appcheck": 1, "app-distribution": 1, - "config": 8, - "functions": 3, "phone-auth": 1, - "firestore": 3, - "cloud-firestore": 2, "datastore": 1, - "remote-config": 2, "transactions": 1, "apn": 1, - "messaging": 4, - "crash": 4, "dynamic-links": 1, - "crashlytics": 3, - "bug": 3, - "realtime": 5, "synchronized": 1, "realtome-database": 1, "nosql": 1, - "query": 3, - "https": 4, "callable": 1, - "in-app-messaging": 2, "predictions": 1, "engage": 1, "active-users": 1, "inappmessaging": 1, - "ml": 3, - "machine-learning": 2, - "text-recognition": 3, "landmark-recognition": 1, "image-labeler": 1, - "perf": 3, "trace": 1, "insight": 1, "latency": 1, "performance-monitoring": 1, - "remote": 4, - "audio": 24, - "json": 2, "cloud-storage": 1, - "storage": 11, - "upload": 12, - "download": 12, - "fs": 9, - "filesystem": 5, - "file-transfer": 3, "resizer": 1, - "base64": 3, - "cli": 8, - "swift": 21, - "kotlin": 14, - "fonts": 4, - "font-awesome": 2, - "fontawesome": 6, - "icon": 11, "icons-fontawesome": 1, "submit": 1, "submit-button": 1, - "zip": 2, - "archive": 1, "zip-archive": 1, - "unzip": 1, "zip-assets": 1, - "actionsheet": 5, "custom-action-sheet": 1, - "document": 4, "perspective": 1, "skeletor": 1, - "batch": 2, "archived": 1, - "deprecated": 2, "obsolete": 1, - "bouncy": 3, - "drag-and-drop": 2, - "material-ui": 3, - "onboarding": 6, - "tutorial": 7, "welcome": 1, "instructions": 1, "falling": 1, - "scheme": 2, - "build": 5, "configuration": 1, - "environment": 3, "variables": 1, - "ui-kitten": 2, - "braintree": 4, - "payments": 8, "drop-in": 1, "formik": 1, - "react-dom": 3, - "hooks": 20, "render-props": 1, - "higher-order-component": 2, - "hoc": 2, - "google-play": 4, "google-play-game-services": 1, "google-play-games": 1, "google-play-service": 1, - "native-native": 1, "full-page-scroll": 1, "full-screen-scroll": 1, "paged": 1, - "azure": 4, "azuread": 1, "active-directory": 1, - "oauth2": 4, "vk": 1, "vkontakte": 1, - "frontend": 4, - "npm": 9, - "npm-package": 4, "lock-screen": 1, - "swiper-flatlist": 2, "flatlist-swiper": 1, "grid-list": 1, - "grid-view": 2, "grid-component": 1, - "grid-layout": 2, "flatlist-grid": 1, "marker": 1, "watermark": 1, "mark": 1, "icon-watermark": 1, - "walkthrough": 3, - "highlighting": 3, - "canvas": 8, - "graphics": 4, - "draggable": 5, "draggable-calendar": 1, "pdfjs": 1, "pdf-reader": 1, - "pdf-viewer": 3, - "react-pdf": 1, - "snackbar": 6, "snack-bar": 1, "chaos-engineering": 1, "pseudo-localization": 1, "psuedo-localize": 1, "psuedo": 1, - "translation": 5, - "i10n": 2, "pseudo": 1, - "keyboard-accessory": 2, "input-accessory": 1, "sticky-views": 1, - "date-picker": 4, - "datetimepicker": 4, "date-time-picker": 1, "datepicker-component": 1, - "time-picker": 5, - "timepicker": 5, - "linear-gradient": 3, - "radial-gradient": 2, - "gradient": 11, - "sqlite": 13, "indexeddb": 1, "lokijs": 1, "watermelon": 1, "watermelondb": 1, - "offline": 4, - "offline-first": 4, - "persistence": 2, - "rxjs": 2, "better-sqlite3": 1, - "db": 2, - "react-android": 1, - "react-ios": 1, - "react-windows": 1, "track-player": 1, - "audio-player": 2, - "player": 12, - "music": 8, "controls": 1, - "chromecast": 2, "music-player": 1, "music-library": 1, "media-control": 1, - "audio-library": 2, "hotspot": 1, - "avatar": 4, "letter": 1, "text-avatar": 1, "letter-avatar": 1, @@ -143388,100 +147472,55 @@ "selected": 1, "customize-event": 1, "customize-date": 1, - "autocompletion": 1, - "instagram": 6, "instagram-login": 1, "instagram-api": 1, "instagram-oauth": 1, - "devtools": 3, - "measure": 3, - "ruler": 3, "fallback": 1, "expo-apple-authentiocation": 1, - "apple-authentication": 2, "sign-in-with-apple": 1, "expo-application": 1, - "asset": 2, "background-fetch": 1, "expo-battery": 1, "expo-blur": 1, "expo-brightness": 1, - "brightness": 2, "expo-cellular": 1, "constants": 1, - "crypto": 11, "expo-device": 1, "expo-document-picker": 1, "document-picker": 1, - "file-system": 3, "glview": 1, - "webgl": 3, "expo-haptics": 1, - "haptics": 6, "expo-image-manipulator": 1, "expo-intent-launcher": 1, "launcher": 1, - "keep-awake": 2, - "touchid": 4, - "faceid": 4, - "fingerprint": 7, "locales": 1, - "geolocation": 6, "coords": 1, "compass": 1, "heading": 1, - "mail": 2, "composer": 1, - "media": 8, - "videos": 3, "expo-network": 1, - "expo-notifications": 2, "push-nofifications": 1, "exponent": 1, - "game": 2, - "2d": 2, - "pixi": 2, "pixi.js": 1, "sprite": 1, - "print": 2, "airprint": 1, "processing.js": 1, "expo-secure-store": 1, - "store": 6, "sensors": 1, "devicemotion": 1, "lightsensor": 1, "pedometer": 1, - "barometer": 2, "expo-speech": 1, - "voice": 5, - "sql": 3, - "async-storage": 7, "expo-store-review": 1, - "reviews": 2, - "app-store": 5, "google-play-store": 1, "task-manager": 1, - "task": 3, "three.js": 1, "three": 1, - "gaming": 3, - "arkit": 2, - "expo-web": 4, - "threejs": 2, "ar-session": 1, "javascript-game": 1, - "expo-video-thumbnails": 1, - "thumbnail": 2, "expo-web-browser": 1, "sms-code": 1, - "verification": 2, "verification-code": 1, - "in-app": 4, - "custom-tabs": 2, - "chrome": 2, - "chrome-custom-tabs": 3, - "sfsafariviewcontroller": 2, "flow": 1, "safearea": 1, "dns": 1, @@ -143490,7 +147529,6 @@ "integer": 1, "decimal": 1, "int": 1, - "selector": 4, "keyboard-aware": 1, "keyboardavoid": 1, "expandable": 1, @@ -143498,119 +147536,68 @@ "fadeout": 1, "eva-icons": 1, "icons-source": 1, - "nested": 3, "nested-structures": 1, "nested-objects": 1, - "tree": 4, - "treeview": 2, "p2p": 1, "peer-to-peer": 1, "wifi-direct": 1, "wi-fi-direct": 1, "wifi-p2p-manager": 1, - "wifi": 6, - "bundle": 7, "bundles": 1, "separate": 1, "separator": 1, - "split": 2, "splitter": 1, "splitting": 1, - "inline": 3, - "require": 2, - "ram": 2, "js-bundle": 1, - "lazy": 3, "loadable": 1, "unbundle": 1, - "ram-bundle": 2, "custom-gestures": 1, "pacman": 1, "uidocumentmenuviewcontroller": 1, "dropbox": 1, - "google-drive": 2, - "icloud": 3, "calendars": 1, - "persian-calendar": 2, "jalaali-calendar": 1, - "month-picker": 2, - "persian": 2, - "jalaali": 2, "customizable-datepicker": 1, "multi-slider": 1, "cookies": 1, "thumbnails": 1, - "reanimated": 54, - "bottom-sheet": 14, - "handler": 3, - "zoomable": 5, - "double": 2, - "tap": 2, - "double-tap": 4, - "clipboard": 3, "emoji-mart": 1, "emoji-component": 1, "custom-emojis": 1, "modalpicker": 1, - "generator": 6, - "boilerplate": 9, "mst": 1, "desktop": 1, "reactotron": 1, "redux-saga": 1, - "axios": 4, - "promise": 6, - "geofence": 2, - "geofencing": 2, "background-location": 1, "background-geolocation": 1, "location-tracking": 1, "pixel-perfect": 1, "guides": 1, "designer": 1, - "dev-tools": 2, - "developer-tools": 2, + "dev-tools": 1, "pixel": 1, - "eslint": 2, "eslintplugin": 1, "eslint-plugin": 1, - "accessibility": 8, - "zendesk": 2, "rn-zendesk": 1, - "help-center": 3, "zendesk-help": 1, "androidprogressbar": 1, "progressviewios": 1, - "macos": 13, "getstring": 1, "setstring": 1, - "speech-recognition": 2, - "voice-recognition": 1, - "spinkit": 2, "spinners": 1, - "animations": 10, - "swipeable": 6, - "react-ui-kit": 1, "expo-ui-kit": 1, "ui-kit-framework": 1, "predefined-props": 1, "rgba": 1, "stacks": 1, - "user-interface": 3, - "localize": 2, - "l20n": 2, "language-detection": 1, - "dual-screen": 4, "expo-splash-screen": 1, - "launch": 4, - "updates": 2, - "appearance": 3, "expo-auth-session": 1, "auth-session": 1, "expo-linking": 1, "expo-screen-orientation": 1, "expo-sharing": 1, - "safe-area": 4, "safeareainsets": 1, "shared-element": 1, "expo-shared-element": 1, @@ -143631,31 +147618,20 @@ "input-mask": 1, "inputmask": 1, "toolbar-android": 1, - "art": 2, - "community": 2, "push-notification-ios": 1, - "push-notification": 4, "notification-ios": 1, - "iphonex": 4, "safeareaview": 1, "notch": 1, - "photo-gallery": 3, "masked-view": 1, "medium-clap": 1, "avfoundation": 1, "avaudiosession": 1, "opensource": 1, - "webrtc": 12, "twilio-video": 1, - "video-streaming": 3, "realtime-video": 1, - "twilio": 2, "video-call": 1, - "callkit": 2, "connectionservice": 1, - "voip": 4, "connection-service": 1, - "call-kit": 2, "incall": 1, "talk": 1, "sip": 1, @@ -143663,201 +147639,84 @@ "boot-splash": 1, "boot-screen": 1, "bootscreen": 1, - "redux-middleware": 3, - "flipper": 2, "flexible": 1, - "fit": 3, - "aspect-ratio": 2, - "hook": 4, "responsive-images": 1, - "image-colors": 2, "rnimagecolors": 1, - "dominant": 2, "average": 1, - "color": 6, - "palette": 4, "render-html": 1, - "messenger": 2, - "chat": 6, "shoutem-ui": 1, - "native-components": 1, "shoutem": 1, - "commonmark": 2, - "markdown-it": 2, - "i18next": 3, - "ssr": 3, - "scrollintoview": 2, - "into": 2, - "visible": 2, - "tablet": 2, "d3": 1, "vml": 1, - "nitro": 21, - "amazon": 2, - "appstore": 5, - "billing": 2, - "iap": 5, - "in-app-purchase": 5, - "playstore": 5, - "cocoapod": 2, - "sound": 3, - "cached": 3, - "fastimage": 2, - "priority": 2, "sdwebimage": 1, - "glide": 2, - "image-viewer": 6, - "option": 3, "translucent": 1, - "subscriptions": 3, - "google-sign-in": 2, - "google-login": 1, "android-creadential-manager": 1, "googlesignin": 1, "googleauth": 1, "ivideo": 1, "video-play": 1, - "react-video": 1, - "cloud": 2, "parse-platform": 1, "parse-js": 1, "javascript-sdk": 1, "material-menu": 1, - "polyfill": 6, "timeend": 1, "measurement": 1, - "count": 2, "countreset": 1, "measurements": 1, "open-link": 1, "apple-maps": 1, "map-deep-links": 1, "map-url-scheme": 1, - "review": 5, - "rating": 6, - "rate": 4, - "jest": 4, - "template": 7, "audio-toolkit": 1, "modal-dialog": 1, "modal-statusbar": 1, - "range": 2, - "seekbar": 2, "jalali": 1, "shamsi": 1, "imageloader": 1, - "gif": 4, - "mongodb": 2, - "aws": 2, "serverless": 1, "stitch": 1, "atlas": 1, "autoheight": 1, - "tts": 2, - "text-to-speech": 2, - "env": 5, - "config-var": 2, - "12factor": 4, "boundary": 1, "region-monitoring": 1, "sqlite-storage": 1, - "sqlite3": 2, "cordova-sqlite-storage": 1, "parsing": 1, "select2": 1, - "exception": 4, - "wechat": 2, "wechat-sdk": 1, "mit": 1, - "js": 5, - "code": 5, - "codepush": 6, - "code-push": 7, - "transitions": 3, - "react-video-controls": 2, - "react-video-player": 2, - "video-player": 7, - "video-controls": 2, - "elements": 7, - "itunes": 2, - "apple-music": 2, "html-parser": 1, "html-renderer": 1, "flash": 1, "flashbar": 1, "flashmessage": 1, "topbar": 1, - "ipad": 2, - "webp": 3, - "inapp": 2, "purchase": 1, - "typing": 3, "typewriter": 1, "syntax": 1, "highlight.js": 1, - "react-syntax-highlighter": 1, - "blob": 5, - "filestream": 3, - "image-header": 3, "file-access": 1, - "md5": 2, "hex-md5": 1, "str-md5": 1, "hex-hmac-md5": 1, "b64-hmac-md5": 1, "str-hmac-md5": 1, "geocoder": 1, - "prompt": 3, - "star": 2, - "stars": 2, - "ratings": 2, "star-rating": 1, "star-rating-component": 1, "custom-star": 1, "star-icon": 1, - "shapes": 2, - "switch": 4, "customisable": 1, - "initials": 2, - "shimmer": 3, - "skeleton": 7, - "rotate": 3, - "card-flip": 2, - "flip-card": 3, - "flip-animation": 2, "swipelistview": 1, "platform": 1, - "wheel-picker": 3, "date-wheel-picker": 1, - "haptic": 3, - "haptic-feedback": 4, - "recyclerview": 2, - "flatlist-alternative": 3, - "60fps": 3, - "mapbox": 4, - "mapbox-gl": 1, - "large-list": 2, - "sectionlist": 6, - "high-performance": 3, "swipable-flatlist": 1, - "focus": 4, - "masonry": 4, - "pinterest": 2, - "masonry-layout": 2, "masonry-grid": 1, "pinterest-like": 1, "sglistview": 1, "sglistview-performance": 1, "sg": 1, - "timeline": 3, - "schedule": 2, - "joyride": 2, - "copilot": 2, - "intro.js": 2, - "sketch": 2, - "draw": 2, "paint": 1, - "mobile-apps": 2, "galio": 1, "super": 1, "flat-list": 1, @@ -143867,26 +147726,14 @@ "responsive-grid": 1, "activity-view": 1, "share-sheet": 1, - "sheet": 10, "airdrop": 1, "draft-js": 1, "draftjs": 1, "noder": 1, - "height": 2, - "precompute": 2, - "block": 2, "measue": 1, - "preview": 3, - "quicklook": 2, "doc": 1, - "fontsize": 2, - "font-size": 2, "reponsive": 1, - "git": 2, - "github": 2, - "size": 2, "width": 1, - "hypertext": 2, "ascii": 1, "asciimage": 1, "answers": 1, @@ -143895,48 +147742,26 @@ "ux-cam": 1, "treasure-data": 1, "treasuredata": 1, - "tvos": 7, "flurry": 1, "marketing": 1, "googlemaps": 1, - "geometry": 2, - "polygon": 2, "containslocation": 1, "geo-fencing": 1, - "gps": 6, - "fused": 2, "play-services": 1, - "wheel": 6, - "sentry": 2, "crashreporting": 1, - "code-input": 3, - "confirmation-code": 4, - "pin-code": 2, - "confirmation-code-input": 2, - "pin-code-input": 2, - "google-fit": 3, - "health": 4, - "fitness": 5, "idle-timer": 1, "idle": 1, "dim": 1, "inappbrowser": 1, - "in-app-browser": 3, "appbrowser": 1, "safariservices": 1, "authenticationservices": 1, "customtabsintent": 1, "chrometabsmanageractivity": 1, "deep-links": 1, - "plugin": 4, "slider-component": 1, - "shared-preferences": 2, "sensitive-info": 1, "ios-keychain": 1, - "android-shared-preferences": 1, - "touch-id": 4, - "authenticate": 2, - "youtube": 4, "powerbi": 1, "msal": 1, "b2c": 1, @@ -143944,13 +147769,10 @@ "microsoft": 1, "azure-active-directory": 1, "azure-active-directory-b2c": 1, - "open-source": 3, "contribution": 1, "stickyheader": 1, "12factorapp": 1, - "dotenv": 3, "xcconfig": 1, - "gradle": 3, "fontfamily": 1, "fontweight": 1, "fontscale": 1, @@ -143963,39 +147785,24 @@ "triangle": 1, "triangle-view": 1, "labels": 1, - "interceptor": 2, "monitor": 1, - "debugger": 4, "network-monitoring": 1, "charles": 1, "network-debug": 1, "babel-plugin": 1, - "babel": 2, "dotenv-flow": 1, - "environment-variables": 2, - "metadata": 3, - "track": 2, "remote-controls": 1, "lockscreen": 1, "nowplaying": 1, "mpnowplayinginfocenter": 1, "now-playing": 1, - "mock": 3, "mixin": 1, "dgram": 1, "udp": 1, - "nodejs": 6, "randombytes": 1, - "rng": 2, - "radial": 2, - "qr": 3, - "barcode": 12, - "qrcode-scanner": 3, "os": 1, "level": 1, "iphone-x": 1, - "marquee": 4, - "image-zoom": 4, "realtimemessaging": 1, "realtime-messaging": 1, "collapsible-header": 1, @@ -144004,130 +147811,74 @@ "hide-navigation": 1, "barcode-mask": 1, "scanning": 1, - "barcode-scanner": 3, - "border": 2, "edges": 1, - "dx-sdk": 2, - "restart": 1, "reload": 1, - "responsive-ui": 4, - "responsive-view": 2, - "responsive-screen": 2, - "pincode": 2, - "password": 3, - "pin": 2, "fusedlocationproviderclient": 1, "acceleration": 1, - "sortable": 4, "fingerprint-scanner": 1, - "face-id": 3, - "biometrics": 3, "cast": 1, "google-cast": 1, "cast-library": 1, - "table": 2, "table-component": 1, "sliding": 1, - "panel": 3, "sliding-up-panel": 1, "appauth": 1, - "tailwind": 6, - "tailwindcss": 5, "urlsearchparams": 1, "whatwg-url": 1, "content": 1, "facebook-cards-loaders": 1, "skeleton-screen": 1, "ripple": 1, - "integration": 2, "code-verification": 1, "otp-inputs": 1, - "one-time-password": 3, "rate-me": 1, "secrandomcopybytes": 1, "prng": 1, "csprng": 1, "securerandom": 1, "randomnumbergenerator": 1, - "cryptography": 4, "cardview": 1, - "card-view": 2, - "shadow": 7, - "shadow-view": 2, - "shadowview": 2, "appcompat": 1, "elevation": 1, "keychain-services": 1, "keystore-services": 1, - "mapbox-gl-native": 1, - "maplibre": 2, - "cluster": 2, - "clustering": 2, "markers": 1, "nfc": 1, "watch": 1, - "apple-watch": 2, "iwatch": 1, - "large-files": 2, "nearby": 1, "messages": 1, - "native-module": 16, "nearby-messages": 1, - "google-nearby": 2, - "broadcast": 2, - "microphone": 3, "game-dev": 1, "game-development": 1, "game-engine": 1, "game-2d": 1, "font-weight": 1, - "font-face": 2, "font-style": 1, "custom-fonts": 1, "bottom-animated": 1, - "bottom-drawer": 2, "raw-bottom-sheet": 1, "bottom-app-bar": 1, "action": 1, "blurhash": 1, - "node": 5, - "youtube-iframe": 2, - "iframe": 1, "youtube-api": 1, - "youtube-player": 1, "youtube-video": 1, - "manager": 5, - "rooster": 1, "animate-numerical-value": 1, "count-up": 1, "countup": 1, - "react-count-up": 1, - "react-countup": 1, - "countdown": 3, "count-down": 1, "counting": 1, - "use": 1, "use-count-up": 1, "use-countup": 1, "animate-counting": 1, - "event-source": 2, - "sse": 3, "zoom-sdk": 1, "mobilertc": 1, "zoom.us": 1, - "video-calls": 2, - "conference-calls": 2, "chat-online": 1, "zoom-us": 1, "confrence": 1, "meetings": 1, - "jwplayer": 2, - "mediaplayer": 2, - "media-player": 4, - "jw": 2, "ios-ui": 1, - "emoji-keyboard": 2, - "gesture-handler": 13, "popup-ui": 1, "popup-ui-design": 1, "elegant": 1, @@ -144139,16 +147890,9 @@ "modern": 1, "modern-header": 1, "classic-header": 1, - "ui-lib": 7, "header-view": 1, "mobile-app-development": 1, - "telephone": 2, - "phone-input": 5, - "tel": 2, - "input-text": 2, - "international": 2, "siri-shortcuts": 1, - "shortcuts": 3, "automation": 1, "png": 1, "ime": 1, @@ -144158,30 +147902,18 @@ "qrcodejs": 1, "rn-qrcode": 1, "reactnative-qrcode": 1, - "qrcode-react-native": 1, "javascript-qrcode": 1, "qrcode-logo": 1, - "qrcode-generator": 3, "easyqrcodejs": 1, "javascript-qrcode-generator": 1, "qrcode-javascript": 1, - "app-review": 2, - "in-app-review": 2, - "play-store": 3, - "flex": 4, "linechart": 1, - "area-chart": 2, "clean": 1, - "sass": 2, - "scss": 2, "transform": 1, "bigimageviewer": 1, "imageview": 1, - "qr-code": 6, "mercadopago": 1, "mercadopago-api": 1, - "storybook": 4, - "bounceable": 2, "apple-card": 1, "apple-card-view": 1, "apple-auth": 1, @@ -144191,46 +147923,28 @@ "record": 1, "share-screen": 1, "emulator": 1, - "recorder": 2, - "screen-capture": 4, - "screenrecord": 2, - "screen-recorder": 2, "simple-logger": 1, "nestedlist": 1, "nestedview": 1, - "paypal": 2, - "checkout": 2, "paypal-checkout": 1, - "reanimated2": 9, "decode-qr": 1, "generate-qr": 1, - "data-matrix": 2, "datamatrix": 1, - "qr-generator": 2, "qrcode-image": 1, - "qr-decode": 1, "detect-qr-code": 1, "scan-qr-code": 1, "detect-qr-code-from-image": 1, "qrcode-detector": 1, - "totp": 4, - "decoder": 2, "weekview": 1, - "calendar-view": 2, "fast-storage": 1, "mmkv-database": 1, "mmkv-storage": 1, "encrypted-storage": 1, - "encryption": 4, - "mmkv": 2, "key-value-storage": 1, - "fast": 11, "persist-storage": 1, "secure-storage": 1, "redux-persist-storage": 1, "rn-checkbox": 1, - "freakycoder": 3, - "kuray": 3, "customizable-ui": 1, "keycloak": 1, "keycloak-js": 1, @@ -144240,27 +147954,14 @@ "renamer": 1, "space": 1, "pkce": 1, - "jsi": 21, - "c++": 4, "scripts": 1, - "utils": 3, - "development": 3, - "utilities": 4, "development-tools": 1, - "color-picker": 3, - "purchases": 2, "external-display": 1, "uiscene": 1, - "native-ui-component": 3, "carplay": 1, "car": 1, - "auto": 2, - "classes": 4, "usestyles": 1, - "react-devtools": 1, "redux-devtools-extension": 1, - "electron": 2, - "spotify": 2, "cocoapods": 1, "persistor": 1, "ios-swift": 1, @@ -144270,8 +147971,6 @@ "asyncstorage-wrapper": 1, "proptype-validators": 1, "audio-recorder": 1, - "turbomodule": 4, - "nitromodule": 1, "swipeable-panel": 1, "swipe-up": 1, "swipe-down": 1, @@ -144280,8 +147979,6 @@ "bottom-up-panel": 1, "ionicons": 1, "ionic": 1, - "processing": 2, - "edit": 2, "videoedit": 1, "ios-video-editor": 1, "android-video-editor": 1, @@ -144296,59 +147993,32 @@ "bottom-slider": 1, "widgetkit": 1, "ios14": 1, - "paper": 5, "media-queries": 1, "fbt": 1, - "navigation-bar-color": 2, "navigation-theme": 1, - "bottom-bar": 3, "bottom-bar-color": 1, "v8": 1, "uipopover": 1, - "popover-view": 2, - "native-component": 3, - "nsurlsession": 2, - "uploadservice": 2, - "file-upload": 2, - "tor": 2, - "socks5": 2, - "streams": 2, - "proxy": 2, "vpn": 1, - "design-system": 2, - "wrapper": 4, "ndef": 1, - "form-validation": 2, "dx": 1, "wix": 1, "error-boundary": 1, "error-handler": 1, "componentdidcatch": 1, - "framework": 3, - "adobe": 2, - "adobe-experience-platform": 2, "adobe-analytics": 1, - "payment-request": 2, "sca": 1, "strong-customer-authentication": 1, - "2-factor": 2, - "2fa": 3, - "payment-intents": 2, - "tracker": 2, - "apple-health": 2, "googlefit": 1, "fitnessapi": 1, "steps": 1, - "body": 2, "signature-pad": 1, "error-handling": 1, "undo-redo": 1, "svg-export": 1, "nsuserdefaults": 1, "user-defaults": 1, - "sharedpreferences": 2, - "userdefaults": 1, - "3d": 2, + "shared-preferences": 1, "babylon": 1, "babylon.js": 1, "babylonjs": 1, @@ -144375,47 +148045,31 @@ "files": 1, "courier": 1, "upload-blobs": 1, - "benchmark": 2, - "vision": 3, "snapchat": 1, - "ai": 8, - "worklet": 3, "frame": 1, "tcp-socket": 1, - "tls": 2, - "ssl": 3, "tcp-server": 1, "tcp-client": 1, "scroller": 1, - "ticker": 3, - "starter": 2, "absolute": 1, "imports": 1, - "async": 6, "styled": 1, "visualiser": 1, "husky": 1, "startup": 1, - "fast-image": 2, "authentication-flow": 1, "zustand": 1, - "react-query": 2, "styled-system": 1, "background-animation": 1, "hold-menu": 1, "context-menu": 1, "hold-to-open": 1, - "atomic-css": 2, - "service": 3, - "background-task": 2, "image-box": 1, "image-modal": 1, "stora": 1, - "state": 15, "testing-library": 1, "anhtuank7c": 1, "ctlabvn": 1, - "dark-mode": 5, "klarna-featured": 1, "scalable": 1, "scales-width": 1, @@ -144424,7 +148078,6 @@ "expo-screen-capture": 1, "stripe-payments": 1, "stripe-payment": 1, - "breeffy": 2, "wi-fi": 1, "settings-enabler": 1, "settingsclient": 1, @@ -144433,20 +148086,14 @@ "android-device": 1, "re-state": 1, "restate": 1, - "react-re-state": 1, - "context": 3, - "react-context": 2, "global-state": 1, "global": 1, - "react-global-state": 1, - "global-state-for-react": 1, + "global-state-for": 1, "see-more": 1, "read-more": 1, "see-less": 1, "binary-search": 1, "read-more-less": 1, - "lifecycle": 2, - "image-processing": 3, "image-manipulator": 1, "photo-processing": 1, "photo-manipulator": 1, @@ -144455,7 +148102,6 @@ "weather": 1, "weather-chart": 1, "weather-forecast": 1, - "toast-notifications": 3, "simple-radio-buttons": 1, "radio-buttons-group": 1, "radio-group": 1, @@ -144477,11 +148123,9 @@ "largelist": 1, "large": 1, "bigdata": 1, - "big": 2, "massive": 1, "virtualized-list": 1, "mobile-list": 1, - "ui-library": 8, "efficient-list": 1, "memory-optimization": 1, "recycler-view": 1, @@ -144497,7 +148141,6 @@ "barmode": 1, "setbarmode": 1, "light": 1, - "dark": 2, "light-style": 1, "dark-style": 1, "status-bar-mode": 1, @@ -144519,22 +148162,16 @@ "figma": 1, "retina": 1, "hole": 1, - "tint": 2, "click-through": 1, "soft-input": 1, "avoid-soft-input": 1, - "avoid-keyboard": 2, - "css-in-js": 5, - "alipay": 2, "uiwjs": 1, "uiw": 1, "支付宝": 1, "local-storage": 1, "rocksdb": 1, "leveldb": 1, - "realm": 2, "localfirst": 1, - "local-first": 2, "file-system-image-cache": 1, "cfbundleshortversionstring": 1, "cfbundleversion": 1, @@ -144547,42 +148184,29 @@ "npm-version": 1, "plist": 1, "semver": 1, - "version": 5, "versioncode": 1, "versionname": 1, "semantic-versioning": 1, "versioning": 1, - "release": 2, - "eventemitter": 3, "loading-image": 1, "progressive": 1, "lazy-load": 1, "progressive-image": 1, "progressive-fast-image": 1, "red": 1, - "production": 2, "exception-handler": 1, "openlibrary": 1, "viroreact": 1, "viro-community": 1, "blacklivesmatter": 1, "nowar": 1, - "augmented-reality": 2, - "ar": 2, "bundle-visualizer": 1, "bundle-size": 1, - "visualizer": 2, "reporter": 1, "responsive-height": 1, "responsive-width": 1, - "responsive-font-size": 2, - "responsive-dimensions": 2, "hacktoberfest2021": 1, "hacktoberfest2022": 1, - "security": 11, - "curved": 2, - "react-pager": 1, - "react-tabs": 1, "jail": 1, "break": 1, "jail-break": 1, @@ -144592,103 +148216,70 @@ "jailbreak": 1, "suggestions": 1, "chip": 1, - "tags": 3, - "giphy": 2, - "gifs": 2, "giphy-sdks": 1, - "shadows": 2, - "automatic": 2, "cross": 1, "shadow-2": 1, - "native-shadow": 1, "borders": 1, "radiuses": 1, - "new": 2, "improved": 1, "turbolinks": 1, "pwa": 1, - "rails": 2, "hybrid": 1, "image-labeling": 1, - "vision-camera": 5, "frame-processor-plugin": 1, "mlkit-vision": 1, - "barcode-generator": 3, "shared-values": 1, "datadog": 1, "pagescrollview": 1, "flex-grow": 1, "fix": 1, "system-ui-visibility": 1, - "detector": 3, "generating-barcodes": 1, "tachyon": 1, "tachyons": 1, - "category": 2, - "compression": 4, - "compress": 3, "compress-images": 1, "compress-videos": 1, - "compressor": 2, "compress-audio": 1, - "whatsapp": 2, "uploader": 1, "create-thumbnail": 1, - "video-metadata": 2, "bitrate": 1, "exif": 1, - "phone-number": 3, "gesture-flip": 1, "panresponder": 1, "month-year-picker": 1, - "interactive": 5, "absolute-path": 1, "resolver": 1, "multi-selector": 1, "neomorph": 1, "neomorphism": 1, - "neumorphism": 2, "skeuomorphic": 1, "skeuomorphism": 1, "shadowbox": 1, "neomorphism-view": 1, - "inner-shadow": 2, "shadow-svg": 1, "headphones": 1, "audio-jack": 1, "mpandroidchart": 1, - "alerts": 2, - "performant": 1, "openalpr": 1, "camera-component": 1, - "opencv": 2, "multi-bar": 1, "dual-tone-button": 1, - "buttons": 2, "loading-support": 1, "dual-tone-buttons": 1, - "loading-indicator": 2, - "react-component-pdf-viewer-view-android-ios-pdf": 1, + "component-pdf-viewer-view-android-ios-pdf": 1, "hacktoberfest2020": 1, "view-android-ios-ui-screenshot-snapshot-testing": 1, "freeze": 1, - "mlkit": 2, - "ocr": 2, "home-indicator": 1, "prefershomeindicatorautohidden": 1, - "lazy-loading": 2, "load-more": 1, "select-country": 1, "paper-onboarding": 1, "redash": 1, "cardscan": 1, "social-signin": 1, - "app-icon": 3, "bounceable-component": 1, "rn-bounceable": 1, - "edge-to-edge": 4, - "system-bar": 3, - "system-bars": 2, "codegen": 1, "index.js": 1, "macro": 1, @@ -144702,8 +148293,6 @@ "logo": 1, "creditcard": 1, "sf": 1, - "symbols": 3, - "sfsymbols": 2, "symbol": 1, "store-kit": 1, "app-gallery": 1, @@ -144713,7 +148302,6 @@ "review-is-sent-to-the-app-gallery": 1, "in-app-comment": 1, "review-api": 1, - "state-management": 7, "state-persistence": 1, "shipt": 1, "visual-regression": 1, @@ -144725,9 +148313,6 @@ "expo-video-player": 1, "videoplayer": 1, "expo-videoplayer": 1, - "passkey": 4, - "passkeys": 3, - "passwordless": 3, "pdf417": 1, "ean13": 1, "port": 1, @@ -144739,25 +148324,16 @@ "paginate": 1, "gromore": 1, "ad": 1, - "material-you": 2, "personalization": 1, "session": 1, - "jwt": 4, - "hashing": 2, - "cpp": 8, "icomoon": 1, - "svg-icons": 3, "chat-ui": 1, "gauge": 1, "insta-story": 1, - "story": 3, "alphabet": 1, "letters": 1, - "address": 2, "placeholders": 1, - "share-extension": 3, "custom-view": 1, - "share-intent": 2, "string": 1, "tabstring": 1, "stringtab": 1, @@ -144766,11 +148342,9 @@ "solito": 1, "tamagui": 1, "tag-input": 1, - "visibility": 3, "visbility-sensor": 1, "scheduling": 1, "channels": 1, - "notifee": 2, "pushkit": 1, "push-kit": 1, "actionable-notifications": 1, @@ -144781,21 +148355,14 @@ "arguments": 1, "detox": 1, "appium": 1, - "maestro": 3, - "numbers": 2, - "admob-native-ads": 1, "admob-ads": 1, "google-admob": 1, "advanced": 1, - "native-advanced-ads": 1, - "admob-native-advanced-ads": 1, - "graph": 6, + "advanced-ads": 1, + "admob-advanced-ads": 1, "stock": 1, "beautiful": 1, - "wallet": 4, - "skia": 10, "linegraph": 1, - "web3": 3, "bignumber": 1, "bn": 1, "math": 1, @@ -144807,10 +148374,8 @@ "segmented-gauge": 1, "searchable-select": 1, "selectbox": 1, - "searchable": 2, "actions-sheet": 1, "filterable": 1, - "leaflet": 2, "leaflet-map": 1, "focused-input": 1, "text-changed": 1, @@ -144830,23 +148395,16 @@ "bundler": 1, "card-scanner": 1, "cupertino": 1, - "slideshow": 2, - "wheelpicker": 2, "place-picker": 1, "reactnativeplacepicker": 1, "app-clip": 1, "reactnativeappclip": 1, "brotli": 1, - "crypto.getrandomvalues": 2, - "get-random-values": 2, - "getrandomvalues": 2, "webcrypto": 1, - "random": 3, "recyclerlistview": 1, "prettier": 1, "m1": 1, "arm64": 1, - "data-visualization": 3, "donut": 1, "area": 1, "radar": 1, @@ -144854,18 +148412,11 @@ "pyramid": 1, "barchart": 1, "piechart": 1, - "line-charts": 2, - "pie-chart": 2, - "donut-chart": 2, - "rxn": 2, "gamepad": 1, "mouse": 1, "keyboard-events": 1, "gamepad-inputs": 1, - "tailwind-css": 2, "preact": 1, - "metro": 3, - "webassembly": 2, "swatches": 1, "rgb": 1, "hex": 1, @@ -144876,37 +148427,28 @@ "renimated": 1, "dynamic-color": 1, "palette-generation": 1, - "picture": 2, - "pan": 3, "zoom-image": 1, - "zoomable-image": 2, "likashefqet": 1, "likashefi": 1, "expo-music-picker": 1, "music-picker": 1, "expomusicpicker": 1, "music-metadata": 1, - "document-scanner": 2, "collapsible-card": 1, "ui-elements": 1, "icon-picker": 1, "mrz": 1, "machine-readable-zone": 1, "optical-character-recognition": 1, - "@shopify/skia": 1, + "@shopify/-skia": 1, "apple-wallet": 1, "pkpass": 1, "google-wallet": 1, "google-wallet-api": 1, - "passkit": 2, - "sendbird": 2, - "real-time": 2, - "user-authentication": 1, "channel-management": 1, "sdk-integration": 1, "feature-rich": 1, "social-app": 1, - "customer-support": 3, "audio-calls": 1, "group-calls": 1, "voice-calls": 1, @@ -144921,7 +148463,6 @@ "bluetooth-classic": 1, "bluetooth-adapter": 1, "external-accessory": 1, - "volume": 3, "mute": 1, "silent": 1, "amazon-ivs": 1, @@ -144934,9 +148475,7 @@ "npmjs": 1, "clock-view": 1, "basic-components": 1, - "react-tab": 1, "reactnative-animation-challenges": 1, - "react-animation": 1, "easy-to-use": 1, "rn-header": 1, "actionbar": 1, @@ -144946,16 +148485,13 @@ "onscroll-faltlist-animation": 1, "card-animaiton": 1, "flatlist-card": 1, - "animation-library": 2, "card-animations": 1, "reactnative-ui": 1, - "stagger-view": 2, "rn-stagger-view": 1, "stagger-list": 1, "rn-stagger-list": 1, "reactnative-list-view": 1, "mindinventory": 1, - "starter-kit": 2, "boilerplate-template": 1, "starter-template": 1, "speedview": 1, @@ -144968,7 +148504,6 @@ "renderer": 1, "marked-js": 1, "typeahead": 1, - "dropdown-menu": 3, "autocomplete-suggestions": 1, "calendar-kit": 1, "calendar-week-view": 1, @@ -144980,13 +148515,10 @@ "perspective-transformation": 1, "matchmedia": 1, "mediaquery": 1, - "react-responsive": 1, "match-media": 1, "breakpoint": 1, "validated-form": 1, - "form-component": 2, "pin-input": 1, - "otp": 6, "confetti": 1, "cannon": 1, "explosion": 1, @@ -144994,9 +148526,7 @@ "particles": 1, "calendar-component": 1, "image-cropping": 1, - "nativewind": 1, "expo-maps-polygon-editor": 1, - "editor": 4, "polygon-editor": 1, "maps-draw": 1, "polygon-overlay": 1, @@ -145004,17 +148534,12 @@ "tabbed-sections": 1, "tabbed-section-list": 1, "autoplay": 1, - "stories": 2, "useeffect": 1, "usestate": 1, "system": 1, "setting": 1, "airplane": 1, - "quick-actions": 2, - "app-shortcuts": 2, - "home-screen": 3, "actions": 1, - "uiapplicationshortcutitem": 2, "shortcut": 1, "hotkeys": 1, "reactnativekeys": 1, @@ -145031,10 +148556,6 @@ "single": 1, "categorizable": 1, "sub-item": 1, - "rtl-support": 2, - "libsodium": 3, - "sodium": 3, - "type": 2, "hyperlinks": 1, "hyper-link": 1, "mention": 1, @@ -145043,23 +148564,15 @@ "night-mode": 1, "user-interface-style": 1, "cicd": 1, - "widget": 3, "circle-chart": 1, "circular-chart": 1, - "data": 2, - "flux": 3, "suspense": 1, "concurrent-mode": 1, "data-fetching": 1, "data-cache": 1, - "api-client": 2, "normalized-cache": 1, "swr": 1, - "front-end": 3, "expogo": 1, - "middleware": 2, - "websocket": 2, - "rest": 1, "graphql": 1, "rpc": 1, "dynamic-data": 1, @@ -145074,10 +148587,7 @@ "advertising": 1, "health-connect": 1, "health-sdk": 1, - "line-chart": 2, "chart-library": 1, - "ui-component": 6, - "reanimated3": 4, "qrcode-svg": 1, "qrcode-styled": 1, "rn-qr-generator": 1, @@ -145086,10 +148596,6 @@ "vertical-slider": 1, "column-slider": 1, "rn-vertical-slider": 1, - "chatbot": 3, - "chatgpt": 2, - "cropper": 3, - "rotation": 2, "month": 1, "12-columns": 1, "n-columns": 1, @@ -145099,15 +148605,12 @@ "zero-dependency": 1, "amap": 1, "analytics-tracking": 1, - "ssl-pinning": 2, "pki": 1, "mock-api": 1, "pretender": 1, "prototype": 1, - "server": 3, "mockapi": 1, "typescipt": 1, - "selection": 4, "multiple-select": 1, "pull-down-menu": 1, "combo-box": 1, @@ -145117,9 +148620,7 @@ "pdfrenderer": 1, "pdfkit": 1, "code-hightlighter": 1, - "syntax-highlighter": 1, "code-highlight": 1, - "syntax-highlighting": 2, "screenguard": 1, "protection": 1, "prevent": 1, @@ -145127,7 +148628,6 @@ "screenshot-prevent": 1, "screenshot-blocker": 1, "screenshot-detector": 1, - "screenshot-protection": 2, "screenshot-prevention": 1, "screenshot-blocking": 1, "screenshot-block": 1, @@ -145141,36 +148641,24 @@ "apearance": 1, "rsa": 1, "numero": 1, - "visualization": 4, "autofocus": 1, "next-field": 1, "enter": 1, "onenter": 1, - "json-schema": 2, - "react-form": 1, "apple-music-api": 1, - "jni": 3, "keys": 1, "jni-android": 1, "jni-ios": 1, "protected": 1, "undecryptable": 1, "envs": 1, - "i9n": 2, "icu": 1, "messageformat": 1, - "multilingual": 2, - "click-outside": 2, - "i18n-react": 1, "per-app": 1, - "google-pay": 2, "android-pay": 1, - "expo-plugin": 3, "e2e": 1, "is-e2e": 1, "is-maestro": 1, - "android-widget": 2, - "home-screen-widget": 2, "mergerefs": 1, "kit": 1, "situm": 1, @@ -145181,7 +148669,6 @@ "registration": 1, "ory": 1, "palette-api": 1, - "vimeo": 2, "duration": 1, "alarm": 1, "durationpicker": 1, @@ -145197,14 +148684,12 @@ "expo-time-picker": 1, "expo-timepicker": 1, "expo-durationpicker": 1, - "package": 3, "nanohttpd": 1, "gcdhttpserver": 1, "webserver": 1, "http-server": 1, "rest-api": 1, "bcrypt": 1, - "hash": 4, "stagger": 1, "exit-animation": 1, "enter-animation": 1, @@ -145215,32 +148700,23 @@ "news-ticker": 1, "expo-drag-drop-content-view": 1, "expodragdropcontentview": 1, - "bottom-tabs": 2, "wave": 1, - "physics": 2, "swipeable-elements": 1, "app-tour": 1, "step-by-step": 1, - "spotlight": 1, "spotlight-tour": 1, "tour": 1, "user-guide": 1, - "react-hook-form": 2, "mask-input": 1, "international-number-phone": 1, "custom-lib": 1, - "codes": 2, - "flags": 2, "menubar-app": 1, "otp-verify": 1, - "otp-input": 4, "otp-entry": 1, - "otp-text-input": 2, "anday": 1, "anday013": 1, "anday2000": 1, "entry": 1, - "new-architecture": 9, "photoedit": 1, "devvie-bottom-sheet": 1, "@devvie/bottom-sheet": 1, @@ -145256,10 +148732,7 @@ "datetpicker": 1, "datet-picker": 1, "daterange": 1, - "highlight": 4, "keywords": 1, - "blur-view": 1, - "animate": 1, "animate-blur-view": 1, "tensorflow": 1, "tflite": 1, @@ -145267,12 +148740,9 @@ "tensorflowlite": 1, "tensorflow-lite": 1, "visioncamera": 1, - "arraybuffer": 2, "facial-recognition": 1, "object-detection": 1, - "multithreading": 1, "threads": 1, - "worklets": 2, "reanimted": 1, "gesture-handle": 1, "scrubber": 1, @@ -145280,9 +148750,7 @@ "darkmode": 1, "lightmode": 1, "drop-shadow": 1, - "shadow-android-react-native": 1, - "shadow-react-native": 1, - "shadow-react": 1, + "shadow-android": 1, "expo-camera-characteristics": 1, "expocameracharacteristics": 1, "tabview": 1, @@ -145290,7 +148758,6 @@ "expo-stable-diffusion": 1, "expostablediffusion": 1, "ane": 1, - "coreml": 2, "ipados": 1, "stable-diffusion": 1, "bullet-graph": 1, @@ -145308,21 +148775,17 @@ "auto-route": 1, "local-network-permission": 1, "reactnativelocalnetworkpermission": 1, - "local-network": 2, "switcher": 1, "hermes": 1, "profiler": 1, - "profiling": 2, "expo-dynamic-app-icon": 1, "expodynamicappicon": 1, "expo-video-metadata": 1, "expovideometadata": 1, "video-module": 1, - "turbo-modules": 2, "provider": 1, "swipe-picker": 1, "dynamic-select": 1, - "select-picker": 2, "ios-style-android-picker": 1, "ios-android-picker": 1, "on-scroll-select": 1, @@ -145334,10 +148797,6 @@ "assets": 1, "json-viewer": 1, "iterables": 1, - "version-check": 2, - "app-version": 2, - "market-version": 2, - "app-store-version": 2, "pad": 1, "signaturepad": 1, "responsive-font": 1, @@ -145346,45 +148805,35 @@ "media-query": 1, "responsive-size": 1, "responsiveness": 1, - "responsiveness-react-native": 1, "usestyle": 1, "xmtp-sdk": 1, "xmtp": 1, "data-sync": 1, "real-time-data-stream": 1, "live-data": 1, - "swiftui": 4, "expo-squircle-view": 1, "exposquircleview": 1, "assetplugin": 1, "imagemin": 1, "asset-plugin": 1, - "config-plugins": 2, - "prebuild": 2, "trie": 1, "heap": 1, "memory": 1, - "observability": 2, "story-view": 1, "status-view": 1, "rn-story-view": 1, "animated-story": 1, "animated-status": 1, "gesture-story": 1, - "react-reaction": 2, "instagram-stories": 1, "stopwatch": 1, "reset": 1, - "motion": 1, - "framer-motion": 1, - "appkit": 2, "ethereum": 1, "walletconnect": 1, "wagmi": 1, "image-slider-box": 1, "image-slider": 1, "image-paging-slider": 1, - "user": 2, "inactivity": 1, "actioncable": 1, "websockets": 1, @@ -145396,16 +148845,11 @@ "stream": 1, "eventsource": 1, "expo-modules-api": 1, - "expo-modules": 2, "expo-foreground-actions": 1, "expoforegroundactions": 1, - "user-interaction": 2, - "lightweight": 6, - "tab-control": 2, "segmented-tabs": 1, "tabs-navigation": 1, "segmented-navigation": 1, - "rich-text": 2, "wysiwyg-editor": 1, "quill": 1, "storekit2": 1, @@ -145415,7 +148859,6 @@ "openai": 1, "urlsession": 1, "ktor": 1, - "ahap": 2, "corehaptics": 1, "uifeedbackgenerator": 1, "gif-stop": 1, @@ -145425,27 +148868,21 @@ "loop": 1, "tenor": 1, "new-arch-compatible-otp-input": 1, - "two-factor-authentication": 2, "2fa-otp-input": 1, "ios-library": 1, - "newarchitecture": 2, "otp-library": 1, "otp-textfield": 1, - "otp-verification": 2, "websupport": 1, "hello": 1, "windows-hello": 1, - "native-sheet": 1, "modal-sheet": 1, "ssh": 1, "sftp": 1, "sftp-client": 1, "ssh-client": 1, - "network-discovery": 2, "websocket-connection": 1, "portscanning": 1, "cryptocurrency": 1, - "quick": 1, "radiobuttons": 1, "floatingcard": 1, "inputs": 1, @@ -145454,25 +148891,14 @@ "expo-av": 1, "image-caching": 1, "image-loading": 1, - "tanstack": 1, - "qa": 1, "interface": 1, "persistent-storage": 1, - "pub/sub": 2, "rich-editor": 1, "wysiwyg": 1, "wysiwyg-editors": 1, "explorer": 1, - "photo-viewer": 2, - "photo-preview": 2, - "image-preview": 2, "gallery-preview": 1, "nacl": 1, - "segment": 2, - "braze": 3, - "appboy": 2, - "segmentation": 3, - "feature-flags": 2, "marketing-automation": 1, "customer-engagement": 1, "burnt": 1, @@ -145480,7 +148906,6 @@ "expo-insights": 1, "expoinsights": 1, "insights": 1, - "eas": 4, "expo-clipboard": 1, "expo-navigation-bar": 1, "expo-symbols": 1, @@ -145488,14 +148913,10 @@ "adapty": 1, "in-apps": 1, "iap-verification": 1, - "in-app-receipt": 2, - "react-plugin": 1, "receipt-validation": 1, "storekit": 1, "healthicons": 1, "in-app-billing": 1, - "clevertap": 2, - "clevertap-react-native": 1, "engagement": 1, "user-retention": 1, "traffic": 1, @@ -145505,12 +148926,10 @@ "feather": 1, "feather-icons": 1, "loader-kit": 1, - "loading-animations": 2, "file-logger": 1, "cocoalumberjack": 1, "logback": 1, "okta": 1, - "oidc": 2, "ml-kit": 1, "filament": 1, "rendering": 1, @@ -145519,31 +148938,17 @@ "model": 1, "metal": 1, "vulkan": 1, - "tiny": 2, "sync-engine": 1, "supabase": 1, - "client-library": 2, - "isomorphic": 1, - "mit-license": 1, - "node-js": 1, - "nuxt": 1, - "orm": 3, - "postgres": 3, "pushalert": 1, - "toastify": 4, - "react-toastify": 1, - "toastify-react-native": 1, "expo-cli": 1, "expo-quick-actions": 1, "expoquickactions": 1, + "dynamic-app-icon": 1, "badge-generator": 1, - "expo-share-extension": 2, - "expo-config-plugin": 2, "share-share-intent": 1, "multilanguage": 1, - "country-codes": 2, "google-autocomplete": 1, - "google-places-autocomplete": 2, "paste": 1, "wear-os": 1, "wearable": 1, @@ -145562,28 +148967,15 @@ "expo-android-account-manager": 1, "expoandroidaccountmanager": 1, "heremaps": 1, - "playback": 1, "sample": 1, "rnfs": 1, "lighttpd": 1, "embed": 1, - "management": 3, - "sms-verification": 1, - "collaborate": 2, "student-vscode": 1, "razorpay": 1, - "moengage": 2, - "appsflyer": 2, "toastable": 1, "ruler-picker": 1, - "rneui": 3, - "themed": 3, - "toasts": 2, "sonner": 1, - "sonner-native": 1, - "qr-code-generator": 2, - "mobile-native-barcode-generator": 2, - "npm-library": 2, "expo-barcode": 1, "expobarcode": 1, "expo-library": 1, @@ -145592,14 +148984,10 @@ "animated-digits": 1, "animated-number": 1, "animated-rollilng-numbers": 1, - "press": 2, "hold": 1, "long-press": 1, - "ping": 3, - "ping-android": 3, "intercom": 1, "articles": 1, - "shopify": 2, "flashlist": 1, "calendar-ui": 1, "huawei": 1, @@ -145621,13 +149009,12 @@ "ean": 1, "upc": 1, "aware": 1, - "react-natve": 1, + "natve": 1, "uivisualeffectview": 1, "cafilter": 1, "stack-carousel": 1, "carousel-stack": 1, "stack-animation": 1, - "vibration": 2, "hla": 1, "ogg": 1, "hapticlabs": 1, @@ -145645,18 +149032,12 @@ "safe": 1, "pentest": 1, "security-tools": 1, - "validate": 2, "magic-number": 1, "magic-number-validator": 1, "magic-numbers": 1, - "cpf": 3, - "cnpj": 3, "isemail": 1, - "javascript-library": 3, - "typescript-library": 2, "validate-js": 1, "azure-translator": 1, - "translator": 2, "translator-code": 1, "i18n-json-generator": 1, "translations": 1, @@ -145664,18 +149045,11 @@ "azure-translation-services": 1, "azure-translator-code": 1, "communityexchange": 1, - "persist": 1, - "react-library": 1, - "react-redux-persist": 1, "redux-persist2": 1, - "redux-toolkit": 2, - "hotp": 2, - "otpauth": 2, "otp-auth": 1, "nitro-totp": 1, "nitro-hotp": 1, - "nitro-modules": 8, - "nitrogen": 3, + "cplusplus": 1, "gerador": 1, "validador": 1, "documento": 1, @@ -145686,11 +149060,7 @@ "validador-de-cnpj": 1, "gerador-de-cpf-e-cnpj": 1, "validador-de-cpf-e-cnpj": 1, - "back-end": 2, "maps-leaflet": 1, - "react-leaflet-native": 1, - "react-leaflet": 1, - "react-map": 1, "expo-speech-recognition": 1, "expospeechrecognition": 1, "webkitspeechrecognition": 1, @@ -145699,24 +149069,19 @@ "no-babel": 1, "easy-setup": 1, "one-package": 1, - "mobile-ui": 4, "minimalist": 1, "mobile-first": 1, "nativeflowcss": 1, "utility-objects": 1, "mobile-design": 1, "mobile-styling": 1, - "expo-updates": 2, "expo-in-app-updates": 1, "expoinappupdates": 1, - "expo-module": 3, - "in-app-updates": 2, "expo-manifests": 1, "expo-structured-headers": 1, "expo-json-utils": 1, "jsonobjects": 1, "nsdictionaries": 1, - "skeleton-loader": 2, "expo-skeleton-loader": 1, "skeleton-loading": 1, "expo-skeleton-loading": 1, @@ -145725,7 +149090,6 @@ "easy-skeletion-loading": 1, "reactions": 1, "animated-reactions": 1, - "reaction": 1, "seamless-reactions": 1, "seamless": 1, "seamless-gesture-reaction": 1, @@ -145751,10 +149115,8 @@ "version-code": 1, "application-info": 1, "app-integration": 1, - "android-app": 3, "muscle": 1, "muscles": 1, - "highlighter": 2, "bones": 1, "human-body": 1, "freerasp": 1, @@ -145776,10 +149138,8 @@ "webpconverter": 1, "image-compression": 1, "webp-converter": 1, - "turbo-module": 4, "locale": 1, "device-locale": 1, - "native-sass": 1, "nativesass": 1, "sassy": 1, "nesting": 1, @@ -145789,10 +149149,8 @@ "fusioncharts": 1, "plaid": 1, "plaid-link": 1, - "immer": 3, "resources": 1, "generate": 1, - "scaffold": 2, "x": 1, "kiss": 1, "callbacks": 1, @@ -145801,8 +149159,6 @@ "vuex": 1, "pareto": 1, "xhr": 1, - "ajax": 2, - "http-client": 2, "reanimated-picker": 1, "reanimated-select": 1, "reanimated-dropdown": 1, @@ -145824,15 +149180,12 @@ "comlink": 1, "localize-date": 1, "juhuu": 1, - "schema": 2, "inference": 1, - "classname": 3, "classlist": 1, "merge": 1, "conflict": 1, "override": 1, "utility-classes": 1, - "classnames": 3, "dayjs": 1, "moment": 1, "date-formatting": 1, @@ -145848,7 +149201,6 @@ "npm-cli": 1, "visibility-sensor": 1, "visibilitysensor": 1, - "in-view": 2, "inview": 1, "waveform": 1, "audio-waveform": 1, @@ -145870,18 +149222,14 @@ "animated-sticky-table": 1, "tree-selection": 1, "select-list": 1, - "tree-view": 2, "nested-tree": 1, "nested-tree-dropdown": 1, "nested-dropdown": 1, "tree-dropdown": 1, - "react-tree": 1, "tree-ui": 1, "hierarchical": 1, "hierarchical-view": 1, "hierarchical-dropdown": 1, - "tree-select": 2, - "tree-structure": 2, "imagepreview": 1, "radial-slider": 1, "circular-slider": 1, @@ -145907,7 +149255,6 @@ "toastier": 1, "toastiers": 1, "short-message": 1, - "toast-message": 2, "time-format": 1, "hour-format": 1, "12-hour": 1, @@ -145915,11 +149262,7 @@ "notify": 1, "expo-push-notifications": 1, "expo-push-notification": 1, - "expo-push-notifications-react-native": 1, - "expo-push-notification-react-native": 1, - "native-notify": 1, - "native-notify-push-notifications": 1, - "toast-notification": 3, + "notify-push-notifications": 1, "irano": 1, "expo-irano": 1, "exposhareextension": 1, @@ -145927,7 +149270,6 @@ "oniguruma": 1, "regex": 1, "textmate": 1, - "turbo": 3, "google-navigation": 1, "navigation-sdk": 1, "navsdk": 1, @@ -145939,9 +149281,7 @@ "useapihook": 1, "apihook": 1, "low-latency": 1, - "react-tree-view": 1, - "react-tree-select": 1, - "react-checkbox-tree": 1, + "checkbox-tree": 1, "checkbox-list": 1, "tree-checkbox": 1, "hierarchical-list": 1, @@ -145959,7 +149299,6 @@ "fishjam": 1, "fishjamcloud": 1, "membranewebrtc": 1, - "streaming": 2, "animated-ellipsis": 1, "rn-animated-ellipsis": 1, "loading-animation": 1, @@ -145968,18 +149307,14 @@ "dragselect": 1, "drag-select": 1, "visionos": 1, - "modules": 3, "views": 1, "expand": 1, "headless": 1, - "jsx": 2, "update-flow": 1, "flexible-update": 1, "immediate-update": 1, - "app-update": 2, "mobile-updates": 1, "lightweight-library": 1, - "in-app-update": 2, "in-app-update-android": 1, "serial": 1, "serialport": 1, @@ -145994,7 +149329,6 @@ "android-apk-install": 1, "mobile-app-permissions": 1, "urovo": 1, - "nitro-module": 1, "@roman.sytnyk/blur-app-in-recents": 1, "recents": 1, "aws4": 1, @@ -146012,7 +149346,6 @@ "ai-chatbot": 1, "app-framework": 1, "toolkit": 1, - "reducer": 4, "slice": 1, "predictable": 1, "functional": 1, @@ -146022,11 +149355,8 @@ "elm": 1, "memoized-selectors": 1, "thunk": 1, - "awesome": 4, "screens": 1, "hot-update": 1, - "ota": 2, - "update": 3, "hotupdate": 1, "ota-hot-update": 1, "custom-ota": 1, @@ -146035,7 +149365,6 @@ "theoplayer": 1, "eas-update": 1, "expo-update": 1, - "self-hosted": 2, "expo-health-connect": 1, "expohealthconnect": 1, "fetch-wrapper": 1, @@ -146053,17 +149382,12 @@ "request-throttle": 1, "axios-api": 1, "browserify": 1, - "buffer": 2, "compatible": 1, "dataview": 1, "uint8array": 1, - "bugsnag": 2, - "monitoring": 2, - "stability": 2, "pdf-generation": 1, "image-to-pdf": 1, "document-creation": 1, - "pdf-generation-react": 1, "text-highlighting": 1, "text-selection": 1, "text-marker": 1, @@ -146076,7 +149400,6 @@ "typinganimation": 1, "style-variance-authority": 1, "sva": 1, - "variants": 2, "draggable-flex": 1, "draggable-grid": 1, "reorder": 1, @@ -146090,11 +149413,9 @@ "expoaudiostudio": 1, "expo-widgets": 1, "expowidgets": 1, - "statechart": 2, "state-machine": 1, "finite-state-machine": 1, "finite-automata": 1, - "scxml": 2, "interpreter": 1, "machine": 1, "expo-totp": 1, @@ -146119,14 +149440,12 @@ "app-development": 1, "application": 1, "expo-audio": 1, - "@realm/react": 1, + "@realm/": 1, "appzung": 1, "live-updates": 1, "hot-updates": 1, "expo-ota": 1, - "appcenter": 2, "ota-update": 1, - "optimization": 2, "optimize": 1, "expo-googlenearby-connection": 1, "expogooglenearbyconnection": 1, @@ -146142,12 +149461,8 @@ "onion-service": 1, "expo-selectable-text": 1, "exposelectabletext": 1, - "translate": 3, "tasks": 1, "multi-step-form": 1, - "multi-step": 2, - "stepper": 2, - "wizard": 2, "highlighted": 1, "highlight-text": 1, "highlighted-text": 1, @@ -146157,7 +149472,7 @@ "nepali-picker": 1, "nepali-date-picker": 1, "new-relic": 1, - "native-sounds": 1, + "sounds": 1, "notifications-sounds": 1, "oss": 1, "license": 1, @@ -146165,10 +149480,8 @@ "license-management": 1, "brownfield": 1, "executorch": 1, - "llm": 5, "xnnpack": 1, - "llama": 2, - "@splicer97/android-keyboard-adjust": 1, + "@splicer97/-android-keyboard-adjust": 1, "android-keyboard-adjust": 1, "@rn-android-keyboard-adjust": 1, "keyboard-adjust": 1, @@ -146189,14 +149502,11 @@ "save-gallery": 1, "img-buffer": 1, "image-buffer": 1, - "jsi-react-native": 2, "img-gallery": 1, "save-img-buffer": 1, "save-to-gallery": 1, "xxhash": 1, "xxhash3": 1, - "xxhash3-react-native": 1, - "hash-react-native": 1, "hash-xxhash": 1, "fast-hash": 1, "quick-hash": 1, @@ -146208,7 +149518,6 @@ "xxhash-library": 1, "config-cpp": 1, "config-jsi": 1, - "react-config": 1, "lynx": 1, "lynx-js": 1, "lynxjs": 1, @@ -146245,11 +149554,9 @@ "time-input": 1, "google-translate": 1, "deepl": 1, - "image-compressor": 2, "in-app-browser-module": 1, "nitro-in-app-browser": 1, "mediapipe": 1, - "local-llm": 3, "version-management": 1, "build-automation": 1, "release-management": 1, @@ -146297,26 +149604,23 @@ "expoclickoutside": 1, "ortc": 1, "sfu": 1, + "client-library": 1, "advanced-checkbox": 1, "group-checkbox": 1, "bottom-sheet-stepper": 1, "gorhom": 1, "image-compare": 1, "before-after-slider": 1, - "compare": 3, "decryption": 1, "encoding": 1, "decoding": 1, "mqtt": 1, "cocoamqtt": 1, "paho": 1, - "google-api": 1, "shakebugs": 1, "report": 1, "shake-sdk": 1, "bug-reports": 1, - "better-auth": 3, - "wav": 2, "mp3": 1, "converter": 1, "lame": 1, @@ -146332,13 +149636,11 @@ "queue": 1, "wavpack": 1, "audio-decoder": 1, - "audio-processing": 1, "file-conversion": 1, "progress-events": 1, "gzip": 1, "decompress": 1, "expo-emoji-picker": 1, - "mobile-security": 2, "stallion": 1, "vlc": 1, "mp4": 1, @@ -146346,10 +149648,7 @@ "rtmp": 1, "vlc-player": 1, "airship": 1, - "react-native-velements": 2, - "rn-vui": 2, "elements-themed": 1, - "rudder": 11, "db-encryption": 1, "amplitude": 1, "singular": 1, @@ -146362,16 +149661,13 @@ "shazam": 1, "animated-checkbox": 1, "customizable-checkbox": 1, - "expo-passkey": 2, "expopasskeymodule": 1, - "biometric": 2, "status-bar-height": 1, "status-bar-height-ios": 1, "status-bar-height-android": 1, "status-bar-height-ios-android": 1, "bottom-inset": 1, "safe-area-inset": 1, - "matomo": 2, "foldable": 1, "fold-detection": 1, "foldable-phone": 1, @@ -146382,9 +149678,7 @@ "multi-window": 1, "foldable-support": 1, "foldable-devices": 1, - "google-sso": 1, "nitro-google-sso": 1, - "google-signin": 2, "sso": 1, "pdf-lib": 1, "create": 1, @@ -146392,12 +149686,7 @@ "creation": 1, "modification": 1, "editing": 1, - "deep-equal": 3, - "equality": 2, - "lodash": 2, "isequal": 1, - "vue": 2, - "angular": 2, "object-comparison": 1, "array-comparison": 1, "deep-comparison": 1, @@ -146417,9 +149706,7 @@ "sexagesimal": 1, "latlng": 1, "debounce": 1, - "react-hook": 1, "usedebounce": 1, - "react-use": 1, "places-sdk": 1, "google-places-sdk": 1, "expo-iap": 1, @@ -146427,7 +149714,6 @@ "inapp-billing": 1, "inapppurchase": 1, "openiap": 1, - "emitter": 2, "pubsub": 1, "mitt": 1, "event-handlers": 1, @@ -146437,7 +149723,6 @@ "yup": 1, "joi": 1, "superstruct": 1, - "zod": 3, "vest": 1, "io-ts": 1, "effect-ts": 1, @@ -146453,7 +149738,6 @@ "standard-schema": 1, "schema-validation": 1, "resolvers": 1, - "class-variance-authority": 2, "cva": 1, "stitches": 1, "vanilla-extract": 1, @@ -146464,22 +149748,15 @@ "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, - "drizzle": 3, - "pg": 2, - "mysql": 2, "singlestore": 1, - "postgresql": 2, - "ts": 3, - "drizzle-orm": 2, - "exit": 2, "close": 1, "shutdown": 1, "kill": 1, @@ -146494,9 +149771,6 @@ "error-alert": 1, "warning-alert": 1, "pushdown": 1, - "webauthn": 2, - "credential-manager": 1, - "identity": 2, "fido2": 1, "password-manager": 1, "signup": 1, @@ -146529,13 +149803,9 @@ "ipv4": 1, "ipv6": 1, "public": 1, - "external": 2, "own": 1, "visibility-detection": 1, "user-experience": 1, - "lottie-splash-screen": 2, - "mutable": 2, - "copy-on-write": 2, "mutative": 1, "immutability": 1, "mutation": 1, @@ -146549,13 +149819,11 @@ "ios-exit": 1, "system-exit": 1, "apple-tv": 1, - "native-keyboard": 1, "tvos-keyboard": 1, "voice-typing": 1, "voice-search": 1, "uisearchcontroller": 1, "tv": 1, - "certificate-pinning": 1, "network-security": 1, "ssl-pinning-tvos": 1, "secure-networking": 1, @@ -146569,13 +149837,10 @@ "apple-watch-message-transfer": 1, "apple-watch-file-transfer": 1, "navigation-buttons": 1, - "react-blur": 1, "modern-blur": 1, "android-blur": 1, "blur-effect": 1, - "blurview": 1, "visualeffectview": 1, - "liquid-glass": 2, "liquidglass": 1, "liquidglassreact": 1, "android-update": 1, @@ -146584,8 +149849,6 @@ "rerenders": 1, "intellisense": 1, "jetpack-compose": 1, - "native-ui": 1, - "equal": 2, "equals": 1, "comparison": 1, "object": 1, @@ -146604,7 +149867,7 @@ "mobile-biometrics": 1, "mobile-login": 1, "expo-otp-input": 1, - "react-ntive": 1, + "ntive": 1, "vimeo-player": 1, "vimeo-video": 1, "vimeo-bridge": 1, @@ -146659,28 +149922,23 @@ "expo-sqlite": 1, "enum": 1, "enumeration": 1, - "tool": 1, "node.js": 1, "mini-program": 1, - "assembly-script": 1, "ui-binding": 1, "plugin-system": 1, - "ant-design": 1, - "arco-design": 1, - "vuetify": 1, - "ng-zorro": 1, - "frontend-web": 1, + "vuejs": 1, "font-scale": 1, "width-scale": 1, "height-scale": 1, - "@shayrn/scaler": 1, + "@shayrn/-scaler": 1, "scaler": 1, + "inappbrowser-nitro": 1, "scrollbar": 1, "scroll-indicator": 1, "draggable-scrollbar": 1, "scroll-track": 1, "animated-scroll": 1, - "expo-native-alipay": 1, + "expo-alipay": 1, "exponativealipay": 1, "alipay-sdk": 1, "fullscreen-intent": 1, @@ -146690,26 +149948,21 @@ "foreground-service": 1, "incomming": 1, "expo-router": 1, - "node-api": 2, "napi": 1, "node-addon-api": 1, "addon": 1, "c": 1, - "bindings": 2, "buildtools": 1, "cmake": 1, - "apple-intelligence": 2, "foundation-models": 1, "apple-llm": 1, "apple-foundation-models": 1, "on-device-llm": 1, "natural-language-processing": 1, - "nlp": 1, "text-generation": 1, "structured-output": 1, "offline-ai": 1, "privacy-focused-ai": 1, - "mobile-ai": 1, "ios-llm": 1, "apple-silicon": 1, "neural-engine": 1, @@ -146738,18 +149991,15 @@ "google-authenticator": 1, "two-step-authentication": 1, "deep-equals": 1, - "ping-react-native": 1, "ping-ios": 1, "ping-macos": 1, "launchdarkly": 1, "darkly": 1, "launchdarkly-sdk": 1, - "react-js": 1, "feature-toggles": 1, "managed-by-terraform": 1, "intl": 1, "timezones": 1, - "dates": 2, "times": 1, "expo-toast": 1, "ahooks": 1, @@ -146772,7 +150022,6 @@ "swipe-to-fill": 1, "textinput-suggestion": 1, "nitro-screen-recorder": 1, - "screen-recording": 2, "video-recording": 1, "screen-sharing": 1, "video-capture": 1, @@ -146840,7 +150089,6 @@ "batterystatus": 1, "dynamic-battery-info": 1, "static-battery-info": 1, - "react-native-turbomodule": 1, "expo-roomplan": 1, "exporoomplan": 1, "roomplan": 1, @@ -146854,10 +150102,10 @@ "emoji-select": 1, "elevenlabs": 1, "conversational-ai": 1, - "scandit": 7, - "rich-text-editor": 2, - "tiptap-react-native": 1, - "prosemirror-react-native": 1, + "tiptap": 1, + "prosemirror": 1, + "qr-local-image": 1, + "qr-kit": 1, "live-activity": 1, "rag": 1, "large-language-model": 1, @@ -146891,7 +150139,111 @@ "clerk": 1, "nitro-keyevent": 1, "keyevent": 1, - "androidtv": 1 + "androidtv": 1, + "music-kit": 1, + "app-clips": 1, + "google-auth": 1, + "google-oauth": 1, + "openid-connect": 1, + "social-login": 1, + "one-tap-signin": 1, + "mobile-auth": 1, + "google-identity": 1, + "signin-sdk": 1, + "mobile-oauth": 1, + "google-services": 1, + "google-authentication": 1, + "teleport": 1, + "tunnel": 1, + "re-parent": 1, + "reparent": 1, + "reparentable": 1, + "gateway": 1, + "reparenting": 1, + "expo-core-spotlight": 1, + "expocorespotlight": 1, + "spotlight-search": 1, + "xenon": 1, + "inspector": 1, + "okhttp": 1, + "yt": 1, + "custom-player": 1, + "web-video": 1, + "cronet": 1, + "http2": 1, + "prefetch": 1, + "nitro-text": 1, + "unarchive": 1, + "rar": 1, + "extract": 1, + "cbr": 1, + "cbr-archive": 1, + "cbz": 1, + "cbz-archive": 1, + "asyncstorage-alternative": 1, + "redux-alternative": 1, + "ultrastore": 1, + "zustand-alternative": 1, + "namespaces": 1, + "auto-verify": 1, + "phone-verification": 1, + "restart-newarch": 1, + "newarch": 1, + "mdm": 1, + "old-architecture": 1, + "sms-retriever-nitro": 1, + "sms-android": 1, + "one-time-password-nitro": 1, + "one-time-password-expo": 1, + "one-time-password-new-architecture": 1, + "one-time-password-old-architecture": 1, + "one-time-password-android": 1, + "one-time-password-ios": 1, + "one-time-password-web": 1, + "cool-pdf": 1, + "coolpdf": 1, + "pdf-renderer": 1, + "pdf-viewer-expo": 1, + "hero-ui": 1, + "heroui": 1, + "geocode": 1, + "places-api": 1, + "otp-autofill": 1, + "avasotpautofill": 1, + "autofill": 1, + "appwrite": 1, + "baas": 1, + "deepgram": 1, + "text-intelligence": 1, + "transcription": 1, + "real-time-transcription": 1, + "voice-to-text": 1, + "stt": 1, + "sentiment-analysis": 1, + "reusable-components": 1, + "nayan-ui": 1, + "model-based-design": 1, + "play-age-signals": 1, + "heart-switch": 1, + "toggle-switch": 1, + "app-attest": 1, + "google-maps-plus": 1, + "google-maps-sdk": 1, + "onboarding-screen": 1, + "onboard": 1, + "dotlottie": 1, + "lottie-android": 1, + "lottie-ios": 1, + "framer": 1, + "atproto": 1, + "expo-ios-visual-blur": 1, + "expoiosvisualblur": 1, + "deferred-deep-link": 1, + "reac": 1, + "quickactions": 1, + "background-threads": 1, + "c++-worker-pool": 1, + "threadforge": 1 }, "topicsList": [ "12-columns", @@ -146909,12 +150261,12 @@ "60fps", "@devvie/bottom-sheet", "@iterable/expo-plugin", - "@realm/react", + "@realm/", "@rn-android-keyboard-adjust", "@roman.sytnyk/blur-app-in-recents", - "@shayrn/scaler", - "@shopify/skia", - "@splicer97/android-keyboard-adjust", + "@shayrn/-scaler", + "@shopify/-skia", + "@splicer97/-android-keyboard-adjust", "a11y", "aad", "aaid", @@ -146956,13 +150308,13 @@ "adjust", "admob", "admob-ads", - "admob-native-ads", - "admob-native-advanced-ads", + "admob-advanced-ads", "adobe", "adobe-analytics", "adobe-experience-platform", "ads", "advanced", + "advanced-ads", "advanced-checkbox", "advanced-effects", "advertising", @@ -147019,7 +150371,6 @@ "android-pay", "android-permissions", "android-reader", - "android-shared-preferences", "android-sms", "android-update", "android-video-editor", @@ -147065,7 +150416,6 @@ "animation-tab", "animations", "answers", - "ant-design", "apearance", "api", "api-client", @@ -147075,8 +150425,10 @@ "apn", "apns", "app", + "app-attest", "app-check", "app-clip", + "app-clips", "app-dev", "app-development", "app-distribution", @@ -147142,6 +150494,7 @@ "application-security", "appsflyer", "appstore", + "appwrite", "appzung", "ar", "ar-session", @@ -147150,7 +150503,6 @@ "arc-slider", "archive", "archived", - "arco-design", "area", "area-chart", "arguments", @@ -147171,7 +150523,6 @@ "aspect-ratio", "aspnetcore", "asr", - "assembly-script", "asset", "asset-plugin", "assetplugin", @@ -147180,10 +150531,12 @@ "async", "async-storage", "asyncstorage", + "asyncstorage-alternative", "asyncstorage-wrapper", "atlas", "atomic", "atomic-css", + "atproto", "attribution", "attributiondetails", "audience-network", @@ -147216,9 +150569,11 @@ "auto-route", "auto-scroll", "auto-scrolling", + "auto-verify", "autocomplete", "autocomplete-suggestions", "autocompletion", + "autofill", "autofocus", "autoheight", "autolink", @@ -147228,6 +150583,7 @@ "automation", "autoplay", "avahi", + "avasotpautofill", "avatar", "avatar-group", "avatar-image", @@ -147262,6 +150618,7 @@ "azuread", "b2c", "b64-hmac-md5", + "baas", "babel", "babel-plugin", "babylon", @@ -147279,6 +150636,7 @@ "background-jobs", "background-location", "background-task", + "background-threads", "badge", "badge-generator", "banner", @@ -147419,6 +150777,7 @@ "bullet-chart", "bullet-graph", "bump", + "bun", "bundle", "bundle-size", "bundle-visualizer", @@ -147436,6 +150795,7 @@ "buuble", "c", "c++", + "c++-worker-pool", "cache", "cached", "cached-image", @@ -147499,6 +150859,10 @@ "categorizable", "category", "cbc", + "cbr", + "cbr-archive", + "cbz", + "cbz-archive", "cell", "cellular", "cert-pinning", @@ -147526,6 +150890,7 @@ "checkbox", "checkbox-component", "checkbox-list", + "checkbox-tree", "checkbox-treeview", "checker", "checkout", @@ -147562,10 +150927,10 @@ "clerk", "clerkexpopasskeys", "clevertap", - "clevertap-react-native", "cli", "click-outside", "click-through", + "client", "client-library", "clipboard", "clock", @@ -147627,6 +150992,7 @@ "compatible", "component", "component-library", + "component-pdf-viewer-view-android-ios-pdf", "componentdidcatch", "components", "composer", @@ -147677,6 +151043,8 @@ "conversational-ai", "converter", "cookies", + "cool-pdf", + "coolpdf", "coordinatorlayout", "coords", "copilot", @@ -147706,6 +151074,7 @@ "courier", "coverflow", "cpf", + "cplusplus", "cpp", "crash", "crashlytics", @@ -147720,6 +151089,7 @@ "credit-card-input", "creditcard", "crna", + "cronet", "crop", "crop-tool", "cropper", @@ -147759,6 +151129,7 @@ "custom-lib", "custom-list", "custom-ota", + "custom-player", "custom-star", "custom-tabs", "custom-toast", @@ -147842,8 +151213,10 @@ "deep-equals", "deep-linking", "deep-links", + "deepgram", "deepl", "deeplink", + "deferred-deep-link", "demo", "deno", "deprecated", @@ -147904,6 +151277,7 @@ "documentation", "documento", "dogz", + "dom", "dominant", "donut", "donut-chart", @@ -147911,6 +151285,7 @@ "dot", "dotenv", "dotenv-flow", + "dotlottie", "double", "double-tap", "download", @@ -147951,6 +151326,7 @@ "durationpicker", "dx", "dx-sdk", + "dynamic-app-icon", "dynamic-battery-info", "dynamic-color", "dynamic-data", @@ -148080,6 +151456,7 @@ "explorer", "explosion", "expo", + "expo-alipay", "expo-alternate-app-icons", "expo-android-account-manager", "expo-android-shared-preferences", @@ -148104,6 +151481,7 @@ "expo-clipboard", "expo-code-push", "expo-config-plugin", + "expo-core-spotlight", "expo-dev-client", "expo-device", "expo-document-picker", @@ -148125,6 +151503,7 @@ "expo-in-app-updates", "expo-insights", "expo-intent-launcher", + "expo-ios-visual-blur", "expo-irano", "expo-json-utils", "expo-key-event", @@ -148138,7 +151517,6 @@ "expo-modules", "expo-modules-api", "expo-music-picker", - "expo-native-alipay", "expo-navigation-bar", "expo-network", "expo-notifee-plugin", @@ -148151,9 +151529,7 @@ "expo-pip", "expo-plugin", "expo-push-notification", - "expo-push-notification-react-native", "expo-push-notifications", - "expo-push-notifications-react-native", "expo-quick-actions", "expo-resolve-url", "expo-roomplan", @@ -148209,6 +151585,7 @@ "expobarcode", "expocameracharacteristics", "expoclickoutside", + "expocorespotlight", "expodragdropcontentview", "expodynamicappicon", "expoforegroundactions", @@ -148219,6 +151596,7 @@ "expoimagecroptool", "expoinappupdates", "expoinsights", + "expoiosvisualblur", "expokeyevent", "expolibvlcplayer", "expoliquidglass", @@ -148247,6 +151625,7 @@ "external-accessory", "external-apk-install", "external-display", + "extract", "fab", "fabric", "face-id", @@ -148402,11 +151781,13 @@ "form-validation", "format", "formatting", + "formawesome-core", "formik", "forms", "foundation-models", "frame", "frame-processor-plugin", + "framer", "framer-motion", "framework", "freakycoder", @@ -148415,7 +151796,6 @@ "frida", "front-end", "frontend", - "frontend-web", "fs", "full", "full-page-scroll", @@ -148441,6 +151821,7 @@ "gamepad", "gamepad-inputs", "gaming", + "gateway", "gauge", "gboard", "gcanvas", @@ -148452,6 +151833,7 @@ "generating-barcodes", "generator", "geo-fencing", + "geocode", "geocoder", "geocoding", "geofence", @@ -148487,15 +151869,13 @@ "git", "github", "gl", - "gl-react", - "gl-react-dom", - "gl-react-expo", - "gl-react-native", + "gl-dom", + "gl-expo", "glide", "global", "global-recording", "global-state", - "global-state-for-react", + "global-state-for", "globalization", "glow", "glowing-button", @@ -148507,18 +151887,24 @@ "google-admob", "google-ads", "google-api", + "google-auth", + "google-authentication", "google-authenticator", "google-autocomplete", "google-cast", "google-drive", "google-fit", + "google-identity", "google-login", "google-maps", "google-maps-api", "google-maps-platform", + "google-maps-plus", + "google-maps-sdk", "google-navigation", "google-nearby", "google-nearby-connections", + "google-oauth", "google-pay", "google-photos", "google-place-api", @@ -148533,6 +151919,7 @@ "google-play-games", "google-play-service", "google-play-store", + "google-services", "google-sign-in", "google-signin", "google-sso", @@ -148587,7 +151974,6 @@ "haptics-android", "haptics-ios", "hash", - "hash-react-native", "hash-xxhash", "hashing", "hashtag", @@ -148603,6 +151989,7 @@ "healthicons", "healthkit", "heap", + "heart-switch", "hearts-rating", "height", "height-scale", @@ -148616,8 +152003,10 @@ "helpkit", "heremaps", "hermes", + "hero-ui", "heroicons", "heroiconsui", + "heroui", "hex", "hex-hmac-md5", "hex-md5", @@ -148652,6 +152041,7 @@ "home-screen", "home-screen-widget", "hook", + "hook-form", "hookform", "hooks", "hooks-library", @@ -148678,6 +152068,7 @@ "http", "http-client", "http-server", + "http2", "https", "huawei", "hud", @@ -148693,7 +152084,6 @@ "i10n", "i18n", "i18n-json-generator", - "i18n-react", "i18next", "i9n", "iad", @@ -148802,6 +152192,7 @@ "inapp", "inapp-billing", "inappbrowser", + "inappbrowser-nitro", "inappmessaging", "inapppurchase", "incall", @@ -148841,6 +152232,7 @@ "inset-shadow", "insight", "insights", + "inspector", "insta-story", "instabug", "instagram", @@ -148918,7 +152310,6 @@ "isemail", "isequal", "iso", - "isomorphic", "item", "items", "iterable", @@ -148952,7 +152343,6 @@ "js", "js-bundle", "jsi", - "jsi-react-native", "json", "json-schema", "json-viewer", @@ -149150,6 +152540,8 @@ "loop", "looped", "lottie", + "lottie-android", + "lottie-ios", "lottie-splash-screen", "low", "low-energy", @@ -149187,7 +152579,6 @@ "map-url-scheme", "mapbox", "mapbox-gl", - "mapbox-gl-native", "mapbox-maps", "mapbox-navigation", "mapkit", @@ -149238,6 +152629,7 @@ "mcumgr", "md", "md5", + "mdm", "measue", "measure", "measurement", @@ -149288,7 +152680,6 @@ "minimalist", "mirror", "mit", - "mit-license", "mitt", "mixed", "mixin", @@ -149309,14 +152700,16 @@ "mobile-app-development", "mobile-app-permissions", "mobile-apps", + "mobile-auth", "mobile-authentication", + "mobile-barcode-generator", "mobile-biometrics", "mobile-design", "mobile-development", "mobile-first", "mobile-list", "mobile-login", - "mobile-native-barcode-generator", + "mobile-oauth", "mobile-recording", "mobile-security", "mobile-styling", @@ -149336,6 +152729,7 @@ "modalpicker", "modals", "model", + "model-based-design", "models", "modern", "modern-blur", @@ -149398,6 +152792,7 @@ "muscle", "muscles", "music", + "music-kit", "music-library", "music-metadata", "music-picker", @@ -149413,31 +152808,15 @@ "n-columns", "nacl", "namespace", + "namespaces", "nanohttpd", "napi", - "native", - "native-ads", - "native-advanced-ads", - "native-component", - "native-components", - "native-keyboard", - "native-module", - "native-modules", - "native-native", - "native-notify", - "native-notify-push-notifications", - "native-platforms", - "native-sass", - "native-shadow", - "native-sheet", - "native-sounds", - "native-ui", - "native-ui-component", "nativebase", "nativeflowcss", "nativesass", "nativewind", "natural-language-processing", + "natve", "nav", "navbar", "naver", @@ -149457,6 +152836,7 @@ "navigation-theme", "navigator", "navsdk", + "nayan-ui", "ndef", "nearby", "nearby-connection", @@ -149496,13 +152876,13 @@ "new-arch-compatible-otp-input", "new-architecture", "new-relic", + "newarch", "newarchitecture", "news-ticker", "next", "next-field", "nextjs", "nfc", - "ng-zorro", "night-mode", "nitro", "nitro-event-kit", @@ -149514,6 +152894,7 @@ "nitro-modules", "nitro-network-info", "nitro-screen-recorder", + "nitro-text", "nitro-totp", "nitrogen", "nitromodule", @@ -149522,7 +152903,6 @@ "node", "node-addon-api", "node-api", - "node-js", "node-qrcode", "node.js", "nodejs", @@ -149537,6 +152917,7 @@ "notifications", "notifications-sounds", "notify", + "notify-push-notifications", "notion", "now-playing", "nowar", @@ -149550,11 +152931,11 @@ "nsdictionaries", "nsurlsession", "nsuserdefaults", + "ntive", "nuke", "number", "numbers", "numero", - "nuxt", "oauth", "oauth2", "object", @@ -149574,17 +152955,29 @@ "offscreen-canvas", "ogg", "oidc", + "okhttp", "okta", + "old-architecture", "on-demand", "on-device-inference", "on-device-llm", "on-scroll-select", + "onboard", "onboarding", + "onboarding-screen", "once", "one", "one-package", + "one-tap-signin", "one-time-code", "one-time-password", + "one-time-password-android", + "one-time-password-expo", + "one-time-password-ios", + "one-time-password-new-architecture", + "one-time-password-nitro", + "one-time-password-old-architecture", + "one-time-password-web", "onenter", "onesignal", "onesignal-instructions", @@ -149602,6 +152995,7 @@ "opencv", "opengl", "openiap", + "openid-connect", "openlibrary", "opensource", "optical-character-recognition", @@ -149624,6 +153018,7 @@ "ota-update", "otp", "otp-auth", + "otp-autofill", "otp-entry", "otp-input", "otp-inputs", @@ -149685,6 +153080,7 @@ "password-manager", "passwordless", "paste", + "pathjs-chart", "paths-js", "pay", "payment", @@ -149698,10 +153094,11 @@ "pbkdf2", "pdf", "pdf-generation", - "pdf-generation-react", "pdf-lib", "pdf-reader", + "pdf-renderer", "pdf-viewer", + "pdf-viewer-expo", "pdf417", "pdfjs", "pdfkit", @@ -149737,6 +153134,7 @@ "phone-input", "phone-location", "phone-number", + "phone-verification", "phosphoricons", "photo", "photo-browser", @@ -149771,7 +153169,6 @@ "ping-android", "ping-ios", "ping-macos", - "ping-react-native", "pinterest", "pinterest-like", "pip", @@ -149794,10 +153191,13 @@ "placeholder-loader", "placeholders", "places", + "places-api", "places-sdk", "plaid", "plaid-link", "platform", + "platforms", + "play-age-signals", "play-core", "play-services", "play-store", @@ -149838,6 +153238,7 @@ "predictable", "predictions", "prefershomeindicatorautohidden", + "prefetch", "presentational", "press", "pressability", @@ -149874,7 +153275,7 @@ "promise", "prompt", "proptype-validators", - "prosemirror-react-native", + "prosemirror", "protected", "protection", "proton", @@ -149909,19 +153310,19 @@ "pushkit", "pwa", "pyramid", - "qa", "qr", "qr-code", "qr-code-generator", "qr-decode", "qr-generator", + "qr-kit", + "qr-local-image", "qrcode", "qrcode-detector", "qrcode-generator", "qrcode-image", "qrcode-javascript", "qrcode-logo", - "qrcode-react-native", "qrcode-scanner", "qrcode-styled", "qrcode-svg", @@ -149931,6 +153332,7 @@ "quick", "quick-actions", "quick-hash", + "quickactions", "quickhash", "quicklook", "quill", @@ -149959,6 +153361,7 @@ "range", "rank", "ranking", + "rar", "rasp", "rasterize", "rate", @@ -149972,71 +153375,9 @@ "rbnb-rating", "rc4", "rctbridgemodule", + "re-parent", "re-state", - "react", - "react-android", - "react-animate", - "react-animation", - "react-art", - "react-blur", - "react-button", - "react-checkbox-tree", - "react-component", - "react-component-pdf-viewer-view-android-ios-pdf", - "react-components", - "react-config", - "react-context", - "react-count-up", - "react-countup", - "react-devtools", - "react-dialog", - "react-dom", - "react-form", - "react-formawesome-core", - "react-global-state", - "react-hook", - "react-hook-form", - "react-hooks", - "react-ios", - "react-js", - "react-leaflet", - "react-leaflet-native", - "react-library", - "react-map", - "react-native", - "react-native-turbomodule", - "react-native-velements", - "react-natve", - "react-navigation", - "react-ntive", - "react-pager", - "react-pathjs-chart", - "react-pdf", - "react-plugin", - "react-query", - "react-re-state", - "react-reaction", - "react-redux", - "react-redux-persist", - "react-responsive", - "react-router", - "react-svg", - "react-syntax-highlighter", - "react-tab", - "react-tabs", - "react-toast", - "react-toastify", - "react-token", - "react-tree", - "react-tree-select", - "react-tree-view", - "react-ui", - "react-ui-kit", - "react-use", - "react-video", - "react-video-controls", - "react-video-player", - "react-windows", + "reac", "reaction", "reactions", "reactions-component", @@ -150069,6 +153410,7 @@ "real", "real-time", "real-time-data-stream", + "real-time-transcription", "realm", "realtime", "realtime-messaging", @@ -150104,6 +153446,7 @@ "redux", "redux-action", "redux-actions", + "redux-alternative", "redux-devtools-extension", "redux-form", "redux-middleware", @@ -150136,6 +153479,9 @@ "rendering", "renimated", "reorder", + "reparent", + "reparentable", + "reparenting", "replacement", "replay", "replaykit", @@ -150174,15 +153520,16 @@ "responsive-view", "responsive-width", "responsiveness", - "responsiveness-react-native", "rest", "rest-api", "restart", + "restart-newarch", "restate", "resumable", "resumable-upload", "resume", "retina", + "reusable-components", "reverse-engineering", "review", "review-api", @@ -150233,7 +153580,6 @@ "rondell", "room-scanning", "roomplan", - "rooster", "root-detection", "rotate", "rotation", @@ -150419,6 +153765,7 @@ "sensor", "sensors", "sent", + "sentiment-analysis", "sentry", "seoul", "separate", @@ -150458,10 +153805,8 @@ "shader", "shadow", "shadow-2", - "shadow-android-react-native", + "shadow-android", "shadow-pressable", - "shadow-react", - "shadow-react-native", "shadow-svg", "shadow-toggle", "shadow-view", @@ -150516,6 +153861,7 @@ "signature-pad", "signaturepad", "signin", + "signin-sdk", "signup", "silent", "simcard", @@ -150564,9 +153910,12 @@ "smooth", "smooth-corners", "sms", + "sms-android", "sms-code", "sms-listener", "sms-notification", + "sms-retriever", + "sms-retriever-nitro", "sms-verification", "snack-bar", "snackbar", @@ -150578,6 +153927,7 @@ "snapshot-testing", "social", "social-app", + "social-login", "social-signin", "sockets", "socks5", @@ -150586,12 +153936,12 @@ "softap", "solito", "sonner", - "sonner-native", "sort", "sortable", "sortable-flex", "sortable-grid", "sound", + "sounds", "space", "spacer", "speak", @@ -150619,6 +153969,7 @@ "splitting", "spotify", "spotlight", + "spotlight-search", "spotlight-tour", "sprite", "sql", @@ -150720,6 +154071,7 @@ "strong-customer-authentication", "structured-equality", "structured-output", + "stt", "student-vscode", "style", "style-variance-authority", @@ -150818,7 +154170,6 @@ "tamagui", "tampering", "tampering-detection", - "tanstack", "tap", "tap-navigation", "task", @@ -150833,6 +154184,7 @@ "teams", "tel", "telephone", + "teleport", "template", "tenor", "tensorflow", @@ -150853,6 +154205,7 @@ "text-highlighter", "text-highlighting", "text-input", + "text-intelligence", "text-manipulation", "text-marker", "text-recognition", @@ -150869,6 +154222,7 @@ "theming", "theoplayer", "thermal", + "threadforge", "threads", "three", "three.js", @@ -150896,7 +154250,7 @@ "tint", "tiny", "tiny-bottom-sheet", - "tiptap-react-native", + "tiptap", "tls", "toast", "toast-host", @@ -150911,11 +154265,10 @@ "toastier", "toastiers", "toastify", - "toastify-react-native", "toasts", "toggle", + "toggle-switch", "token", - "tool", "toolbar", "toolbar-android", "tooling", @@ -150933,6 +154286,7 @@ "touch-gestures", "touch-id", "touch-interaction", + "touchable", "touchid", "tour", "tourguide", @@ -150943,6 +154297,7 @@ "tracking", "traffic", "transactions", + "transcription", "transfer", "transform", "transformer", @@ -150972,11 +154327,13 @@ "trust", "ts", "tts", + "tunnel", "turbo", "turbo-module", "turbo-modules", "turbolinks", "turbomodule", + "turbomodules", "tutorial", "tv", "tvos", @@ -151045,13 +154402,16 @@ "uivisualeffectview", "uiw", "uiwjs", + "ultrastore", "umi-hooks", + "unarchive", "unbundle", "undecryptable", "undo-redo", "unicons", "unified", "unilist", + "unistyles", "units", "unity", "universal", @@ -151133,6 +154493,7 @@ "vector", "vector-drawable", "vector-icons", + "velements", "verification", "verification-code", "verify", @@ -151221,6 +154582,7 @@ "voice-calls", "voice-recognition", "voice-search", + "voice-to-text", "voice-typing", "voip", "voip-push-notification", @@ -151230,7 +154592,7 @@ "vosk", "vpn", "vue", - "vuetify", + "vuejs", "vuex", "vulkan", "wagmi", @@ -151261,6 +154623,7 @@ "weather-forecast", "web", "web-audio-api", + "web-video", "web3", "webassembly", "webauthn", @@ -151325,6 +154688,7 @@ "xaml", "xcconfig", "xcode", + "xenon", "xhr", "xior", "xmtp", @@ -151337,7 +154701,6 @@ "xxhash3", "xxhash3-cpp", "xxhash3-jsi", - "xxhash3-react-native", "youtube", "youtube-api", "youtube-bridge", @@ -151345,6 +154708,7 @@ "youtube-iframe-api", "youtube-player", "youtube-video", + "yt", "yup", "zdog", "zendesk", @@ -151365,6 +154729,7 @@ "zoomable-image", "zoomable-view", "zustand", + "zustand-alternative", "zxing", "支付宝", "네아로", diff --git a/components/CompatibilityTags.tsx b/components/CompatibilityTags.tsx index 1c67d561c..0c64eb769 100644 --- a/components/CompatibilityTags.tsx +++ b/components/CompatibilityTags.tsx @@ -23,7 +23,6 @@ export function CompatibilityTags({ library }: Props) { library.macos ? 'macOS' : null, library.tvos ? 'tvOS' : null, library.visionos ? 'visionOS' : null, - library.vegaos ? 'Vega OS' : null, library.web ? 'Web' : null, library.windows ? 'Windows' : null, ] @@ -65,7 +64,7 @@ export function CompatibilityTags({ library }: Props) { /> ) : null )} - {(library.expoGo || library.fireos) && ( + {(library.expoGo || library.fireos || library.vegaos) && ( {library.expoGo &&
  • Works with Expo Go
  • } {library.fireos &&
  • Works with Fire OS
  • } + {library.vegaos &&
  • Works with Vega OS
  • }
    )} diff --git a/components/Filters/helpers.ts b/components/Filters/helpers.ts index fe925dea9..74b2cb17c 100644 --- a/components/Filters/helpers.ts +++ b/components/Filters/helpers.ts @@ -26,10 +26,6 @@ export const FILTER_PLATFORMS: FilterParamsType[] = [ param: 'visionos', title: 'visionOS', }, - { - param: 'vegaos', - title: 'Vega OS', - }, { param: 'web', title: 'Web', @@ -87,4 +83,8 @@ export const FILTER_COMPATIBILITY: FilterParamsType[] = [ param: 'fireos', title: 'Works with Fire OS', }, + { + param: 'vegaos', + title: 'Works with Vega OS', + }, ]; diff --git a/components/Footer.tsx b/components/Footer.tsx index aae513303..a642945f9 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -12,7 +12,6 @@ import { PlatformIOS, PlatformMacOS, PlatformTvOS, - PlatformVegaOS, PlatformVisionOS, PlatformWeb, PlatformWindows, @@ -95,12 +94,6 @@ const Footer = () => { Icon={PlatformVisionOS} url="https://github.com/callstack/react-native-visionos#readme" /> - - - - - VEGA - - - ); -} - export function PlatformVisionOS({ width = 18, height = 18, fill = colors.black }: IconProps) { return ( diff --git a/pages/popular.tsx b/pages/popular.tsx index 2f22afed1..e6a271dbd 100644 --- a/pages/popular.tsx +++ b/pages/popular.tsx @@ -9,7 +9,6 @@ import { PlatformIOS, PlatformMacOS, PlatformTvOS, - PlatformVegaOS, PlatformVisionOS, PlatformWeb, PlatformWindows, @@ -82,12 +81,6 @@ const Popular = ({ data }: Props) => { data={data} filter={lib => lib.visionos === true} /> - lib.vegaos === true} - /> Date: Sat, 25 Oct 2025 19:09:51 +0200 Subject: [PATCH 3/3] revert formatting changes, add `vegaos` to valid keys list --- README.md | 45 +++++++------- react-native-libraries.schema.json | 94 +++++++++++++++++++++--------- util/Constants.ts | 1 + 3 files changed, 91 insertions(+), 49 deletions(-) diff --git a/README.md b/README.md index 03490f1af..c2430400b 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,7 @@ > [!TIP] > Are you looking for an integration with VS Code? Check out our official extension: -> -> - https://github.com/react-native-community/vscode-react-native-directory +> * https://github.com/react-native-community/vscode-react-native-directory ## How do I know I'm at the right place? @@ -45,7 +44,10 @@ { "githubUrl": "", "npmPkg": "", - "examples": ["", ""], + "examples": [ + "", + "" + ], "images": [""], "ios": false, "android": false, @@ -54,7 +56,6 @@ "macos": false, "tvos": false, "visionos": false, - "vegaos": false, "expoGo": false, "fireos": false, "unmaintained": false, @@ -70,6 +71,7 @@ > then the name, description, homepage, and topics (keywords) will be extracted from `package.json` in the package subdirectory. > However, GitHub stats will be based on the monorepo, because there isn't really another option. + ### Library fields description #### ⚙️ General @@ -77,9 +79,8 @@ - #### ❗ `githubUrl` **(required)** **(string)** - URL to the package GitHub repository (currently other Git hosts are not supported). - - > [!WARNING] - > Package also needs to be published to the NPM registry, because it is a source of crucial data for the directory. +> [!WARNING] +> Package also needs to be published to the NPM registry, because it is a source of crucial data for the directory. - #### `npmPkg` @@ -151,7 +152,6 @@ ### 📝 Additional context for tags - #### `newArchitectureNote` - **(string)** - provide a note for the New Architecture support status, if a boolean `"true"` or `"false"` is not sufficient to describe the state of New Architecture support. - #### `alternatives` @@ -175,7 +175,7 @@ You should be able to visit `localhost:3000` in your browser. - Visit https://github.com/settings/developers to get your keys (don't worry about the callback URL, put whatever you want). - Load the `GITHUB_TOKEN` environment variable into your shell. -- Set `ONLY_WRITE_LOCAL_DATA_FILE` to `true` in _scripts/build-and-score-data.ts_ to skip fetching and updating store blob from Vercel and instead use and update the local `assets/data.json` file. +- Set `ONLY_WRITE_LOCAL_DATA_FILE` to `true` in *scripts/build-and-score-data.ts* to skip fetching and updating store blob from Vercel and instead use and update the local `assets/data.json` file. This command creates site data in `./assets/data.json` @@ -201,32 +201,31 @@ https://reactnative.directory/api/libraries More details on API queries
    -``` -https://reactnative.directory/api/libraries?search=webgl -``` + ``` + https://reactnative.directory/api/libraries?search=webgl + ``` - Returns a list of all libraries in `JSON` format that have the keyword `webgl`. -``` -https://reactnative.directory/api/libraries?search=webgl&expoGo=true -``` + ``` + https://reactnative.directory/api/libraries?search=webgl&expoGo=true + ``` - Returns a list of all libraries in `JSON` format that have the keyword `webgl` and work with Expo Go app. -``` -https://reactnative.directory/api/libraries?search=webgl&expoGo=true&android=true -``` + ``` + https://reactnative.directory/api/libraries?search=webgl&expoGo=true&android=true + ``` - Returns a list of all libraries in `JSON` format that have the keyword `webgl`, work with Expo Go app and Android. -``` -https://reactnative.directory/api/libraries?search=webgl&expoGo=true&android=true&isPopular=true -``` + ``` + https://reactnative.directory/api/libraries?search=webgl&expoGo=true&android=true&isPopular=true + ``` - Returns a list of all libraries in `JSON` format that have the keyword `webgl`, work with Expo Go app, Android and are popular based on the scoring criterion. All the possible query parameters represents [`Query` type](https://github.com/react-native-community/directory/blob/main/types/index.ts#L14-L36). - ## I don't like how you calculate scores. @@ -243,4 +242,4 @@ All the possible query parameters represents [`Query` type](https://github.com/r ```sh # once environment variables are configured, install Vercel and deploy bunx vercel -``` +``` \ No newline at end of file diff --git a/react-native-libraries.schema.json b/react-native-libraries.schema.json index 38f4114dc..1139d4d5b 100644 --- a/react-native-libraries.schema.json +++ b/react-native-libraries.schema.json @@ -8,14 +8,18 @@ "$id": "#/items", "type": "object", "title": "React Native Directory package entry", - "required": ["githubUrl"], + "required": [ + "githubUrl" + ], "properties": { "githubUrl": { "$id": "#/items/properties/githubUrl", "type": "string", "title": "Package GitHub repository URL", "default": "", - "examples": ["https://github.com/joshswan/react-native-autolink"], + "examples": [ + "https://github.com/joshswan/react-native-autolink" + ], "pattern": "^(.*)$" }, "ios": { @@ -23,48 +27,60 @@ "type": "boolean", "title": "Package supports iOS", "default": false, - "examples": [true] + "examples": [ + true + ] }, "android": { "$id": "#/items/properties/android", "type": "boolean", "title": "Package supports Android", "default": false, - "examples": [true] + "examples": [ + true + ] }, "windows": { "$id": "#/items/properties/windows", "type": "boolean", "title": "Package supports Windows (react-native-windows)", "default": false, - "examples": [true] + "examples": [ + true + ] }, "macos": { "$id": "#/items/properties/macos", "type": "boolean", "title": "Package supports macOS (react-native-macos)", "default": false, - "examples": [true] + "examples": [ + true + ] }, "tvos": { "$id": "#/items/properties/tvos", "type": "boolean", "title": "Package supports tvOS (react-native-tvos)", "default": false, - "examples": [true] - }, - "vegaos": { - "$id": "#/items/properties/vegaos", - "type": "boolean", - "title": "Package is compatible with Vega OS", - "default": false, - "examples": [true] + "examples": [ + true + ] }, "fireos": { "$id": "#/items/properties/fireos", "type": "boolean", "title": "Package is compatible with Fire OS", "default": false, + "examples": [ + true + ] + }, + "vegaos": { + "$id": "#/items/properties/vegaos", + "type": "boolean", + "title": "Package is compatible with Vega OS", + "default": false, "examples": [true] }, "expoGo": { @@ -72,7 +88,9 @@ "type": "boolean", "title": "Package is compatible with Expo Go", "default": false, - "examples": [true] + "examples": [ + true + ] }, "examples": { "$id": "#/items/properties/examples", @@ -95,7 +113,9 @@ "$id": "#/items/properties/images", "type": "array", "title": "List of image URLs demonstrating package functionality", - "default": [null], + "default": [ + null + ], "items": { "$id": "#/items/properties/images/items", "type": "string", @@ -113,36 +133,54 @@ "type": "string", "title": "npm package name in the registry (mostly for scoped packages)", "default": "", - "examples": ["@expo/ex-navigation"], + "examples": [ + "@expo/ex-navigation" + ], "pattern": "^(@[a-z0-9-~][a-z0-9-._~]*/)?[a-z0-9-~][a-z0-9-._~]*$" }, "unmaintained": { "$id": "#/items/properties/unmaintained", - "type": ["boolean", "string"], + "type": [ + "boolean", + "string" + ], "title": "Package is unmaintained or archived", "default": false, - "examples": [true, "expo-image"] + "examples": [ + true, + "expo-image" + ] }, "dev": { "$id": "#/items/properties/dev", "type": "boolean", "title": "Package is a Development Tool (should be installed as 'devDependency')", "default": false, - "examples": [true] + "examples": [ + true + ] }, "template": { "$id": "#/items/properties/template", "type": "boolean", "title": "Package is a project template", "default": false, - "examples": [true] + "examples": [ + true + ] }, "newArchitecture": { "$id": "#/items/properties/newArchitecture", - "type": ["boolean", "string"], + "type": [ + "boolean", + "string" + ], "title": "Package supports New Architecture", "default": false, - "examples": [true, "new-arch-only"] + "examples": [ + true, + "new-arch-only" + ] }, "newArchitectureNote": { "$id": "#/items/properties/newArchitectureNote", @@ -171,16 +209,20 @@ "$id": "#/items/properties/alternatives", "type": "array", "title": "Optional alternative libraries to use, if the library is not maintained anymore or does not support the New Architecture", - "default": [null], + "default": [ + null + ], "items": { "$id": "#/items/properties/alternatives/items", "type": "string", "title": "Alternative library npm package name", "default": "", - "examples": ["expo-image"], + "examples": [ + "expo-image" + ], "pattern": "^(@[a-z0-9-~][a-z0-9-._~]*/)?[a-z0-9-~][a-z0-9-._~]*$" } } } } -} +} \ No newline at end of file diff --git a/util/Constants.ts b/util/Constants.ts index e5bd8bec2..4fd0be394 100644 --- a/util/Constants.ts +++ b/util/Constants.ts @@ -11,6 +11,7 @@ export const VALID_ENTRY_KEYS = new Set([ 'fireos', 'tvos', 'visionos', + 'vegaos', 'unmaintained', 'dev', 'template',