axt
v0.0.10
Published
CLI to manage AWS SSM parameters and related tasks.
Readme
axt CLI
CLI to manage AWS SSM parameters and related tasks.
Install (global)
# from npm
npm install -g axt
# or if you want to install from local package file
npm install -g ./path/to/axt-0.0.1.tgzBuild locally
# install dependencies
npm install
# build
npm run build
# run locally
node bin.js ssm:list --help
# or using npx/tsx (dev)
npx tsx src/main.ts ssm:list --helpPublish to npm
- Ensure
package.jsonfields are correct (name, version). - Login to npm:
npm login- Publish:
npm publish --access publicNote: prepublishOnly runs npm run build to ensure dist/ is built before publishing.
Usage
After install, the CLI is available as axt (command name configured in package.json). Example:
# list parameters
axt ssm:list -e development
# plan
axt ssm:plan -e productionNotes
- The package uses path aliases configured in
tsconfig.jsonandtsc-aliasto replace@/...imports in compileddistfiles. - If you want a scoped or private package, update
publishConfig.accessaccordingly.
