Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
#!/bin/bash | |
# 🚀 Ultimate Dev Setup Script - Husky + ESLint + Prettier + Commitlint | |
# Perfect for YouTube tutorial: "Setup Pre-commit Hooks in Seconds!" | |
# Author: Your Name | |
# Description: One-click setup for professional development workflow | |
set -e # Exit on any error | |
# Colors for beautiful output |
Node Version Manager (nvm) is a tool that allows you to easily manage multiple installations of Node.js. It's highly recommended as it makes switching between Node.js versions seamless.
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash