A set of helpful CLI utilities for Heroku and oclif-based Node.js CLIs. This package provides convenient wrappers and helpers for user interaction, output formatting, and test utilities.
- User prompts and confirmations (yes/no, input)
- Styled output (headers, JSON, objects, tables)
- Wait indicators for async operations
- Test helpers for CLI output and environment setup
npm install @heroku/heroku-cli-util
You can import the utilities you need from the main exports.
import { hux } from '@heroku/heroku-cli-util';
// Styled header
hux.styledHeader('My CLI Header');
// Styled JSON
hux.styledJSON({ foo: 'bar' });
// Styled object
hux.styledObject({ foo: 'bar' });
// Table output
hux.table([
{name: 'Alice', age: 30},
{name: 'Bob', age: 25},
], {
name: {header: 'Name'},
age: {header: 'Age'},
});
// Wait indicator
const stop = hux.wait('Processing...');
// ...do async work...
stop();
import { hux } from '@heroku/heroku-cli-util';
const name = await hux.prompt('What is your name?');
const proceed = await hux.confirm('Continue?');
import { testHelpers } from '@heroku/heroku-cli-util';
testHelpers.initCliTest();
testHelpers.setupStdoutStderr();
// ...run your CLI code...
const output = testHelpers.stdout();
const errorOutput = testHelpers.stderr();
testHelpers.restoreStdoutStderr();
testHelpers.expectOutput(output, 'expected output');
// Run a command (see docs for details)
// await testHelpers.runCommand(MyCommand, ['arg1', 'arg2']);
import { types } from '@heroku/heroku-cli-util';
// Error types
try {
throw new types.errors.AmbiguousError([{ name: 'foo' }, { name: 'bar' }], 'addon');
} catch (err) {
if (err instanceof types.errors.AmbiguousError) {
console.error('Ambiguous:', err.message);
}
}
try {
throw new types.errors.NotFound();
} catch (err) {
if (err instanceof types.errors.NotFound) {
console.error('Not found:', err.message);
}
}
// PG types (for TypeScript)
/**
* types.pg.AddOnAttachmentWithConfigVarsAndPlan
* types.pg.AddOnWithRelatedData
* types.pg.ConnectionDetails
* types.pg.ConnectionDetailsWithAttachment
* types.pg.Link
* types.pg.TunnelConfig
*/
import { utils } from '@heroku/heroku-cli-util';
// Get Heroku Postgres database connection details (requires APIClient from @heroku-cli/command)
// const db = await utils.pg.databases(herokuApiClient, 'my-app', 'DATABASE_URL');
// Get Heroku Postgres host
const host = utils.pg.host();
// Run a query (requires a ConnectionDetails object)
// const result = await utils.pg.psql.exec(db, 'SELECT 1');
- Build:
npm run build
- Test:
npm test
- Lint:
npm run lint