Projects

Commands

Beyond the single start command, Granspace surfaces a project’s named commands and lets you run them individually.

Where commands come from

Commands are discovered declaratively by extensions:

So a project like this:

{
  "scripts": {
    "dev": "vite",
    "build": "vite build",
    "test": "vitest"
  }
}

shows dev, build and test as runnable commands under Details → Comandos, each tagged by kind.

Running & streaming

Each command has Run and a live log view that streams output as it happens (server-sent events). Every command runs as its own tracked process with its own log file, so:

This is separate from the project’s primary Start/Stop — you can run commands alongside it.

Runtime strategies

How a command actually runs is chosen per project type (a Node script vs a compose service, for example). This lives in the app’s runtime layer — you just press Run.