Amplify CLI (Deprecated Placeholder)
This `amplify-cli` package, currently at version 1.0.0, is explicitly *not* the official or actively maintained command-line interface for Axway AMPLIFY. Its README clearly states, 'You probably want @axway/amplify-cli,' indicating it serves as a deprecated placeholder or an abandoned package that has not seen updates since its initial publication. It lacks a defined release cadence and does not offer the expected functionality of the Axway AMPLIFY CLI. Developers looking to interact with the Axway AMPLIFY platform should ignore this package entirely and instead install and utilize `@axway/amplify-cli`, which is the correct and actively developed solution. This entry's purpose is to prevent misdirection and ensure users find the correct tooling.
Common errors
-
Error: Cannot find module 'amplify-cli/dist/...' or similar module resolution errors.
cause Attempting to import or require non-existent modules from the deprecated 'amplify-cli' package.fixRemove `amplify-cli` from your project and install `@axway/amplify-cli` instead. The deprecated package contains no usable programmatic exports. -
amplify: command not found
cause The `amplify` command is not registered in your system's PATH, likely because you installed the deprecated `amplify-cli` or did not install `@axway/amplify-cli` globally.fixInstall the correct CLI globally using `npm install -g @axway/amplify-cli`. Then ensure your shell's PATH includes the global npm binary directory.
Warnings
- breaking This `amplify-cli` package is NOT the official Axway AMPLIFY CLI. It is a deprecated placeholder and does not provide any functional CLI tools or APIs.
- gotcha Attempting to use this `amplify-cli` package (e.g., via `npx amplify-cli` or programmatic imports) will lead to errors, missing commands, or undefined behavior as it is not intended for use.
Install
-
npm install amplify-cli -
yarn add amplify-cli -
pnpm add amplify-cli
Quickstart
// This package is deprecated and should not be used. // To install the correct Axway AMPLIFY CLI: // npm install -g @axway/amplify-cli // You can then use the correct CLI: // amplify --version // amplify login // amplify central get resources // Do NOT attempt to import or use 'amplify-cli' directly as it contains no functional exports. // Any attempts to use it will result in errors or unexpected behavior.