npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@igorskyflyer/astro-render-component

v2.0.1

Published

🤖 Astro component renderer. Zero configuration. Produces clean HTML strings directly in Node.js without any DOM environment. 🐬

Downloads

161

Readme

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

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