New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

apple-version-history

Package Overview
Dependencies
Maintainers
0
Versions
154
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.32
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
99
increased by22.22%
Maintainers
0
Weekly downloads
 
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

FAQs

Package last updated on 10 Feb 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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc