qwrk Svelte Themes

Qwrk

A minimalistic, reactive javascript micro-framework.

qwrk logo

Qwrk

NPM version License GitHub stars

Qwrk is a minimalistic, reactive javascript micro-framework built for raw speed, minimalism, and full control.

🚀 Getting started

Create a new project:

npx create-qwrk-app@latest

A simple example:

import { state } from "qwrk";

function App() {
  const count = state(0);

  return (
    <>
      <h1>{count}</h1>
      <button onClick={() => count.value++}>+</button>
      <button onClick={() => count.value--}>-</button>
    </>
  );
}

document.getElementById("root").append(...App());

📚 Documentation

visit https://qwrk.srinath.website to view the full documentation

🔐 Security

If you believe you have discovered a security vulnerability in Qwrk, I request that you responsibly disclose it by emailing [email protected] with the relevant details.

Do not publicly disclose the issue before it is resolved.

Top categories

Loading Svelte Themes