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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@start9labs/emver

v0.1.5

Published

Semver extension with optional 4th digit given patch semantics. Designed for package distributors

Downloads

203

Readme

Emver

This module was designed to address the problem of releasing updates to Embassy Packages where the upstream project was either unaware of or apathetic towards supporting their application on the Embassy platform. In most cases, the original package will support semver2. This leaves us with the problem where we would like to preserve the original package's version, since one of the goals of the Embassy platform is transparency. However, on occasion, we have screwed up and published a version of a package that needed to have its metadata updated. In this scenario we were left with the conundrum of either unilaterally claiming a version number of a package we did not author or let the issue persist until the next update. Neither of these promote good user experiences, for different reasons. This module extends the semver standard linked above with a 4th digit, which is given PATCH semantics.

Usage

Add this to your Cargo.toml

[dependencies]
emver = "0.1.0"

Operations

A Version contains 4 components: major, minor, patch, and revision. The meaning of first three can be found in the Semver2 specification. The fourth is also given patch semantics but is intended to be incremented by package distributors when they are not themselves authors.

A Version can also be parsed from a dot separated string like 0.1.2.3. They can also be serialized to strings, but in cases where the last digit is zero, the last dot and the zero are omitted. Parsing will still work over a triple. The relevant parse function for Version is parse_version and it is generated by the nom parser library. It can be applied to a string and will produce a Result<Version, ParseError>.

The other half of this library deals with the type VersionRange. A VersionRange is a set that is either anchored at a particular Version with some sort of comparison operator: = >= <= > < or it is described as a conjunction or disjunction of other VersionRanges. For convenience we also provide two constructors (Any, None) to serve as identity elements on the Conj and Disj constructors respectively. As a result, to gain maximum performance, you should use the conj and disj smart constructors as opposed to their dumb counterparts Conj and Disj. This will immediately evaluate the identities and annihilators as opposed to building up the AST further, saving peak memory.

For convenience, there are two Monoid wrappers exposed: (AnyRange, AllRange). This allows you to fold an Iterable with the combine operation seeded with the empty value. The semantic differences are whether or not combine uses disj or conj respectively.

Most of the time you will want to parse these values from strings, but the internals are exposed for the rarer cases. Some of the grammar from node-semver is supported (^1.2.3, ~2.3.4, 1.2.x, 0.0.0-1.1.1) as well.

Finally, the most useful operation in this package is the satisfies operation on Version with the argument of a VersionRange. This is simply a predicate that tells you whether the Version falls inside the VersionRange.

Laws

All laws listed below are equality of observation, not a literal Eq instance giving representational Equality. The only observer that this library has is the satisfies operation. When you read "a === b", you should interpret that as obs.satisfies(a) === obs.satisfies(b). These laws simply mean that it is always safe to do a substitution of a term on the LHS for a term on the RHS without changing the meaning of your program.

  • Conj is commutative: conj(a,b) === conj(b,a)
  • Disj is commutative: conj(a,b) === disj(b,a)
  • Conj is associative: conj(conj(a,b),c) === conj(a,conj(b,c))
  • Disj is associative: disj(disj(a,b),c) === disj(a,disj(b,c))
  • Any is identity of Conj: conj(a, Any) === a
  • None is identity of Disj: disj(a, None) === a
  • Any annihilates Disj: disj(a, Any) === Any
  • None annihilates Conj: conj(a, None) === None
  • Conj distributes over Disj: conj(a,disj(b,c)) === disj(conj(a,b),conj(a,c))
  • Disj distributes over Conj: disj(a,conj(b,c)) === conj(disj(a,b),disj(a,c))