Framework50K+/wkMIT

@builder.io/qwik

Qwik is a next-generation web framework that achieves instant-loading applications through a fundamentally different approach called resumability. Unlike tradit

Installation

npm
npm install @builder.io/qwik
yarn
yarn add @builder.io/qwik
pnpm
pnpm add @builder.io/qwik

Import

ESM
import { component$, useSignal } from '@builder.io/qwik';

Quick Example

usage
import { component$, useSignal } from '@builder.io/qwik';

export default component$(() => {
  const count = useSignal(0);
  return (
    <button onClick$={() => count.value++}>
      Count: {count.value}
    </button>
  );
});

About @builder.io/qwik

Qwik is a next-generation web framework that achieves instant-loading applications through a fundamentally different approach called resumability. Unlike traditional frameworks that must download, parse, and execute JavaScript to make a page interactive (hydration), Qwik serializes the application state and event listeners into HTML during server rendering. When a user interacts with the page, Qwik lazily loads only the specific event handler needed, without re-executing the entire application. This means Qwik applications have near-zero JavaScript on initial load regardless of application complexity. The framework uses a familiar JSX syntax with components that look similar to React but follow different rules — components can be lazy-loaded at any granularity, and the optimizer automatically splits code at function boundaries. Qwik City, the meta-framework built on Qwik, provides routing, data loading, actions, and middleware similar to Next.js or Remix. Qwik is particularly effective for content-heavy sites and e-commerce applications where Time to Interactive directly impacts conversion rates and user experience.

Quick Facts

Package@builder.io/qwik
CategoryFramework
Weekly Downloads50K+
LicenseMIT
Installnpm install @builder.io/qwik

Related Packages

Browse npm Packages by Category

Explore our reference of 200 popular npm packages with install commands, examples, and quick-start guides.