CLI Options
This page describes the available commands and options for Chronoter CLI.
Global Options
Options available for all commands.
| Option | Description |
|---|---|
-V, --version | Display version |
-h, --help | Display help |
dev
Start the development server. Supports Hot Module Replacement (HMR), so file changes are instantly reflected in the browser.
chronoter dev [options]Options
| Option | Description | Default |
|---|---|---|
-p, --port <port> | Server port number | 3000 |
-H, --host <host> | Server host | localhost |
--no-open | Disable automatic browser opening | Browser opens automatically |
--cwd <path> | Working directory | Current directory |
Examples
# Start with default settings
chronoter dev
# Start on port 8080
chronoter dev --port 8080
# Don't open browser automatically
chronoter dev --no-open
# Start in a specific directory
chronoter dev --cwd ./my-docs
# Combine multiple options
chronoter dev --port 8080 --host 0.0.0.0 --no-open
