Socket
Socket
Sign inDemoInstall

@suchipi/femver

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @suchipi/femver

Lightweight alternative to semver, supporting absolute versions only


Version published
Weekly downloads
27K
increased by13.05%
Maintainers
1
Install size
7.16 kB
Created
Weekly downloads
 

Readme

Source

@suchipi/femver

Lightweight alternative to semver, supporting absolute versions only

The semver npm package is big, weighing in at 88.2 kB (with one dependency, weighing 53.9 kB).

It's big because it has a lot of features, like:

  • Matching versions against ranges and patterns
  • Coercing vague versions into semver strings
  • Identifying the minimum/maximum version of a range
  • Cleaning version-like strings into semver strings

These features are great; they're what power npm and let us specify version ranges in our package.jsons.

However, if you only need to compare two version strings, like so:

const semver = require("semver");

semver.gte(process.version, "8.0.0");

Then pulling in all of semver is a little unnecessary.

That's where @suchipi/femver comes in; it's a lightweight alternative to semver, which only supports comparing absolute versions (eg 1.2.0, not >= 1.0.0).

API

/**
 * Reports whether `version` is a valid (absolute) semantic version string.
 */
export function isValid(version: string): boolean;

/**
 * Parses `version` into an object containing major, minor, and patch properties.
 */
export function parse(version: string): {
  major: number;
  minor: number;
  patch: number;
};

/**
 * Returns whether `firstVersion` is less than `secondVersion`.
 */
export function lt(firstVersion: string, secondVersion: string): boolean;

/**
 * Returns whether `firstVersion` is less than or equal to `secondVersion`.
 */
export function lte(firstVersion: string, secondVersion: string): boolean;

/**
 * Returns whether `firstVersion` is greater than `secondVersion`.
 */
export function gt(firstVersion: string, secondVersion: string): boolean;

/**
 * Returns whether `firstVersion` is greater than or equal to `secondVersion`.
 */
export function gte(firstVersion: string, secondVersion: string): boolean;

/**
 * Returns whether `firstVersion` is equal to `secondVersion`.
 */
export function eq(firstVersion: string, secondVersion: string): boolean;

Example

const femver = require("@suchipi/femver");
// or:
// import * as femver from "@suchipi/femver";

femver.gte(process.version, "8.0.0");

License

MIT

Keywords

FAQs

Last updated on 23 Feb 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc