
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
@qwikdev/qwik-preact
Advanced tools
QwikPreact allows adding Preact components into existing Qwik application
QwikPreact allows adding Preact components into existing Qwik application
Integration is pretty much the same as https://qwik.builder.io/docs/integrations/react/.
First, install @qwikdev/qwik-preact
with npm, pnpm or yarn. Instead of react
and react-dom
, you will need to install preact
and preact-render-to-string
. And don't forgot /** @jsxImportSource preact */
preact.tsx
/** @jsxImportSource preact */
import { qwikify$ } from '@qwikdev/qwik-preact';
import { useState } from 'preact/hooks';
// Create Preact component standard way
function Counter() {
const [count, setCount] = useState(0);
return (
<button className="preact" onClick={() => setCount(count + 1)}>
Count: {count}
</button>
);
}
// Convert Preact component to Qwik component
export const QCounter = qwikify$(Counter, { eagerness: 'hover' });
index.tsx
import { component$ } from '@builder.io/qwik';
import { QCounter } from './preact';
export default component$(() => {
return (
<main>
<QCounter />
</main>
);
});
vite.config.ts
// vite.config.ts
import { qwikPreact } from '@qwikdev/qwik-preact/vite';
export default defineConfig(() => {
return {
...,
plugins: [
...,
// The important part
qwikPreact()
],
};
});
Please keep in mind that this is an experimental implementation based on qwik-react
implementation. So, there might be bugs and unwanted behaviours.
FAQs
QwikPreact allows adding Preact components into existing Qwik application
We found that @qwikdev/qwik-preact demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.