npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-native-maps-navigation-ts

v0.2.2

Published

A helper and component library for react-native-maps that enables navigation support

Readme

react-native-maps-navigation-ts

Fork of this repo

Fixed issues and added TS support

Enhances React Native Maps with Realtime Navigation.

Please note that this module is usable but still under heavy development. Some properties and/or component names might change without notice.

alt text

Installation

React Native >= 0.49

yarn add react-native-maps-navigation

Make sure you link the module before building:

react-native link react-native-maps-navigation

Example

Head over to the example application to get started right away.

The example application uses most components and api modules of this library and gets you started in a useful direction.

Development

Linting and Formatting

This project uses ESLint and Prettier for code quality and formatting. Here are the available commands:

# Run ESLint
npm run lint

# Fix ESLint issues
npm run lint:fix

# Format code with Prettier
npm run format

# Check if formatting is correct
npm run format:check

# Run both formatting and linting fixes
npm run fix

Commit Versioning

This project follows Conventional Commits specification for commit messages and uses semantic versioning for releases.

Committing Changes

Use the following command to create a properly formatted commit message:

npm run commit

This will launch an interactive prompt to help you create a commit message that follows the conventional commit format:

  • feat: A new feature
  • fix: A bug fix
  • docs: Documentation only changes
  • style: Changes that do not affect the meaning of the code
  • refactor: A code change that neither fixes a bug nor adds a feature
  • perf: A code change that improves performance
  • test: Adding missing tests or correcting existing tests
  • build: Changes to the build system or external dependencies
  • ci: Changes to CI configuration files and scripts

Releasing New Versions

To create a new release with an automatically incremented version number and generated CHANGELOG:

# Automatically determine version bump based on commits
npm run release

# Explicitly specify version bump
npm run release:patch  # 0.0.x
npm run release:minor  # 0.x.0
npm run release:major  # x.0.0

This will:

  1. Bump the version in package.json
  2. Update the CHANGELOG.md
  3. Create a git tag
  4. Create a commit with the new version

Components

The library exposes the following modules and components.

The main component is MapViewNavigation:

<MapViewNavigation /> Component API

The library also ships with various UI components:

<DirectionInputBox /> Component API

<DirectionsListView /> Component API

<DurationDistanceLabel /> Component API

<DurationDistanceView /> Component API

<ManeuverView /> Component API

<ManeuverLabel /> Component API

<TravelModeBox /> Component API

These are internal components used by the library:

<ManeuverArrow /> Component API

<CloseButton /> Component API

<PositionMarker /> Component API

<RouteMarker /> Component API

<RouterPolyline /> Component API

General Usage