Thanks to visit codestin.com
Credit goes to github.com

Skip to content

souporserious/renoun

renoun

Query and Render Your Codebase

Turn your JavaScript, TypeScript, Markdown, and MDX
into reusable structured data for blogs, docs, and presentations
so your content always matches what’s in your codebase.

npx create-renoun@latest

import { Directory } from 'renoun'

const posts = new Directory({
  path: 'posts',
  loader: (path) => import(`./posts/${path}.mdx`),
})

async function Page({ slug }: { slug: string }) {
  const post = await posts.getFile(slug, 'mdx')
  const Content = await post.getContent()

  return <Content />
}

Features

  • Query files (MDX/MD/TS) like data
  • Generate navigations/indexes from the file system
  • Load and render module exports
  • Validate frontmatter/exports with schemas

Templates

The easiest way to get started using renoun is with an application template:

  • Blog — blog starter with a post index, tags, and MDX article pages (Demo · Source)
  • Docs — documentation starter that turns MDX content into a polished, full-featured site (Demo · Source)
  • Workbench — design system workbench for building, previewing, and documenting libraries (Demo · Source)

Why renoun?

Maintaining technical blogs, docs, and presentations is hard because the source of truth is split between content files, code, and examples causing drift. The renoun SDK turns your codebase into structured, queryable data (files, exports, types, and MDX) so you can render indexes, navigations, API references, and pages directly from what’s in the repo, keeping everything in sync as it changes.

Contributing

See the Contributing Guide for details on how to contribute to renoun.

License

MIT © souporserious

Sponsor this project

 

Packages

No packages published

Contributors 8

Languages