3.2.12 • Published 3 months ago

axway v3.2.12

Weekly downloads
15
License
Apache-2.0
Repository
github
Last release
3 months ago

Axway CLI

The Axway CLI is the unified CLI for the Axway Amplify platform.

Prerequisites

The Axway CLI requires Node.js 12.13.0 or newer.

Installation

npm install -g axway

macOS and Linux Users

Due to file permissions, when installing the Axway CLI globally, you may need to prefix the command above with sudo:

sudo npm install -g axway

Quick Start

Show all available commands:

axway

Log into the Axway Amplify platform:

axway auth login

List available packages:

axway pm search [keyword]

Install a package:

axway pm install [package-name]

List config settings:

axway config ls

Set a config setting:

axway config set <name> <value>

Config Settings

Update Checks

The Axway CLI checks for package updates for the Axway CLI and all installed CLI extensions every hour. If there are any available updates, a message is displayed once per hour. The update checks can be disabled by running: axway config set update.check false.

Telemetry

The Axway CLI has a telemetry system that collects anonymous data which is used to improve Axway products. We use this data to determine product roadmaps, feature deprecations, and crash reporting.

Data collected includes your operating system, CPU architecture, Node.js version, Axway CLI version, installed CLI extensions, command invoked, and randomly generated machine and session ids. Sensitive information including your username, email address, and paths are redacted.

Axway does not collect your personal information, link your activity to your Axway account, capture environment variables, or unique machine identifiers such as the MAC address or serial number.

Telemetry is disabled by default. You can enable telemetry by running axway telemetry --enable or disable it by running axway telemetry --disable.

Telemetry is always disabled if the environment variable AXWAY_TELEMETRY_DISABLED=1 is set or when running from a well known continuous integration environment.

Extensions

Axway CLI is a unified CLI and provides a main entry point for invoking other local CLI programs. These other CLIs are called "extensions". Extension CLIs can be a npm package, a single Node.js JavaScript file, or a native executable.

With the exception of cli-kit enabled CLIs, all extension CLIs are run as subprocesses and the Axway CLI banner is suppressed. The only indication an extension CLI has that it's being run by the Axway CLI is the AXWAY_CLI environment variable (also AMPLIFY_CLI for backwards compatibility) containing the Axway CLI's version.

cli-kit enabled CLIs are directly loaded via require() and the exported CLI structure is merged with the parent CLI command context tree. This promotes efficient reuse parser state and provides a seamless user experience.

If an extension is a npm package, the Axway CLI will automatically invoke it using the Node.js executable. Specifying the extension as node /path/to/script.js will treat the extension as a native executable.

Creating an Extension CLI

Step 1

Create a new Node.js project as you normally would. Add cli-kit to your project:

$ yarn add cli-kit --save

Step 2

You will need to create at least 2 JavaScript files: one that defines the CLI structure (cli.js) and one that executes it (main.js).

cli.js exports the definition of your CLI structure including its commands and options.

import CLI from 'cli-kit';

export default new CLI({
	banner: 'My Amazing CLI, version 1.2.3',
	commands: {
		profit: {
			async action({ argv, console }) {
				console.log(`It works{argv.turbo ? ' and it\'s super fast' : ''}!`);
			},
			desc: 'make it rain'
		}
	},
	desc: '',
	help: true,
	helpExitCode: 2,
	name: 'mycli',
	options: {
		'--turbo': 'go faster'
	}
});

:bulb: You may also export your CLI using the CommonJS method where module.exports = new CLI();.

main.js imports your cli.js and executes it as well as defines your global error handler.

import cli from './cli';

cli.exec()
	.catch(err => {
		const exitCode = err.exitCode || 1;

		if (err.json) {
			console.log(JSON.stringify({
				code: exitCode,
				result: err.toString()
			}, null, 2));
		} else {
			console.error(err.message || err);
		}

		process.exit(exitCode);
	});

While not required, you probably will also want to add a bin script to your project so you can run your CLI outside of the Axway CLI:

#!/usr/bin/env node
require('../dist/main');

Step 3

Edit your package.json and set the following "keywords", "amplify", and "cli-kit" top-level property:

{
  "keywords": [
    "amplify-package"
  ],
  "amplify": {
    "type": "amplify-cli-plugin"
  },
  "cli-kit": {
    "description": "This description is optional and overrides the top-level description",
    "main": "./path/to/cli"
  }
}

:warning: the "main" must point to the script exporting the CLI definition (cli.js), not the main or bin script.

If your extension has multiple entrypoints, you can define them as "exports":

