šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

apple-version-history

Package Overview
Dependencies
Maintainers
2
Versions
160
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apple-version-history

List of released Apple operating system versions and builds.

1.6.38
latest
Source
npm
Version published
Maintainers
2
Created
Source

Node CI CD Pull RSS on schedule

apple-version-history

Build (under macOS)

npm run build

Build and run (under macOS)

npm run build && node examples/examples.js

Examples

iOS

const appleVersionHistory = require('./../dist/index');
appleVersionHistory.listIosVersionsBuilds().forEach(group => {
    group.forEach(x => console.log(x));
    console.log(); // newline
});

// iPhone OS 1.0 (1A543a)
// ...

// ...
// ...
// ...

// iOS 11.4 (15F79)

macOS

const appleVersionHistory = require('./../dist/index');
appleVersionHistory.listMacosVersionsBuilds().forEach(group => {
    group.forEach(x => console.log(x));
    console.log(); // newline
});

// Mac OS X 10.0 (4K78)
// ...

// ...
// ...
// ...

// OS X 10.11 (15A284)
// ...
// ...

// ...
// macOS 10.13.5 (17F77)

tvOS

const appleVersionHistory = require('./../dist/index');
appleVersionHistory.listTvosVersionsBuilds().forEach(group => {
    group.forEach(x => console.log(x));
    console.log(); // newline
});

// tvOS 9.0 (13T396)
// ...

// ...
// ...
// ...

// ...
// tvOS 11.4 (15L577)

Keywords

Apple

FAQs

Package last updated on 16 Apr 2025

Did you know?

Socket

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