oxide-cli 0.4.0

⚡ Lightning-fast project scaffolding tool for modern JavaScript/TypeScript development
# Oxide
## Installation

### Quick Install (Recommended)

**Linux/macOS:**
```bash
curl -sSL https://raw.githubusercontent.com/oxide-cli/oxide/main/install.sh | bash
```

**Windows (PowerShell):**
```powershell
irm https://raw.githubusercontent.com/oxide-cli/oxide/main/install.ps1|iex
```

After installation, add to your PATH (if not already):

**Bash:**
```bash
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
```

**Zsh:**
```bash
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
```

**Windows:** The installer automatically adds to PATH. Restart your terminal after installation.

### Manual Installation

Download the latest release for your platform:
- [Linux x86_64]https://github.com/oxide-cli/oxide/releases/latest/download/oxide-linux-x86_64.tar.gz
- [macOS Apple Silicon]https://github.com/oxide-cli/oxide/releases/latest/download/oxide-macos-aarch64.tar.gz
- [Windows]https://github.com/oxide-cli/oxide/releases/latest/download/oxide-windows-x86_64.zip

## Usage
```bash
oxide new my-app
```