{
  "cli-kit": {
    "description": "This description is optional and overrides the top-level description",
    "exports": {
		"foo": "./path/to/foo-cli",
		"bar": "./path/to/bar-cli"
	}
  }
}

When an extension CLI is loaded, the contents of the "cli-kit" property is merged on top of the entire package.json definition. This allows you to override the name and description.

Step 4

To register your CLI with the Axway CLI, simply run:

$ axway config set extensions.mycli /path/to/package

:bulb: Note that the extension path should be to your local project directory containing the package.json.

Step 5

Run your CLI!

$ axway mycli profit --turbo
It works and it's super fast!

Publishing Your CLI

Publish your CLI as you normally would using npm publish. To install your CLI, you could npm install -g <name>, but then you would also have to manually register it with the Axway CLI.

The recommended way to install your CLI package is to use teh Axway CLI package manager:

$ axway pm install <name>

This will not only download and install the package, including dependencies, but also automatically register it with the Axway CLI.

:bulb: Note that the Axway CLI package manager allows for multiple versions of a package to be installed simultaneously, however only one is the "active" version. Run the axway pm ls command to see which versions are installed and run the axway pm use <name>@<version> command to switch the active version.

cli-kit package.json Properties

Below are the supported "cli-kit" properties in the package.json.

:warning: Note that while each property is optional, the "cli-kit" property MUST exist in order for the Axway CLI to detect the Node.js package as

NameTypeDescription
nameStringThe primary name of the CLI command that will be visible in the help. This is especially useful when the package name is a scoped package. Defaults to the original package name.
descriptionStringA brief description to show on the help screen. Defaults to the original package description
mainStringA path relative to the package.json to the main JavaScript file. It is critical that this file exports a CLI object.
aliasesArray<String>An array of names that will invoke the extension CLI. These are not displayed on the help screen.

:bulb: Note about aliases:

If the npm package's package.json has a bin that matches original package name, but differs from the "cli-kit" extension name, then the bin name is automatically added to the list of aliases.

Renaming Your CLI

Should the name of your extension CLI product change, you simply need to update the "name" in the package.json. It is highly recommended you add an alias for the previous name:

{
	"name": "mynewcli",
	"cli-kit": {
		"aliases": [ "myoldcli" ]
	}
}

Afterwards, publish the new product. The Registry Server will automatically register your new extension CLI.

Note that commands such as axway pm update will not resolve the new product name. Users will need to explicitly install the new extension CLI.

Legal

This project is open source under the Apache Public License v2 and is developed by Axway, Inc and the community. Please read the LICENSE file included in this distribution for more information.

3.2.12

3 months ago

3.2.11

6 months ago

3.2.6

2 years ago

3.2.7

2 years ago

3.2.5

2 years ago

3.2.4

2 years ago

3.1.0-rc2

2 years ago

3.1.0-rc1

2 years ago

3.2.2

2 years ago

3.2.1

2 years ago

3.2.0

2 years ago

3.1.0

2 years ago

3.2.3

2 years ago

3.0.3-rc1

2 years ago

3.0.3-rc2

2 years ago

3.0.3-rc3

2 years ago

3.0.2

2 years ago

3.0.1

3 years ago

3.0.0

3 years ago

3.0.0-rc2

3 years ago

3.0.0-rc3

3 years ago

3.0.0-rc1

3 years ago

3.0.0-beta5

3 years ago

3.0.0-beta3

3 years ago

3.0.0-beta4

3 years ago

3.0.0-beta1

3 years ago

3.0.0-beta2

3 years ago

2.2.0

3 years ago

2.2.0-beta2

3 years ago

2.2.0-beta1

3 years ago

2.1.0-alpha.3

3 years ago

2.1.0-alpha.2

3 years ago

2.1.0-alpha.1

3 years ago

2.1.0-alpha.0

3 years ago

2.1.0

3 years ago

2.0.0

3 years ago

2.0.0-rc15

3 years ago

2.0.0-rc14

3 years ago

2.0.0-rc13

3 years ago

2.0.0-rc12

3 years ago

2.0.0-rc11

3 years ago

2.0.0-rc10

3 years ago

2.0.0-rc9

3 years ago

2.0.0-rc8

3 years ago

2.0.0-rc7

3 years ago

2.0.0-rc6

3 years ago

2.0.0-rc5

3 years ago

2.0.0-rc4

3 years ago

2.0.0-rc3

3 years ago

2.0.0-rc2

3 years ago

2.0.0-rc1

4 years ago

0.0.0

4 years ago