
Product
Introducing Repository Access Permissions and Custom Roles
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.
@kubb/ast
Advanced tools
Spec-agnostic AST layer for Kubb. Defines nodes, visitor pattern, and factory functions used across codegen plugins.
Spec-agnostic AST layer for Kubb. Defines nodes, visitor pattern, factory functions, and type guards used across codegen plugins.
| Path | Contents |
|---|---|
@kubb/ast | Runtime: factory functions, guards, visitor, ref helpers, constants |
@kubb/ast/types | Types only: all node interfaces, type aliases, visitor types |
RootNode
├── schemas: SchemaNode[]
└── operations: OperationNode[]
├── parameters: ParameterNode[] → SchemaNode
├── requestBody?: SchemaNode
└── responses: ResponseNode[] → SchemaNode?
SchemaNode (discriminated union)
object → properties: PropertyNode[] → SchemaNode
array | tuple → items: SchemaNode[]
union | intersection → members: SchemaNode[]
enum | ref | string | number | integer | bigint
boolean | null | any | unknown | void
date | datetime | time | uuid | email | url | blob
import { createRoot, createOperation, createSchema, createProperty } from '@kubb/ast'
const root = createRoot({
schemas: [
createSchema({
name: 'Pet',
type: 'object',
properties: [
createProperty({ name: 'id', schema: createSchema({ type: 'integer' }), required: true }),
createProperty({ name: 'name', schema: createSchema({ type: 'string' }), required: true }),
],
}),
],
})
import { walk, transform, collect } from '@kubb/ast'
// Side effects
await walk(root, {
schema(node) { console.log(node.type) },
})
// Immutable transformation
const updated = transform(root, {
schema(node) { return { ...node, description: 'generated' } },
})
// Extraction
const types = collect<string>(root, {
schema(node) { return node.type },
})
import { isSchemaNode, narrowSchema } from '@kubb/ast'
import type { Node } from '@kubb/ast/types'
function process(node: Node) {
if (isSchemaNode(node)) {
const obj = narrowSchema(node, 'object')
obj?.properties?.forEach(p => console.log(p.name))
}
}
import { buildRefMap, resolveRef } from '@kubb/ast'
const refMap = buildRefMap(root)
const pet = resolveRef(refMap, 'Pet')
Kubb uses an MIT-licensed open source project with its ongoing development made possible entirely by the support of Sponsors. If you would like to become a sponsor, please consider:
FAQs
Spec-agnostic AST layer for Kubb. Defines nodes, visitor pattern, and factory functions used across codegen plugins.
The npm package @kubb/ast receives a total of 72,358 weekly downloads. As such, @kubb/ast popularity was classified as popular.
We found that @kubb/ast demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.