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

signalk-weather-map

v0.2.2

Published

Weather map webapp for SignalK — wind barbs, temperature, cloudiness, precipitation and pressure overlay on a Leaflet map

Readme

signalk-weather-map

A SignalK webapp that displays meteorological forecast data on an interactive map — wind barbs, temperature, cloudiness, precipitation, pressure and gusts, powered by any SignalK weather provider.

Weather Map screenshot

Features

  • Wind barbs — standard meteorological notation (½ bar = 5 kt, bar = 10 kt, pennant = 50 kt)
  • Gusts — same barb display based on gust speed
  • Temperature — colour-coded cells with numeric label (blue → green → yellow → red)
  • Cloudiness — transparency-based grey overlay (0 % = transparent, 100 % = dark grey)
  • Precipitation — colour-coded intensity (transparent → light blue → blue → purple → red)
  • Pressure — colour-coded cells with numeric hPa label (dark blue = storm/low < 960 → cyan → green ≈ 1013 → orange → dark red = anticyclone > 1022)
  • Automatic grid density — spacing adapts to zoom level (~40 px between points)
  • Forecast time slider — browse all forecast steps provided by the weather source
  • Multi-provider support — select any registered SignalK weather provider; set a default with one click
  • Collapsible panel — panel and legend collapse to a one-line summary (model + layer) for mobile use; state persisted across sessions
  • Vessel position — boat marker oriented to true heading (falls back to north if unavailable)
  • Client-side cache — 30-minute localStorage + memory cache; parallel batch fetching (15 concurrent)
  • i18n — UI language detected from the browser (French and English supported)

Requirements

  • SignalK server with at least one weather provider plugin installed and enabled
    (e.g. signalk-grib-weather-provider, Open-Meteo, etc.)
  • Node.js ≥ 12

Installation

From npm (recommended)

In the SignalK server's app store, search for signalk-weather-map and install it.

Or from the command line inside the SignalK data directory:

npm install signalk-weather-map

Then restart the SignalK server.

Manual / development

cd ~/.signalk/   # or your SignalK data directory
mkdir -p local-plugins
git clone https://github.com/macjl/signalk-weather-map local-plugins/signalk-weather-map
# Add to package.json dependencies:
#   "signalk-weather-map": "file:./local-plugins/signalk-weather-map"
npm install

Usage

Once installed, the webapp is available at:

http://<signalk-host>:<port>/signalk-weather-map/

Or open it from the SignalK dashboard → Webapps.

Layer selector

| Layer | Description | |---|---| | Wind | Barbs based on true wind speed | | Gusts | Barbs based on gust speed | | Temperature | Colour-coded cell fill with °C label | | Cloudiness | Grey transparency proportional to cloud cover | | Precipitation | Colour intensity proportional to rain volume | | Pressure | Colour-coded cell fill with hPa label (blue = low, red = high) |

Tooltip

Hover over any cell to see full data: wind speed & direction, gusts, temperature, MSLP, humidity, cloud cover and precipitation.

Provider selector

If multiple weather providers are registered, select one from the Source dropdown. Click Set as default to make it the server-wide default.

Weather API

This plugin uses the standard SignalK v2 Weather API:

GET /signalk/v2/api/weather/forecasts/point?lat=&lon=&provider=<pluginId>
GET /signalk/v2/api/weather/_providers
POST /signalk/v2/api/weather/_providers/_default/:id

Any provider that implements this API is compatible.

Development

git clone https://github.com/macjl/signalk-weather-map
cd signalk-weather-map
# Edit public/index.html — no build step required (vanilla JS + Leaflet CDN)

License

MIT © Jean-Laurent Girod