@stackpress/idea
v0.10.6
Published
An open source schema file standard and generator
Downloads
363
Maintainers
Readme
@stackpress/idea
@stackpress/idea is the CLI package for the Idea toolchain.
It wraps @stackpress/idea-transformer so you can run plugin-driven
schema generation from the command line.
Install
Idea requires Node.js 22 or newer.
npm i -D @stackpress/ideaExample
Create schema.idea:
plugin "./schema-diagram.mjs" {
output "./generated/schema.mmd"
}
model User {
id String @id
name String
email String
}Run:
npx idea transform --input schema.idea