Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
appc-compat
Advanced tools
Intermediator for the new Appcelerator "appc" CLI and the old "ti", "alloy" and "acs" CLI.
Since 4.0, the Appcelerator Platform has a single appc
CLI that bundles local versions of the former ti
, alloy
and acs
CLI. You can still use the embedded CLIs by calling appc ti
instead of ti
. You can also still install the other three CLIs directly from NPM, in particular to work on projects that you have not (yet) migrated from the OSS software to the Appcelerator Platform.
Some community tools like TiNy and TiShadow relied on these old CLIs and will now have to work in environments where either or both the new unified and old global CLIs are installed. This module and CLI takes care of that.
The primary use of this package is to be used as a module, which will try to use the former global CLIs and fall back to the unified.
var compat = require('appc-compat');
compat.ti(['info', '-t', 'ios'], {
// options
}, funciton(err, stdout, stderr) {
// do something
});
Other available methods are:
compat.spawn(cmd, args, opts, cb);
compat.spawnSync(cmd, args, opts);
compat.tiSync(args, opts);
compat.titanium(args, opts, cb);
compat.titaniumSync(args, opts);
compat.alloy(args, opts, cb);
compat.alloySync(args, opts);
compat.acs(args, opts, cb);
compat.acsSync(args, opts);
You can pass preferAppc:true
in the opts
argument to first try the unified CLI and fall back to the former global CLIs.
Finally, you can check the existence of various CLIs via these boolean properties:
compat.hasAppc;
compat.hasTi;
, compat.hasTitanium;
compat.hasAlloy;
compat.hasAcs;
The package also installs a new appc-compat
CLI, which will try to use the former global CLIs and fall back to the unified.
$ appc-compat ti info
Or pass the --prefer-appc
option to first try the unified CLI and fall back to the former global CLIs:
$ appc-compat ti info --prefer-appc
If you want the convenience of the former shorter CLIs for those embeded in the new unified CLI just use a bash alias in your ~/.bash_profile
:
alias ti='appc ti'
alias alloy='appc alloy'
alias acs='appc acs'
Don't forget to:
source ~/.bash_profile
FAQs
Intermediator for the new Appcelerator "appc" CLI and the old "ti", "alloy" and "acs" CLI.
The npm package appc-compat receives a total of 3 weekly downloads. As such, appc-compat popularity was classified as not popular.
We found that appc-compat demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.