Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>RunCode LauncherNew to Visual Studio Code? Get it now.
RunCode Launcher

RunCode Launcher

Run Code

|
149 installs
| (0) | Free
Run project scripts in any language with one click. Compatible with VS Code and all VS Code forks (Cursor, Codeium, etc.).
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

🚀 RunCode Launcher

The Premium Script Runner
By CodexSploitx

Run any script, in any language, with a single click.
Designed for Speed, Beauty, and Efficiency.

Version Downloads License


RunCode Demo

🔥 Why RunCode?

RunCode Launcher isn't just another task runner. It's a productivity booster designed for developers who value their time and aesthetics.

Stop context-switching. Stop typing repetitive commands. Start shipping.

✨ Premium Features

  • 💎 Gold Standard UI: A beautiful, "Premium" split button in your status bar ([ ▶ Run Code | ⬇ ]).
  • ⚡ One-Click Execution: Run your favorite scripts instantly.
  • 🧠 Smart Detection: Automatically finds scripts in package.json or runcode.json.
  • 🌐 Universal Support: JavaScript, Python, Go, Rust, PHP... if it runs in a terminal, it runs in RunCode.
  • 📂 Auto-Categorization: Scripts are organized into Dev, Build, Test, Deploy, and Other.
  • 📜 Smart History: Quickly re-run your last executed scripts.
  • 🔧 Custom Arguments: Easily pass flags and arguments to your scripts on the fly.

📸 See it in Action

RunCode Screenshot

🚀 Getting Started

RunCode works out of the box for most projects.

1. JavaScript / TypeScript Projects

We automatically detect your package.json. No configuration needed!

// package.json
{
  "scripts": {
    "dev": "vite",
    "build": "tsc && vite build",
    "test": "vitest"
  }
}

2. Any Other Language (Python, Go, Rust, etc.)

Create a runcode.json file in your root directory. We'll even help you generate it!

// runcode.json
{
  "scripts": [
    // ⚡ Simple Example
    {
      "name": "Build Project",
      "command": "make build",
      "category": "build"
    },
    // 🔥 Power User Example (Full Configuration)
    {
      "name": "Start Server",
      "command": "python main.py",
      "category": "dev",
      "args": true,             // Prompts for extra args (e.g. --reload)
      "env": {                  // Sets environment variables
        "PORT": "8080",
        "DEBUG": "true"
      }
    }
  ]
}

🛠 Power User Configuration

Customize your experience in runcode.json:

Field Description Example
name Display name in the menu "Start Server"
command The terminal command to run "python main.py"
category Organizes script with icons "dev", "build", "test"
args Prompt for arguments before running true
env Set environment variables {"PORT": "8080"}

⌨️ Commands

Command Description
runcode.run Run the currently selected script
runcode.selectScript Open the script selector menu
runcode.runLast Re-run the last executed script

Ready to upgrade your workflow?

Install RunCode Launcher today.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft