Reface
Modern web framework for building interactive applications with Islands Architecture.
Features
🎯 Type-safe Templates - Full TypeScript support with JSX
🧩 Template Composition - Mix JSX and template literals
🔌 Plugin System - Extensible composition pipeline
🎨 Styled Components - CSS-in-JS with type safety
🏝️ Partial System - Interactive components with HTMX
🚀 Framework Agnostic - Core composition engine
Quick Start
1import { RefaceComposer } from "@reface/core";2import { StyledPlugin } from "@reface/plugins/styled";3import { PartialsPlugin } from "@reface/plugins/partials";45// Create composer instance6const composer = new RefaceComposer();7composer.use(new StyledPlugin());8composer.use(new PartialsPlugin());910// Create styled component11const Button = styled.button`12 & {13 background: var(--primary-color, #3182ce);14 color: white;15 padding: 0.5rem 1rem;16 }17`;1819// Create interactive component20const Counter = partial(async () => {21 const count = 0;22 return (23 <div>24 <span>{count}</span>25 <Button {...Counter.trigger()}>Increment</Button>26 </div>27 );28}, "counter");2930// Create page template31function HomePage() {32 return (33 <div>34 <h1>Welcome to Reface</h1>35 <Counter />36 </div>37 );38}3940// Compose HTML41const html = composer.render(<HomePage />);
Examples
📚 Basic Components - Component composition
🧩 Styled Components - CSS-in-JS examples
🏝️ Partial Components - Interactive components
🔌 Custom Plugin - Plugin development
Documentation
Architecture - Core concepts and composition design
Components - Component composition system
Styling - CSS-in-JS styling
Partials - Interactive components
Plugins - Plugin system
Contributing
We welcome contributions! Please see our Contributing Guide for details.
License
MIT © Reface