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

@peloruslabs/station-core

v0.6.0

Published

Host-agnostic boat-brain engines (anchor watch) — pure TypeScript, no Node/React Native dependencies

Readme

@peloruslabs/station-core

Host-agnostic marine engines for the Aelos boat brain. The anchor-watch engine is the first engine to live here: it decides when a vessel has dragged anchor, and it keeps the swing trail that gets drawn on screen.

The package is pure TypeScript — no Node and no React Native dependencies. zod is the single runtime dependency, declared as a peer dependency so the host application owns the version. The same code therefore runs inside a mobile app, on a server, or on a small onboard computer such as a Signal K installation.

Pre-release and unpublished. Nothing here is on npm yet, and the public API is expected to change without notice. See docs/api-pass-notes.md in the repo root for the API cleanup that is deferred until the first publish.

Quickstart

npm install @peloruslabs/station-core zod
import { arm, onFix, onTick, watchConfigSchema, type Fix } from '@peloruslabs/station-core';

// Drop the hook: parse the config so the tuning defaults get filled in.
const config = watchConfigSchema.parse({
  anchor: { lat: 47.6, lon: -122.3 },
  radiusM: 40,
});

let state = arm(config, Date.now());

// Feed each GPS fix as it arrives; the returned state carries the phase.
const fix: Fix = { point: { lat: 47.6004, lon: -122.3 }, accuracyM: 5, atMs: Date.now() };
state = onFix(state, fix, fix.atMs);

// Tick on a timer too, so a feed that goes quiet can raise 'gps-degraded'.
state = onTick(state, Date.now());

if (state.phase === 'alarm') {
  // …wake the skipper.
}

The engine is pure and synchronous: every function takes the current state plus the current time and returns the next state — the host owns the clock, the GPS feed, and the alarm. Distances are metres, angles are degrees, and times are epoch milliseconds throughout; the engine never converts for display.

Docs and license

See the repo root for full docs, the monorepo layout, and the development gate. Apache-2.0. Copyright 2026 Pelorus Labs LLC.