Call stack list with function names, source file and line, and an amber current-frame highlight.
Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.
import { Editor43 } from "@/components/beste/piece/editor43";
<Editor43
title="Call stack"
frames={[
{
"fn": "renderList",
"file": "list.tsx",
"line": 42,
"current": true
},
{
"fn": "Dashboard",
"file": "dashboard.tsx",
"line": 14
},
{
"fn": "App",
"file": "app.tsx",
"line": 8
}
]}
/>No tutorials needed.
If you can order food online, you can build a website with Beste.
Side-panel content editor with a header chip row, locale and history pills, and stacked rich-text fields for heading and description.
Document outline with colored kind tiles for class, function, method, and prop. Depth-indented with an active row.
1// TODO migrate to server components2// FIXME handles null state poorly3// NOTE revisit once design lock lands
Italic comment lines with colored TODO, FIXME, NOTE, or HACK tags.
1const user = createUser(name: "Ayşe", role: "admin");nameinlay parameter hints
Function call with muted parameter-name chips inlaid before each argument.
// hidden lines…
const ready = useReady();
if (!ready) return null;Scope breadcrumb pinned above a code snippet, showing the current class, method, and block.
export function greet(name: string) {return `Hello, ${name}!`;}// Ship it
Theme-adaptive editor window with traffic-light header, filename, and a tokenized code body.