Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Gigachad Scripts RunnerNew to Visual Studio Code? Get it now.
Gigachad Scripts Runner

Gigachad Scripts Runner

RicardoFreitas7

|
31 installs
| (0) | Free
Easy script execution from package.json or custom configurations, with optional Docker support.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Gigachad Scripts Runner

Is a VS Code extension that simplifies running scripts defined in package.json or custom configurations. It also enables running scripts inside Docker containers, providing greater flexibility and integration with container-based development environments.


🚀 Features

  • List scripts defined in package.json.
  • Integration with custom configurations for additional scripts.
  • Execute scripts directly in the VS Code terminal.
  • Support for running commands inside Docker containers.
  • Automatic detection of the package manager (npm or yarn).

Use

Find Gigachad icon in status bar

statusBar

Select script to execute

panel

See the result in the terminal

terminal

Example of Custom Configuration:

In the VSCode configuration file (settings.json), add the custom scripts you want to execute. Here is an example:

"gigachad.customScripts": [
  {
    "name": "build:docker",
    "command": "docker-compose up --build",
    "group": "example-app"
  },
]

Here’s the table in Markdown format explaining the JSON configuration in English:

markdown Copiar código

Explanation of the JSON Configuration

Field Description Example
name The name of the custom script that will appear in the VSCode interface. "build:docker",
command The command to be executed in the terminal when the script is triggered. It can be any valid shell command. "docker-compose up --build"
group (Optional) The group to which the script belongs. This helps in organizing scripts into categories. "example-app"
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft