Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

File metadata and controls

33 lines (24 loc) · 1.25 KB
title Simple Stack 🌱
description Simple Stack is a collection of lightweight tools for Astro and React that simplify state management, scoped IDs, and DOM querying with minimal overhead.
tableOfContents false
head
tag content
title
Simple Stack – Lightweight Tools for Astro & React

Simple Stack is a collection of lightweight, open-source tools built for Astro and React to make web development simpler. Each package solves a focused use case with minimal API surface and zero unnecessary complexity.

import { CardGrid, Card, LinkCard } from '@astrojs/starlight/components';

A reactive store that combines the simplicity of signals with the power of "selectors" you'd find in Zustand.
	<LinkCard href="/store" title="Documentation" />
</Card>

<Card href="/scope" title="Simple Scope" icon="magnifier">
	A vite plugin that generates scoped IDs for any file you're in. Perfect for form label IDs and query selectors.

	<LinkCard href="/scope" title="Documentation" />
</Card>

<Card href="/query" title="Simple Query" icon="puzzle">
	A simple way to add JS scripts to Astro components.

	<LinkCard href="/query" title="Documentation" />
</Card>