Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mobilehero-archive/titanium-sdk-manager
â Axway Amplify module for managing and installing SDK for Appcelerator Titanium SDK
https://github.com/mobilehero-archive/titanium-sdk-manager
amplify android api-builder appcelerator axway axway-amplify axway-sdk brenton-house cross-platorm-native ios mobile native sdk titanium titanium-alloy titanium-mobile titanium-module titanium-modules titanium-sdk turbo
Last synced: about 1 month ago
JSON representation
â Axway Amplify module for managing and installing SDK for Appcelerator Titanium SDK
- Host: GitHub
- URL: https://github.com/mobilehero-archive/titanium-sdk-manager
- Owner: mobilehero-archive
- License: other
- Created: 2019-09-06T20:07:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-25T17:16:53.000Z (over 1 year ago)
- Last Synced: 2024-11-08T13:19:46.941Z (about 1 month ago)
- Topics: amplify, android, api-builder, appcelerator, axway, axway-amplify, axway-sdk, brenton-house, cross-platorm-native, ios, mobile, native, sdk, titanium, titanium-alloy, titanium-mobile, titanium-module, titanium-modules, titanium-sdk, turbo
- Language: JavaScript
- Homepage: https://brenton.house/saying-goodbye-to-axway-amplify-titanium-31a44f3671de
- Size: 1.36 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
[//]: # (header-start)
Preparing for end of Axway
ð  support for Amplify Cloud and Mobile  ð
ðŠĶ  RIP Axway Amplify Titanium (2010 - 2022)
ðŠĶ  RIP Axway Amplify Cloud Services (2012 - 2022)
ðŠĶ  RIP Axway Amplify Crash Analytics (2015 - 2022)
ð Â Â Axway support for Amplify products has ended for most products related to mobile and cloud.
A few of the open-source versions of Axway Amplify products will live on after Axway Amplify End-of-Life (EOL) announcements. However, all closed-source projects and most open-source projects are now dead.
Â
> ð Â Â A group of Axway employees, ex-Axway employees, and some developers from Titanium community have created a legal org and now officially decide all matters related to future of these products.
Â
## API FAQ:
* [API Best Practices](https://brenton.house)
* [What is API Security?](https://brenton.house/what-is-api-security-5ca8117d4911)
* [OWASP Top 10 List for API Security](https://www.youtube.com/watch?v=GLVHDj0Cpg4)
* [What is API Security?](https://brenton.house/what-is-api-security-5ca8117d4911)
* [Top API Trends for 2022](https://brenton.house/top-10-api-integration-trends-for-2022-49b05f2ef299)
* [What is a Frankenstein API?](https://brenton.house/what-is-a-frankenstein-api-4d6e59fca6)
* [What is a Zombie API?](https://brenton.house/what-is-a-zombie-api-6e5427c39b6a)
* [API Developer Experience](https://brenton.house/keys-to-winning-with-an-awesome-api-developer-experience-62dd2fa668f4)
* [API Cybersecurity 101](https://brenton.house/what-is-api-security-5ca8117d4911)
* [YouTube API Videos](https://youtube.com/brentonhouse)
* [YouTube API Shorts Videos](https://youtube.com/apishorts)Â
[![Click to watch on Youtube](https://img.youtube.com/vi/GLVHDj0Cpg4/0.jpg)](https://www.youtube.com/watch?v=GLVHDj0Cpg4&list=PLsy9MwYlG1pew6sktCAIFD5tbrXy9HUQ7 "Click to watch on YouTube")
> Â [â Watch video on YouTube â](https://www.youtube.com/watch?v=GLVHDj0Cpg4&list=PLsy9MwYlG1pew6sktCAIFD5tbrXy9HUQ7)
Â
Â
Â
Â
[//]: # (header-end)
# @titanium/sdk-manager
[![@titanium/sdk-manager](https://img.shields.io/npm/v/@titanium/sdk-manager.png)](https://www.npmjs.com/package/@titanium/sdk-manager)
[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=mobilehero-archive/titanium-sdk-manager)](https://dependabot.com)* [API FAQ:](#api-faq)
* [ð Description](#-description)
* [ð Getting Started](#-getting-started)
* [Install Titanium SDK Manager](#install-titanium-sdk-manager)
* [Get available SDK releases](#get-available-sdk-releases)
* [Get available SDK releases _(Alternate Repo)_](#get-available-sdk-releases-alternate-repo)
* [Get available SDK branches](#get-available-sdk-branches)
* [Get available SDK builds](#get-available-sdk-builds)
* [Install latest SDK release](#install-latest-sdk-release)
* [Install SDK Release Candidate (RC)](#install-sdk-release-candidate-rc)
* [ð Related Links](#-related-links)
* [ðĢ Feedback](#-feedback)
* [ÂĐïļ Legal](#ïļ-legal)## ð Description
> Library for installing Axway Titanium SDKs
> Fork of https://github.com/appcelerator/titaniumlibInstall 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
```JavaScript
npm install @titanium/sdk-manager
```### Get available SDK releases
> Using Official Axway Repository
```JavaScript
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
```JavaScript
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
```JavaScript
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
```JavaScript
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
```JavaScript
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
```JavaScript
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);
});
```## ð Related Links
- [Titanium Mobile](https://www.npmjs.com/package/titanium) - Open-source tool for building powerful, cross-platform native apps with JavaScript.
- [Alloy](https://www.npmjs.com/package/alloy) - MVC framework built on top of Titanium Mobile.
- [Turbo](https://www.npmjs.com/package/@titanium/turbo) - Variation of Titanium Alloy that adds some enhancements and customizations for rapid development.
- [Appcelerator](https://www.npmjs.com/package/appcelerator) - Installer for the Appcelerator Platform tool# ð Learn More
- [Axway Developer Portal](https://developer.axway.com)
## ðĢ Feedback
Have an idea or a comment? [Join in the conversation here](https://github.com/brentonhouse/titanium-sdk/issues)!
## ÂĐïļ Legal
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 athttp://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.