Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
React Navigation | 22,472 | 16,081 | 836 | 2 hours ago | 270 | February 21, 2021 | 650 | TypeScript | ||
Routing and navigation for your React Native apps | ||||||||||
Wouter | 5,177 | 7 | 15 | 7 days ago | 34 | November 09, 2021 | 16 | JavaScript | ||
🥢 A minimalist-friendly ~1.5KB routing for React and Preact. Nothing else but HOOKS. | ||||||||||
Organicmaps | 5,165 | 2 hours ago | 1,679 | apache-2.0 | C++ | |||||
🍃 Organic Maps is a free Android & iOS offline maps app for travelers, tourists, hikers, and cyclists. It uses crowd-sourced OpenStreetMap data and is developed with love by MapsWithMe (MapsMe) founders and our community. No ads, no tracking, no data collection, no crapware. Please donate to support the development! | ||||||||||
Headway | 2,391 | 13 hours ago | 29 | apache-2.0 | Vue | |||||
Self-hostable maps stack, powered by OpenStreetMap. | ||||||||||
Swiftuirouter | 627 | 7 months ago | 6 | mit | Swift | |||||
Path-based routing in SwiftUI | ||||||||||
Nested Navigation Demo Flutter | 544 | 5 months ago | 19 | mit | Dart | |||||
Nested navigation with BottomNavigationBar | ||||||||||
Navigation Ex | 518 | 3 years ago | TypeScript | |||||||
Routing and navigation for your React Native apps | ||||||||||
Navit | 489 | 3 months ago | 143 | other | C | |||||
The open source (GPL v2) turn-by-turn navigation software for many OS | ||||||||||
Findme | 477 | 5 years ago | 1 | gpl-3.0 | Swift | |||||
An ARKit App that can help your friends to find you | ||||||||||
Router Deprecated | 455 | 2 years ago | mit | Swift | ||||||
🛣 Simple Navigation for iOS - ⚠️ Deprecated |
Routing and navigation for your React Native apps.
Documentation can be found at reactnavigation.org.
If you are looking for version 4, the code can be found in the 4.x branch.
Please read through our contribution guide to get started!
Since we use a monorepo, it's not possible to install a package from the repository URL. If you need to install a forked version from Git, you can use gitpkg
.
First install gitpkg
:
yarn global add gitpkg
Then follow these steps to publish and install a forked package:
cd
to the location of the cloned repoyarn
to install any dependenciesyarn lerna run prepack
to perform the build stepscd
to the package directory that you want to use (e.g. cd packages/stack
for @react-navigation/stack
)gitpkg publish
to publish the package to your repoAfter publishing, you should see something like this:
Package uploaded to [email protected]:<user>/<repo>.git with the name <name>
You can now install the dependency in your project:
yarn add <user>/<repo>.git#<name>
Remember to replace <user>
, <repo>
and <name>
with right values.