Qwrk is a minimalistic, reactive javascript micro-framework built for raw speed, minimalism, and full control.
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());
visit https://qwrk.srinath.website to view the full documentation
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.