Remix.run Logo
Show HN: C0ckp1T UI Framework(github.com)
1 points by illist-ell1s 2 days ago

I built a UI framework I am calling C0ckp1t. It’s a zero-build, Vue.js 3 based framework with reactive components included and WebSocket support. The ultimate goal is having the ability to build UIs fast and on demand by an LLM or template engine.

My uses cases:

1) Building websites fast. dashboards, blogs, landing pages.

2) Right now we tend to mix content and presentation in our applications, but I want that separated. For example when using an LLM right now you get back markdown, but that is rudimentary, I want a reactive website as output.

3) Tooling. Think of a firefox plugin where today we many static tools. For example if am on YouTube I might want to get transcript, or I might want to download a video or I want to get a summary of a video or I want to change the titles. Each of these "tools" is a different interface. But I want the LLM to generate these interfaces on demand

I am using [vue3-sfc-loader](https://github.com/FranckFreiburger/vue3-sfc-loader) to compile Vue single file components (SFCs) on the browser.

These are some demos using the framework: * https://c0ckp1t.com/default/homepage * https://c0ckp1t.com/examples/galore/#/

For more details, see this: https://c0ckp1t.com/default/docs/Articles/Why-Project-Exists...