Skip to content

igorskyflyer/npm-astro-render-component

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

50 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Icon of Astro Render Component

Astro Render Component

Zero-Config โ€ข DOM-Free โ€ข HTML String โ€ข Fast Node Testing

๐Ÿค– Astro component renderer. Zero configuration. Produces clean HTML strings directly in Node.js without any DOM environment. ๐Ÿฌ


Table of Contents


Features

  • โœจ Zero-config: drop in and render Astro components instantly
  • ๐Ÿข Fast: pure Node.js, no DOM simulation overhead
  • ๐Ÿ”ง Returns clean HTML string: ready for snapshots or text checks
  • ๐Ÿšซ No happy-dom/jsdom needed: runs in plain Node environment
  • โœ… Works with Vitest: perfect with @vitest-environment node
  • ๐Ÿ“ฆ Tiny footprint: minimal wrapper over Astro's Container API
  • ๐Ÿ›ก๏ธ Safe types: full TypeScript support, exported AstroComponentFactory
  • ๐Ÿ”„ Supports props/slots: pass options just like renderToString
  • โšก Modern baseline: Node >=24, Astro >=6 ready, leveraging the AstroContainer API
  • ๐Ÿงผ Clean errors: meaningful messages on render failures

Usage

Install it by executing any of the following, depending on your preferred package manager:

pnpm add -D @igorskyflyer/astro-render-component
yarn add -D @igorskyflyer/astro-render-component
npm i -D @igorskyflyer/astro-render-component

API

async renderAstroComponent()

async function renderAstroComponent(
  component: AstroComponentFactory,
  options: ContainerRenderOptions = {}
): Promise<string>

Renders an Astro component to an HTML string using the experimental Container API.
Server-side only utility โ€“ no DOM environment required.
Perfect for Vitest tests (@vitest-environment node), snapshots, and SSR checks.


Examples

Render an Astro component to HTML string:

MyComponent.test.ts

// @vitest-environment node
import { renderAstroComponent } from '@igorskyflyer/astro-render-component'
import MyComponent from '../MyComponent.astro'

const html: string = await renderAstroComponent(MyComponent, {
  props: { title: 'Hello' }
})

expect(html).toContain('<h1>Hello</h1>')

Implementation

This utility is a thin, zero-config wrapper over Astro's experimental Container API:

  • Core API used
    experimental_AstroContainer.create() โ†’ creates isolated render context
    container.renderToString(component, options) โ†’ renders to HTML string

  • Behavior
    • Server-side only: runs in plain Node.js (no DOM, no happy-dom/jsdom)
    • Returns plain string containing full rendered HTML (tags, attributes, text, islands)
    • Supports props, slots, and other ContainerRenderOptions
    • Throws meaningful error on failure (e.g. invalid component, render crash)
    • No side effects, no caching, no hydration setup

  • Key characteristics
    • Type-safe: derives AstroComponentFactory from renderToString signature
    • ESM-only output (.js + .d.ts)
    • Designed for testing (Vitest with @vitest-environment node) and lightweight SSR

Motivation

Provide the lightest possible server-side Astro component renderer: zero config, no DOM dependency, fast HTML string output for testing and SSR checks.


Changelog

Read about the latest changes in the CHANGELOG.


License

Licensed under the MIT license.


Support

Engineering and documenting open-source projects
involves a significant investment of time.

If this project or its implementation has provided value,
support is greatly appreciated.

Donate to igorskyflyer

Thank you for supporting these efforts! ๐Ÿ™๐Ÿ˜Š

Related

@igorskyflyer/astro-easynav-button

๐Ÿงญ Add an easy-to-use navigational button (jump to top/bottom) to your Astro site. ๐Ÿ”ผ


@igorskyflyer/astro-post-excerpt

โญ An Astro component that renders post excerpts for your Astro blog - directly from your Markdown and MDX files. Astro v2+ collections are supported as well! ๐Ÿ’Ž


@igorskyflyer/chars-in-string

๐Ÿช Provides ways of testing whether an array of chars is present inside a given String. โ˜„


@igorskyflyer/magic-queryselector

๐Ÿช„ A TypeScript-types patch for querySelector/querySelectorAll, make them return types you expect them to! ๐Ÿ”ฎ


@igorskyflyer/vscode-folderpicker

โœจ Provides a custom Folder Picker API + UI for Visual Studio Code. ๐ŸŽจ


Author

Created by Igor Dimitrijeviฤ‡ (@igorskyflyer).

About

๐Ÿค– Astro component renderer. Zero configuration. Produces clean HTML strings directly in Node.js without any DOM environment. ๐Ÿฌ

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Sponsor this project

Contributors