Demo
Terminal Output Examples
Here's a colorful terminal output:
user@computer:~/project$ npm test
Running tests...
✓ All tests passed (15 tests, 2.3s)
⚠ 1 snapshot updated
✗ Coverage threshold not metLog messages with different severity levels:
2024-12-07 10:30:15 [INFO] Application started
2024-12-07 10:30:16 [SUCCESS] Database connected
2024-12-07 10:30:45 [WARN] High memory usage
2024-12-07 10:31:02 [ERROR] Connection failedTerminal Commands
$ git status
On branch main
Your branch is up to date with 'origin/main'.
Changes not staged for commit:
modified: src/components/Button.tsx
modified: docs/api.md
Untracked files:
temp/
.env.localApplication Logs
SUCCESS Deployment completed
Deployment Summary:
✓ Frontend build completed (2m 15s)
✓ Backend tests passed (45s)
✓ Database migration successful (12s)
✓ Health checks passing (5s)
Live URLs:
https://app.example.com
https://api.example.comError Messages
ERROR
Build failed with 3 errors:
1. TypeScript Error
src/utils/api.ts:42:15
Type 'string' is not assignable to type 'number'
2. ESLint Error
src/components/Header.tsx:18:1
Missing return type annotation
3. Test Failure
tests/integration/auth.test.ts
Expected 200 but received 401