apple-version-history
TypeScript icon, indicating that this package has built-in type declarations

1.6.4 • Public • Published

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)

Readme

Keywords

Package Sidebar

Install

npm i apple-version-history

Weekly Downloads

81

Version

1.6.4

License

ISC

Unpacked Size

58.3 kB

Total Files

18

Last publish

Collaborators

  • gdoronin
  • gordey4doronin