ā Axway Amplify module for managing and installing SDK for Appcelerator Titanium SDK Framework
npm install @titanium/sdk-manager[//]: # (header-start)
šŖ¦ RIP Axway Amplify Titanium (2010 - 2022)
šŖ¦ RIP Axway Amplify Cloud Services (2012 - 2022)
šŖ¦ RIP Axway Amplify Crash Analytics (2015 - 2022)
> š 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 Best Practices
* What is API Security?
* OWASP Top 10 List for API Security
* What is API Security?
* Top API Trends for 2022
* What is a Frankenstein API?
* What is a Zombie API?
* API Developer Experience
* API Cybersecurity 101
* YouTube API Videos
* YouTube API Shorts Videos

> ā Watch video on YouTube ā
[//]: # (header-end)


* API FAQ:
* š Description
* š Getting Started
* Install Titanium SDK Manager
* Get available SDK releases
* Get available SDK releases _(Alternate Repo)_
* Get available SDK branches
* Get available SDK builds
* Install latest SDK release
* Install SDK Release Candidate (RC)
* š Related Links
* š£ Feedback
* Ā©ļø Legal
> 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)
``JavaScript`
npm install @titanium/sdk-manager
> Using Official Axway Repository
`JavaScriptreleases: ${JSON.stringify(releases, null, 2)}
sdk.getReleases()
.then(releases => {
console.log();`
})
.catch(error => {
console.error('you are here ā Error occurred!');
console.error(error);
});
> Using Alternate Repository
`JavaScriptreleases: ${JSON.stringify(releases, null, 2)}
sdk.getReleases({ releasesUrl: 'https://brentonhouse.github.io/titanium-sdk-repo/releases.json' })
.then(releases => {
console.log();`
})
.catch(error => {
console.error('you are here ā Error occurred!');
console.error(error);
});
> Using Official Axway Repository
`JavaScriptbranches: ${JSON.stringify(branches, null, 2)}
sdk.getBranches()
.then(branches => {
console.log();`
})
.catch(error => {
console.error('you are here ā Error occurred!');
console.error(error);
});
> Using Official Axway Repository
`JavaScriptbuilds: ${JSON.stringify(builds, null, 2)}
sdk.getBuilds()
.then(builds => {
console.log();`
})
.catch(error => {
console.error('you are here ā Error occurred!');
console.error(error);
});
> 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);
});
> 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);
});
- 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
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.