GioJSdocs
Get StartedReleasesGitHub ↗
API Reference

CLI

Scaffold, build, and run GioJS apps from the command line.

create-giojs

Scaffold a new project. Runs an interactive prompt, or accepts flags for non-interactive use.

bash
npm create giojs@latest my-app -- --ts   # or --js
#   --no-install   skip dependency install
#   -y / --yes     accept all defaults

giojs-server / gio

The gio binary runs the server. npm run dev and npm run start call it for you.

bash
NODE_ENV=development giojs-server   # dev
giojs-server                        # production

gio-migrate

Converts a Next.js project toward GioJS conventions (best-effort).

bash
npx gio-migrate ./my-next-app