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

@marianmeres/semver

v1.0.0

Published

[![NPM version](https://img.shields.io/npm/v/@marianmeres/semver.svg)](https://www.npmjs.com/package/@marianmeres/semver) [![JSR version](https://jsr.io/badges/@marianmeres/semver)](https://jsr.io/@marianmeres/semver) [![License: MIT](https://img.shields.

Readme

@marianmeres/semver

NPM version JSR version License: MIT

Zero-dependency utilities to normalize, parse, and compare "semver-ish" version strings.

Version format: MAJOR.MINOR.PATCH[-PRERELEASE][+BUILD].

Input is lenient: MINOR and PATCH are optional (each defaults to 0), and an optional leading v/V is stripped. So "v1", "7-rc.1" and "1.2" are all accepted. PRERELEASE and BUILD identifiers are restricted to the semver-spec character set [0-9A-Za-z-.].

compareSemver follows semver precedence rules and is designed to be passed directly to Array.prototype.sort.

Install

deno add jsr:@marianmeres/semver
npm install @marianmeres/semver

Example usage

import { compareSemver, normalizeSemver, parseSemver } from "@marianmeres/semver";

Normalize

normalizeSemver("v1.2"); // "1.2.0"
normalizeSemver("7"); // "7.0.0"
normalizeSemver("7-rc.1"); // "7.0.0-rc.1"
normalizeSemver("1.2.3-rc.1+build.123"); // "1.2.3-rc.1+build.123"

// Invalid input throws a TypeError by default...
normalizeSemver("nope"); // throws TypeError
// ...or returns undefined when assert is false:
normalizeSemver("nope", false); // undefined

Parse

parseSemver("1.2.3-alpha+build");
// { major: 1, minor: 2, patch: 3, prerelease: "alpha", build: "build" }

// Lenient input is normalized first:
parseSemver("v1.2");
// { major: 1, minor: 2, patch: 0, prerelease: "", build: "" }

Compare and sort

compareSemver("1.0.0", "2.0.0"); // negative (1.0.0 < 2.0.0)
compareSemver("2.0.0", "1.0.0"); // positive (2.0.0 > 1.0.0)
compareSemver("1.0.0-alpha", "1.0.0"); // negative (prerelease < release)

["1.10.0", "1.2.0", "1.1.0"].toSorted(compareSemver);
// ["1.1.0", "1.2.0", "1.10.0"]

Build metadata is ignored when determining precedence (per the semver spec). When two versions have equal precedence, compareSemver falls back to a stable, string-based tiebreaker on the original inputs — so only identical strings reliably return 0. See API.md for the full details.

API Reference

For comprehensive API documentation including all signatures, the ParsedSemver type, precedence rules, the tiebreaker behavior, and edge cases, see API.md.

License

MIT