npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@landicefu/alias-ex

v0.0.2

Published

Custom command aliases with variable substitution

Readme

alias-ex

A CLI tool for managing custom command aliases with variable substitution. Define reusable commands with placeholders for arguments, environment variables, and more.

Features

  • User-Defined Tokens: Define reusable values (e.g., $mac-mini, $prod-server) and use them across all commands
  • Custom Commands: Create reusable command templates
  • Variable Substitution: Use placeholders like $1, $2, $@, $#
  • Argument Modifiers: Transform arguments with :b, :d, :e, :r, :u, :l
  • Environment Variables: Access any environment variable with $VAR_NAME
  • Lightweight: Simple JSON configuration, no complex setup

Installation

npm install -g @landicefu/alias-ex

Quick Start

# Add tokens for frequently used values
ax token add mac-mini 192.168.1.100
ax token add user admin

# Add a custom command using tokens
ax add deploy 'scp -r $1 $user@$mac-mini:$2 && echo "Deployed $1:b to $mac-mini"'

# Use it
ax run deploy ./dist /var/www/html
# → Executes: scp -r ./dist [email protected]:/var/www/html && echo "Deployed ./dist to 192.168.1.100"

# Or after setting up shell integration:
deploy ./dist /var/www/html

# List all commands and tokens
ax list
ax token list

# Show command details
ax show deploy

# Remove a command
ax remove deploy

Configuration

Configuration is stored at ~/.config/alias-ex.json:

{
  "tokens": {
    "mac-mini": "192.168.1.100",
    "prod-server": "production.example.com",
    "user": "admin"
  },
  "commands": {
    "deploy": {
      "template": "scp -r $1 $USER@$mac-mini:$2 && echo 'Deployed $1:b'"
    },
    "backup": {
      "template": "tar czf $1:r.tar.gz $1 && scp $1:r.tar.gz backup@$prod-server:/backups/"
    },
    "sync": {
      "template": "rsync -avz --delete $@ $USER@$prod-server:$1"
    }
  }
}

Commands

ax add <name> <template>

Add a new custom command with variable substitution support.

# Basic command
ax add hello 'echo "Hello, $1!"'

# Multiple arguments
ax add move 'mv $1 $2 && echo "Moved $1:b to $2:d"'

# Using all arguments
ax add log 'git log --oneline $@ | head -$1'

ax run <name> [args...]

Execute a custom command with arguments.

ax run deploy ./build production-server
ax run backup ~/Documents/important.txt
ax run sync ~/Projects remote:/data/

ax list

List all configured commands.

ax list

ax show <name>

Show the template for a specific command.

ax show deploy

ax remove <name>

Remove a command.

ax remove deploy

ax edit <name>

Edit a command template interactively.

ax edit deploy

ax token add <name> <value>

Add a reusable token/variable that can be used in any command template.

Quoting Rules:

  • Token values without spaces: No quotes needed: ax token add server 192.168.1.100
  • Token values with spaces: Wrap in quotes so the shell treats them as one argument:
    ax token add filename '"My Document.txt"'
    ax token add projectdir '"/path with spaces/myproject"'
  • The quotes become part of the token value and are substituted literally into commands
# Add tokens for frequently used values
ax token add mac-mini 192.168.1.100
ax token add prod-server production.example.com
ax token add user admin

ax token list

List all defined tokens.

ax token list

ax token show <name>

Show a token's value.

ax token show mac-mini

ax token remove <name>

Remove a token.

ax token remove mac-mini

Quoting Guide

Understanding when to use quotes is essential for using alias-ex correctly.

Token Values

| Scenario | Command | Stored Value | |----------|---------|--------------| | No spaces | ax token add server 192.168.1.100 | 192.168.1.100 | | With spaces | ax token add path '"/path/to/my file"' | "/path/to/my file" | | With spaces | ax token add name '"John Doe"' | "John Doe" |

Command Templates

Always use single quotes around command templates to prevent shell expansion:

# CORRECT: Template is treated as one argument
ax add deploy 'scp -r $1 $user@$server:$2'

# WRONG: Shell splits on spaces, $user gets expanded by shell
ax add deploy scp -r $1 $user@$server:$2

Why Quotes Matter

The shell processes your command before alias-ex sees it. Single quotes prevent the shell from:

  • Expanding variables ($HOME/Users/you)
  • Splitting arguments on spaces
  • Expanding wildcards (*)

Examples

# Good: Token with quotes for files with spaces
ax token add mydoc '"My Document.txt"'
ax add delete 'rm $mydoc'
ax run delete
# Result: rm "My Document.txt"  ✓ Works correctly

# Good: Token without quotes for normal values
ax token add server 192.168.1.100
ax add ping 'ping -c 3 $server'
ax run ping
# Result: ping -c 3 192.168.1.100  ✓ Works correctly

# Good: Using both patterns together
ax token add projectdir '"/Users/me/My Projects/app"'
ax token add backupdir '"/Volumes/Backup Drive"'
ax add backup 'cp -r $projectdir $backupdir/$DATE'
ax run backup
# Result: cp -r "/Users/me/My Projects/app" "/Volumes/Backup Drive/2024-03-14"  ✓ Works correctly

Variable System

Tokens (User-Defined Variables)

