You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've started developing using the stand-alone module from https://unpkg.com/htm/preact/standalone.module.js but realize that I really need the debugging tools.
The documentation says to import "preact/debug", but that's not a valid module specifier. There doesn't seem to be a debug standalone bundle on unpkg.
So alternatively, I might be able to adapt the following example code:
https://unpkg.com/preact/debug?module is not a thing, but the package preact/debug/dist/debug.module.js looks promising. However, it starts of with import "preact";, which doesn't work.
So my question is, is there a way to use and debug Preact + HTM without build tools?
If so, I'd love to make a PR for the docs.
The text was updated successfully, but these errors were encountered:
Hiya! The standalone.module.js build is super convenient, but this is its achilles heel.
The current easiest solution is to use a CDN that fixes this by precompiling bare specifiers to valid URLs, like Skypack:
// you can skip this since htm/preact returns it:// import { h, Component, render } from 'https://cdn.skypack.dev/preact';import{html,hComponent,render}from'https://cdn.skypack.dev/htm/preact';import'https://cdn.skypack.dev/preact/debug';render(html`<h1>Hi!</h1`,document.body);
I've started developing using the stand-alone module from
https://unpkg.com/htm/preact/standalone.module.js
but realize that I really need the debugging tools.The documentation says to
import "preact/debug"
, but that's not a valid module specifier. There doesn't seem to be a debug standalone bundle on unpkg.So alternatively, I might be able to adapt the following example code:
https://unpkg.com/preact/debug?module
is not a thing, but the package preact/debug/dist/debug.module.js looks promising. However, it starts of withimport "preact";
, which doesn't work.So my question is, is there a way to use and debug Preact + HTM without build tools?
If so, I'd love to make a PR for the docs.
The text was updated successfully, but these errors were encountered: