0.0.1 • Published 5 years ago

preact-devtools v0.0.1

Weekly downloads
697
License
MIT
Repository
github
Last release
5 years ago

Preact Devtools

Embedding devtools directly into a page

preact-devtools supports an inline build target, where the devtools can be embedded into any page without any restrictions like rendering it into iframes. Don't forget to include the css file too.

import "preact-devtools/dist/preact-devtools.css";
import { attach, createRenderer, renderDevtools } from "preact-devtools";
import { options } from "preact";

// Instantiate devtools backend and attach it to preact
// - store -> The backing store for the devtools
// - destroy -> unlisten and restore previous `preact.options`
const { store, destroy } = attach(options, createRenderer);

// Render the actual devtools into the specified DOM node
renderDevtools(store, document.getElementById("devtools"));
0.0.1

5 years ago