
Security News
Node.js Considers Public Workflow for Security Reports Amid AI-Driven Surge
Node.js is debating whether AI-driven security report volume warrants moving more vulnerability reports into public workflows.
semver-effect
Advanced tools
Strict SemVer 2.0.0 implementation built on Effect, providing typed parsing, range algebra and version cache services.
Strict SemVer 2.0.0 implementation built on Effect. Every operation returns
typed errors through Effect's error channel -- no null, no exceptions, no
loose mode.
SemVer.*, Range.*) matching Effect's own conventionsInvalidVersionError, UnsatisfiedRangeError, and others explicitlypipe and direct callnpm install semver-effect effect
import { Effect, pipe } from "effect";
import { SemVer, Range } from "semver-effect";
// Direct construction -- no parsing needed
const v = SemVer.make(1, 4, 2);
const next = SemVer.bump.minor(v); // 1.5.0
pipe(v, SemVer.gt(SemVer.make(0, 9, 0))); // true
// Parsing strings returns Effect with typed errors
const program = Effect.gen(function* () {
const version = yield* SemVer.fromString("1.4.2");
const range = yield* Range.fromString("^1.2.0");
Range.satisfies(version, range); // true
SemVer.gt(version, yield* SemVer.fromString("1.3.0")); // true
SemVer.compare(version, yield* SemVer.fromString("2.0.0")); // -1
});
Effect.runSync(program);
For API reference, Effect integration patterns, migration guides, and SemVer spec compliance details, see docs/.
MIT
FAQs
Strict SemVer 2.0.0 implementation built on Effect, providing typed parsing, range algebra and version cache services.
The npm package semver-effect receives a total of 1,578 weekly downloads. As such, semver-effect popularity was classified as popular.
We found that semver-effect demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Node.js is debating whether AI-driven security report volume warrants moving more vulnerability reports into public workflows.

Security News
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.