Build modular and reusable components to create sophisticated user interfaces, promoting code reusability and maintainability.
Easily define and manage your application's URLs using a routing system inspired by popular frameworks like Next.js.
Rayous promotes a component-based architecture, making it easy to create reusable and modular components that can be combined to build complex user interfaces.
import * as Rayous from "rayous";
npm i rayous@latest
npx rayous create
import { Text, Container } from "rayous";
new Container({
children: [
new Text('Try it!')
]
})