CLI Reference
The strapi-types CLI fetches your Strapi schema and generates TypeScript types and a typed client.
Commands
generate
Connects to your Strapi instance, fetches the schema, and generates TypeScript output files.
npx strapi-types generate --url http://localhost:1337Options:
| Option | Description | Default |
|---|---|---|
--url | Strapi server URL | STRAPI_URL env var |
--token | API token for authenticated access | STRAPI_TOKEN env var |
--output | Output directory for generated files | required (your source tree, e.g. ./src/strapi) |
--silent | Suppress all console output | false |
--force | Regenerate even if schema has not changed | false |
--format | Output format: js (compiled .js + .d.ts) or ts (raw .ts) | js |
Examples:
# Generate into your source tree and commit it
npx strapi-types generate --url http://localhost:1337 --output ./src/strapi
# With authentication
npx strapi-types generate --url http://localhost:1337 --token abc123 --output ./src/strapi
# Force regeneration (ignore schema hash)
npx strapi-types generate --url http://localhost:1337 --output ./src/strapi --force
# Emit raw TypeScript instead of compiled .js + .d.ts
npx strapi-types generate --output ./src/strapi --format ts--output is required
--output must point at a directory in your source tree (e.g. ./src/strapi). Generate the client there and commit the result so your types are durable and reviewable. You then import from that directory (e.g. '@/strapi').
--format js vs --format ts
js (default) emits compiled .js + .d.ts — runs anywhere, including plain JavaScript projects with no build step. ts emits raw .ts for bundlers and monorepos that compile their own sources (Turborepo, Nx, pnpm workspaces); your tsconfig.json needs moduleResolution: "bundler" or "nodenext" so the .js-extension imports resolve to .ts source. Both are written into your source tree and committed.
check
Compares the schema hash baked into your generated client against the live Strapi schema, and reports whether your types are up to date. Useful in CI.
npx strapi-types check --url http://localhost:1337 --output ./src/strapiIt will:
- Exit
1with a clear message if no generated client is found (rungeneratefirst) - Warn if the generated client was produced by a different
strapi-typed-clientversion than the one installed - Fetch the remote schema hash and compare it to the local one
- Exit
0when in sync,1when out of sync
Pass --output to point at the directory you generated into. It is required.
watch
Connects to the Strapi SSE stream and automatically regenerates types when the schema changes.
npx strapi-types watch --url http://localhost:1337This is useful during development. The command runs continuously and:
- Opens an SSE connection to
/api/strapi-typed-client/schema-watch - Receives the current schema hash on connect
- Regenerates types only when the hash differs from the local one
- Automatically reconnects if the Strapi server restarts
TIP
For Next.js projects, consider using the withStrapiTypes wrapper instead of running watch manually. See the Next.js guide.
Environment Variables
Instead of passing flags on every invocation, you can set environment variables:
| Variable | Equivalent Flag |
|---|---|
STRAPI_URL | --url |
STRAPI_TOKEN | --token |
Example with a .env file:
# .env
STRAPI_URL=http://localhost:1337
STRAPI_TOKEN=your-api-token-here# Now you can run without flags
npx strapi-types generateWARNING
CLI flags take precedence over environment variables. If both are provided, the flag value is used.
Schema Hashing
The CLI uses schema hashing to avoid unnecessary regeneration. When you run generate:
- The CLI fetches the schema hash from
/api/strapi-typed-client/schema-hash - It compares the hash against the previously stored hash
- If the hashes match, generation is skipped (unless
--forceis used) - If the hashes differ, types are regenerated and the new hash is stored
This makes it safe to run generate in CI or on every build without wasting time on unchanged schemas.
# First run — generates types
npx strapi-types generate --url http://localhost:1337 --output ./src/strapi
# Second run — skipped, schema unchanged
npx strapi-types generate --url http://localhost:1337 --output ./src/strapi
# Force regeneration regardless of hash
npx strapi-types generate --url http://localhost:1337 --output ./src/strapi --forceUsage in package.json Scripts
A typical setup in your frontend project:
{
"scripts": {
"generate-types": "strapi-types generate --output ./src/strapi",
"check-strapi": "strapi-types check --output ./src/strapi",
"dev": "strapi-types watch --output ./src/strapi & next dev",
"build": "strapi-types generate --output ./src/strapi --force && next build"
}
}