CLI Options

This page describes the available commands and options for Chronoter CLI.

Global Options

Options available for all commands.

OptionDescription
-V, --versionDisplay version
-h, --helpDisplay help

dev

Start the development server. Supports Hot Module Replacement (HMR), so file changes are instantly reflected in the browser.

chronoter dev [options]

Options

OptionDescriptionDefault
-p, --port <port>Server port number3000
-H, --host <host>Server hostlocalhost
--no-openDisable automatic browser openingBrowser opens automatically
--cwd <path>Working directoryCurrent 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