https://github.com/seraprogrammer/speeed
https://github.com/seraprogrammer/speeed
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/seraprogrammer/speeed
- Owner: seraprogrammer
- Created: 2025-03-18T11:23:38.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-03-18T12:10:43.000Z (11 months ago)
- Last Synced: 2025-03-18T12:26:16.109Z (11 months ago)
- Language: JavaScript
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🚀 Speeed.js CLI - Accelerate Your Development Workflow
A turbocharged CLI tool that combines package management, project scaffolding,
and Git shortcuts in one powerful utility. Speeed.js streamlines your
development process with intuitive commands and zero configuration.
## 📦 Installation
```bash
npm install -g speeed
```
## 🎯 Features
- **Zero-config project templates** - Create new projects in seconds
- **Enhanced npm commands** - Simplified package management
- **Git shortcuts** - Streamlined version control workflows
- **Custom command system** - Create aliases for your most-used commands
- **Cross-platform support** - Works on Windows, macOS, and Linux
## 🛠️ Core Commands
# Help & Version:
```bash
i help | i -h # List commands i version
i -v # Show version
```
# Terminal:
```bash
i ziro | i 0 # Clear terminal
```
# System Information:
```bash
i ping # Basic System Info
i ping -p | i -ping -p # Detailed System Info
```
# Node.js Script:
```bash
i run my_script.js [arg1 arg2...]
```
# Git Operations:
```bash
i init | i -i # Init repo
i add | i -a # Stage all
i add my_file.txt | i -a my_file.txt # Stage file
i commit "msg" | i -c "msg" # Commit
i reBranch | i -br # Rename branch to main
i status | i -s # Git status
i push | i -p # Push
i push -f | i -p -f # Force push
i remote | i -r # Show remotes
i remove | i -rm # Remove origin remote
i addRemote | i -add # Add remote
i branch | i -b # List branches
i checkout | i -c # Switch branch
i log | i -l # Git log
i merge | i -m # Merge branch
i reset | i -re # Reset HEAD
i clone | i -cp # Clone repo
i git | i -git # Init, add, commit (random msg), rename branch
```
# Templates:
```bash
i ready | i -rd # List templates
i install | i -temp # Install template
```
# Project Creation:
```bash
i vite | i -vite # Create Vite project
i vite -D | i -vite -D # Install Vite as a dev dependency
i vilo | i -vilo # Create Vilo project
i next | i -next # Create Next.js project
```
# TypeScript:
```bash
i ts .ts | i -ts .ts # Run TS file
i ts .ts -c | i -ts .ts -c # Compile TS file
```
# Package Management (NPM):
```bash
i get | i -g # Install local
i get g # Install global
```
# PNPM Management:
```bash
i pnpm i | i -pn i # Install PNPM globally
i pnpm get | i -pn get # PNPM install
i pnpm | i -pn # Run with PNPM
```
# Development Server:
```bash
i dev | i -dev # Start development server
i build | i -build # Build project
```
# API:
```bash
i api | i -api # Get a random API endpoint
```