Quick Start
Get up and running with Huuma in minutes.
Prerequisites
Before you begin, make sure you have:
- Deno 2.0 or later installed
- Basic knowledge of TypeScript/JavaScript
- A text editor or IDE
Create Your First Project
Initialize a new project
deno init my-huuma-app cd my-huuma-appInstall Huuma
deno add @huuma/uiCreate your first component
Create a file called
main.tsx:import { JSX } from "@huuma/ui/jsx-runtime"; function App() { return ( <div class="p-4"> <h1 class="text-2xl font-bold text-blue-600"> Hello, Huuma! 🎉 </h1> <p class="mt-2 text-gray-600"> Your first Huuma application is running! </p> </div> ); } export default App;Run your application
deno run --allow-read --allow-net main.tsx
What's Next?
Now that you have Huuma running, explore these next steps:
- 📖 Check out the Configuration guide to customize your setup
- 🎨 Browse Examples to see more advanced usage patterns
- 🔧 Learn about available UI components and utilities
Need Help?
- 🐛 Found a bug? Report it on GitHub
- 💬 Have questions? Check our documentation or examples
- 🚀 Ready to build something amazing? Dive into our component library!