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

animaps-react

v0.1.1

Published

animated travel route maps for react

Downloads

51

Readme

animaps

makes animated travel route videos on a map. type in some cities, pick a marker, hit record and you get an mp4 or webm back. good for reels, trip recaps, that kind of thing.

live demo: https://feralui.vercel.app/#/animaps

it's a single react component, maplibre does the map under the hood.

install

npm i animaps-react

react 18 or 19 needs to be there too (peer dep).

use

import { AniMaps } from 'animaps-react'
import 'animaps-react/style.css'

export default function App() {
  return <AniMaps />
}

pass your own stops and route color if you want:

<AniMaps
  routeColor="#0a84ff"
  initialStops={[
    { city: 'New York', country: 'United States', lat: 40.7128, lng: -74.006 },
    { city: 'Reykjavik', country: 'Iceland', lat: 64.1466, lng: -21.9426 },
    { city: 'Paris', country: 'France', lat: 48.8566, lng: 2.3522 },
  ]}
/>

what's in it

  • route builder with geocoding, plus gpx / geojson import
  • satellite, streets, dark and light map styles
  • camera fly through with the trail drawing as it goes
  • mp4 / webm export, square / landscape / vertical presets, 30 or 60 fps
  • pick the marker sticker and size, change the route color live

notes

export uses webcodecs when the browser has it and falls back to the native recorder otherwise. needs a browser, won't run server side.

MIT