Run GitHub repositories directly like npx - but for git repos.
npm install -g gxegxe <repo> [script] [args...]Run a repo with its default start script:
gxe user/repoRun a specific script from package.json:
gxe user/repo buildPass arguments to the script:
gxe user/repo build --prodUse a full GitHub URL:
gxe https://github.com/user/repo dev- Clone or Update: Clones the repository to
~/.gxe/cache or updates if it exists - Find Script: Looks for the script in package.json
scriptsorbinfields - Execute: Runs the script with any provided arguments
- Cache: Future runs use the cached version for speed
The tool looks for scripts in this order:
package.jsonscriptsfieldpackage.jsonbinfield- Executable file in the repo root
If no script name is provided, start is used by default.
Runs with full stdio inheritance, so all output appears directly in your terminal.