Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@kubb/ast

Package Overview
Dependencies
Maintainers
1
Versions
127
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kubb/ast

Spec-agnostic AST layer for Kubb. Defines nodes, visitor pattern, and factory functions used across codegen plugins.

latest
Source
npmnpm
Version
4.37.8
Version published
Weekly downloads
58K
24.91%
Maintainers
1
Weekly downloads
 
Created
Source

@kubb/ast

Kubb logo

npm version npm downloads Coverage License Sponsors

Documentation · Report Bug · Request Feature

Spec-agnostic AST layer for Kubb. Defines nodes, visitor pattern, factory functions, and type guards used across codegen plugins.

Imports

PathContents
@kubb/astRuntime: factory functions, guards, visitor, ref helpers, constants
@kubb/ast/typesTypes only: all node interfaces, type aliases, visitor types

Node tree

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

Usage

Factory

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 }),
      ],
    }),
  ],
})

Visitor

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 },
})

Guards

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))
  }
}

Refs

import { buildRefMap, resolveRef } from '@kubb/ast'

const refMap = buildRefMap(root)
const pet = resolveRef(refMap, 'Pet')

Supporting Kubb

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:

My sponsors

Keywords

kubb

FAQs

Package last updated on 20 May 2026

Did you know?

Socket

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.

Install

Related posts