Socket
Socket
Sign inDemoInstall

apple-version-history

Package Overview
Dependencies
0
Maintainers
2
Versions
126
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    apple-version-history

List of released Apple operating system versions and builds.


Version published
Weekly downloads
135
increased by419.23%
Maintainers
2
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 09 Apr 2024

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