ratkit 0.2.16

A comprehensive collection of reusable TUI components for ratatui including resizable splits, tree views, markdown rendering, toast notifications, dialogs, and terminal embedding
Documentation
1
2
3
4
5
6
7
8
9
10
# Start documentation server
# Usage: just docs
# Example: just docs

docs:
    @echo "📦 Installing dependencies (if needed)..."
    @cd docs && npm install --legacy-peer-deps
    @echo "🚀 Starting documentation server on port 3000..."
    @mkdir -p logs
    @cd docs && npm run dev 2>&1 | tee -a ../logs/docs.log