Build CRUD apps in fewer lines of code.
AI summary will be generated soon. Check back later for an in-depth analysis of this project.
Not enough data yet. Star history will appear after a few days of tracking.
PanJiaChen
:tada: A magical vue admin https://panjiachen.github.io/vue-element-admin
pi-hole
A black hole for Internet advertisements
ColorlibHQ
AdminLTE - Free admin dashboard template based on Bootstrap 5
ToolJet
ToolJet is the open-source foundation of ToolJet AI - the AI-native platform for building internal tools, dashboard, business applications, workflows and AI agents 🚀
filamentphp
A powerful open-source UI framework for Laravel • Build and ship apps & admin panels fast with Livewire
Free Bootstrap 5 Admin Dashboard Template
CanJS is a collection of client-side JavaScript architectural libraries.
CanJS’s StacheElement allows you to create Web Components with observable properties and live-bound templates.
class Counter extends StacheElement { static view = ` Count: <span>{{ this.count }}</span> <button on:click="this.increment()">+1</button> `; static props = { count: 0 }; increment() { this.count++; }