JSPM

  • Created
  • Published
  • Downloads 14
  • Score
    100M100P100Q81893F
  • License Apache-2.0

⭐ Axway Amplify module for managing and installing SDK for Appcelerator Titanium SDK Framework

Package Exports

  • @titanium/sdk-manager
  • @titanium/sdk-manager/lib/sdk-manager.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@titanium/sdk-manager) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Axway Amplify End-of-Life Announcement

👇   See notes below   👇

RIP Axway Amplify Titanium (2010 - 2022)

ðŸŠĶ   RIP Axway Amplify Titanium (2010 - 2022)

ðŸŠĶ   RIP Axway Amplify Cloud Services (2012 - 2022)


🛑    All products affected by the announcements will not be supported by Axway effective their EOL dates in 2022.

Some Open-Source versions of Axway products will live on after End-of-Life (EOL) Axway Amplify product announcements. However, some products are closed-source and will NOT continue after the shut down in 2022.

 

👉    Stay tuned for more info as plans are being made to save the Titanium project and move it under the control of a independent group of developers.

 


 

 

@titanium/sdk-manager

@titanium/sdk-manager Dependabot Status

📝 Description

Library for installing Axway Titanium SDKs
Fork of https://github.com/appcelerator/titaniumlib

Install Titanium SDKs from any source.

Key differences from titaniumlib module:

  1. This module is focused only on managing SDKs
  2. Additional support for @geek/config (coming soon)
  3. Allow setting of repo URL for SDKs (in addition to official Axway repo)

🚀 Getting Started

Install Titanium SDK Manager

npm install @titanium/sdk-manager

Get available SDK releases

Using Official Axway Repository

sdk.getReleases()
    .then(releases => {
        console.log(`releases: ${JSON.stringify(releases, null, 2)}`);
    })
    .catch(error => {
        console.error('you are here → Error occurred!');
        console.error(error);
    });

Get available SDK releases (Alternate Repo)

Using Alternate Repository

sdk.getReleases({ releasesUrl: 'https://brentonhouse.github.io/titanium-sdk-repo/releases.json'  })
    .then(releases => {
        console.log(`releases: ${JSON.stringify(releases, null, 2)}`);
    })
    .catch(error => {
        console.error('you are here → Error occurred!');
        console.error(error);
    });

Get available SDK branches

Using Official Axway Repository

sdk.getBranches()
    .then(branches => {
        console.log(`branches: ${JSON.stringify(branches, null, 2)}`);
    })
    .catch(error => {
        console.error('you are here → Error occurred!');
        console.error(error);
    });

Get available SDK builds

Using Official Axway Repository

sdk.getBuilds()
    .then(builds => {
        console.log(`builds: ${JSON.stringify(builds, null, 2)}`);
    })
    .catch(error => {
        console.error('you are here → Error occurred!');
        console.error(error);
    });

Install latest SDK release

Using Official Axway Repository

sdk.install()
    .then(result => {
        console.log('** SDK Installed **');
    })
    .catch(error => {
        console.error('you are here → Error occurred!');
        console.error(error);
    });

Install SDK Release Candidate (RC)

Using Alternate Repository

sdk.getReleases({ releasesUrl: 'https://brentonhouse.github.io/titanium-sdk-repo/releases.json'  })
    .then(releases => {
        console.log('** SDK Installed **');
    })
    .catch(error => {
        console.error('you are here → Error occurred!');
        console.error(error);
    });
  • Titanium Mobile - Open-source tool for building powerful, cross-platform native apps with JavaScript.
  • Alloy - MVC framework built on top of Titanium Mobile.
  • Turbo - Variation of Titanium Alloy that adds some enhancements and customizations for rapid development.
  • Appcelerator - Installer for the Appcelerator Platform tool

📚 Learn More

ðŸ“Ģ Feedback

Have an idea or a comment? Join in the conversation here!

Copyright 2014-2019 by Axway, Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.