Meticulously crafted React components and utilities to
help you write better technical content and documentation.
- 📝 Quickly start authoring technincal content
- 📊 Query file and directory metadata
- 🛟 Validate module exports
- 📘 Display API references
- 🌈 Accurately highlight code blocks
- ✅ Type-check code blocks
- 🖼️ Render source code examples
npm install renoun
After installing the package, you can follow the getting started guide or start creating content using your favorite framework.
The File System API offers a way to organize and query file-system data in renoun. It is a powerful tool that allows you to define a schema for file exports and query those exports using a simple API.
To get started with the File System API, instantiate the Directory
class to target a set of files and directories from the file system. We can then use the getEntry
/ getDirectory
/ getFile
methods to query a specific file or directory:
import { Directory } from 'renoun/file-system'
const posts = new Directory({
path: 'posts',
getModule: (path) => import(`@/posts/${path}`),
})
export default async function Page({
params,
}: {
params: Promise<{ slug: string }>
}) {
const post = await posts.getFile((await params).slug, 'mdx')
if (!post) {
return <div>Post not found</div>
}
const Content = await post.getExport('default').getRuntimeValue()
return <Content />
}
Right now we aren't getting the best type checking from the getExport
method. We can improve this by providing the types we expect for this extension to the Directory
class:
import { Directory } from 'renoun/file-system'
import type { MDXContent } from 'renoun/mdx'
const posts = new Directory<{
mdx: { default: MDXContent }
}>({
path: 'posts',
getModule: (path) => import(`@/posts/${path}`),
})
Now when we call getExport
, we will get better type checking and intellisense.
Next, we can generate an index page of links to all posts using the getEntries
method. We'll also add types for the incoming front matter that we are expecting from enabling frontmatter from renoun/mdx
:
import { Directory } from 'renoun/file-system'
import type { MDXContent } from 'renoun/mdx'
const posts = new Directory<{
mdx: {
default: MDXContent
frontmatter: { title: string }
}
}>({
path: 'posts',
getModule: (path) => import(`@/posts/${path}`),
})
export default async function Page() {
const allPosts = await posts.getFiles()
return (
<>
<h1>Blog</h1>
<ul>
{allPosts
.filter((post) => post.hasExtension('mdx'))
.map(async (post) => {
const path = post.getPath()
const frontmatter = await post
.getExport('frontmatter')
.getRuntimeValue()
return (
<li key={path}>
<a href={path}>{frontmatter.title}</a>
</li>
)
})}
</ul>
</>
)
}
To further improve the types we can also provide schema validation to ensure that modules export the correct shape.
This File System API is not limited to MDX files and can be used with any file type in your file-system. By organizing content and source code into structured collections, you can easily generate static pages and manage complex routing and navigations. For a more in-depth look at the File System API, visit the docs site.
Quickly build interactive and engaging content and documentation with renoun’s powerful set of React components.
Use the CodeBlock
component to render syntax-highlighted code blocks:
import { CodeBlock } from 'renoun/components'
export default function Page() {
return <CodeBlock language="jsx" value={`<div>Hello, world!</div>`} />
}
Or take full control of the highlighting process with the Tokens
component:
import { CodeBlock, Tokens } from 'renoun/components'
export default function Page() {
return (
<CodeBlock language="jsx" value={`<div>Hello, world!</div>`}>
<pre>
<Tokens />
</pre>
</CodeBlock>
)
}
Quickly document your APIs with renoun’s APIReference
component:
import { APIReference } from 'renoun/components'
export default function Page() {
return <APIReference source="src/components/Button.tsx" />
}
API references can also be resolved from a File
that will include references for all exports:
import { Directory } from 'renoun/file-system'
import { APIReference } from 'renoun/components'
const components = new Directory({ path: 'components' })
export default async function Page({
params,
}: {
params: Promise<{ slug: string }>
}) {
const component = await components.getFile((await params).slug, 'tsx')
if (!component) {
return <div>Component not found</div>
}
return <APIReference source={component} />
}
Or from a specific exports within a File
:
import { Directory } from 'renoun/file-system'
import { APIReference } from 'renoun/components'
const components = new Directory({ filePattern: 'components' })
export default async function Page({
params,
}: {
params: Promise<{ slug: string }>
}) {
const component = await components.getFile((await params).slug, 'tsx')
if (!component) {
return <div>Component not found</div>
}
const componentExports = component.getExports()
return componentExports.map((source) => (
<section>
<h2>{source.getName()}</h2>
<APIReference source={source} />
</section>
))
}
The renoun toolkit offers many different components to help facilitate writing technical content. Visit the components page to learn more.