
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
macos-version
Advanced tools
Get or check the current macOS version
$ npm install macos-version
import {
macOSVersion,
isMacOSVersion,
isMacOSVersionGreaterThanOrEqualTo,
assertMacOSVersion,
assertMacOSVersionGreaterThanOrEqualTo,
assertMacOS,
isMacOS,
} from 'macos-version';
macOSVersion();
//=> '10.12.3'
isMacOSVersion('>10.10');
//=> true
isMacOSVersionGreaterThanOrEqualTo('10.10');
//=> true
assertMacOSVersion('>=10.12.5');
//=> [Error: Requires macOS >=10.12.5]
assertMacOSVersionGreaterThanOrEqualTo('10.12.5');
//=> [Error: Requires macOS 10.12.5 or later]
assertMacOS();
//=> [Error: Requires macOS]
if (isMacOS) {
console.log('macOS');
}
Returns the macOS version or undefined
if the platform is not macOS.
Returns a boolean
of whether the specified semver range matches the macOS version.
Returns a boolean
of whether the macOS version is greater than or equal to the specified version.
Throws an error if the specified semver range does not match the macOS version.
Throws an error if the macOS version is not greater than or equal to the specified version.
Prefer this over .assert()
whenever possible as it outputs a more user-friendly error message.
Throws an error if the platform is not macOS.
Type: boolean
Whether the platform is macOS.
FAQs
Get or check the current macOS version
The npm package macos-version receives a total of 40,456 weekly downloads. As such, macos-version popularity was classified as popular.
We found that macos-version demonstrated a not healthy version release cadence and project activity because the last version was released 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
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.