The most powerful feature of alias-ex is the ability to define reusable tokens:

# Define tokens
ax token add mac-mini 192.168.1.100
ax token add user admin
ax token add home /Users/admin

# Use tokens in any command
ax add ssh-mac 'ssh $user@$mac-mini'
ax add backup 'cp -r $home/Documents $home/Backups/$DATE'

Tokens can be used in command templates with $token-name syntax. Tokens are resolved before other variables.

Token Naming Rules:

  • Must start with a letter or underscore
  • Can contain letters, numbers, hyphens, and underscores
  • Cannot conflict with positional arguments ($1, $2, etc.) or special variables

Positional Arguments

| Variable | Description | Example | |----------|-------------|---------| | $1, $2, ... | Individual arguments | deploy file.txt server$1 = file.txt | | $@ | All arguments as string | a b ca b c | | $* | Same as $@ | a b ca b c | | $# | Number of arguments | a b c3 | | $@1, $@2 | Arguments from position N | $@2 with a b cb c |

Environment Variables

Any environment variable can be accessed:

ax add info 'echo "User: $USER, Home: $HOME, PWD: $PWD"'

Special Variables

| Variable | Description | |----------|-------------| | $DATE | Current date (YYYY-MM-DD) | | $TIME | Current time (HH:MM:SS) | | $DATETIME | Current datetime (YYYY-MM-DD HH:MM:SS) | | $RANDOM | Random number (0-32767) |

Argument Modifiers

Apply modifiers to transform argument values:

| Modifier | Description | Example ($1 = /path/to/File.txt) | |----------|-------------|--------------------------------------| | :b | Basename (filename) | File.txt | | :d | Directory name | /path/to | | :e | Extension | .txt | | :r | Remove extension | /path/to/File | | :u | Uppercase | /PATH/TO/FILE.TXT | | :l | Lowercase | /path/to/file.txt |

Modifier Examples

# Deploy with basename only
ax add deploy 'scp $1 $USER@$HOST:/var/www/$1:b'
ax run deploy /home/user/project/dist.tar.gz
# → scp /home/user/project/dist.tar.gz user@host:/var/www/dist.tar.gz

# Backup with date in filename
ax add backup 'cp $1 $1:r-$(date +%Y%m%d)$1:e'
ax run backup document.txt
# → cp document.txt document-20240314.txt

# Case transformations
ax add shout 'echo "$1:u"'
ax add whisper 'echo "$1:l"'

Usage Examples

Token-Based Remote Management

# Define your infrastructure tokens once
ax token add mac-mini 192.168.1.100
ax token add raspberry-pi 192.168.1.50
ax token add prod-server production.example.com
ax token add user admin

# Create reusable remote commands
ax add ssh 'ssh $user@$1'
ax add vnc 'open vnc://$1'
ax add deploy 'scp -r ./dist $user@$1:/var/www/html'
ax add backup-remote 'ssh $user@$1 "tar czf backup.tar.gz /data" && scp $user@$1:backup.tar.gz ./backups/'

# Use with any token
ax run ssh mac-mini           # → ssh [email protected]
ax run vnc raspberry-pi       # → open vnc://192.168.1.50
ax run deploy prod-server     # → scp -r ./dist [email protected]:/var/www/html
ax run backup-remote mac-mini # → backup from mac-mini locally

Development Workflow

# Quick git commit
ax add gc 'git add -A && git commit -m "$1" && git push'
ax run gc "Fix login bug"

# Run tests with coverage
ax add test 'npm test -- --coverage --reporter=lcov $@'
ax run test --watch

# Build and deploy
ax add ship 'npm run build && ax run deploy ./dist $1'
ax run ship production-server

File Operations

# Safe file copy with backup
ax add safe-cp 'cp $1 $1:r.backup-$(date +%s)$1:e && cp $1 $2'
ax run safe-cp important.doc /backup/

# Organize downloads by extension
ax add organize 'mkdir -p $1/$2:e && mv $2 $1/$2:e/'
ax run organize ~/Downloads ~/Downloads/*.zip

System Administration

# SSH to common servers
ax add prod 'ssh admin@$1.prod.company.com'
ax run prod web01

# Check disk usage
ax add disk 'df -h $@ | grep -E "(Filesystem|$1)"'
ax run disk /dev/sda1

# Quick archive
ax add archive 'tar czf $1-$(date +%Y%m%d).tar.gz $@2'
ax run archive backups ~/Documents ~/Pictures

Shell Integration (Optional)

To use commands directly without ax run prefix:

Bash

Add to ~/.bashrc:

# Alias-ex integration
ax() {
  if [ $# -eq 0 ]; then
    command ax
  elif command ax show "$1" &>/dev/null; then
    command ax run "$@"
  else
    command ax "$@"
  fi
}

Zsh

Add to ~/.zshrc:

# Alias-ex integration
ax() {
  if [ $# -eq 0 ]; then
    command ax
  elif command ax show "$1" &>/dev/null; then
    command ax run "$@"
  else
    command ax "$@"
  fi
}

Now you can use:

deploy ./dist production    # Instead of: ax run deploy ./dist production
backup ~/documents         # Instead of: ax run backup ~/documents

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | ALIAS_EX_CONFIG | Path to config file | ~/.config/alias-ex.json |

License

MIT