A question for the unpkg.com nerds.
I'd like to create a code sample for UI5 Web Components on jsfiddle. The goal is to share code samples without forcing readers to install the corresponding NPM module and its dependencies.
The corresponding node package @ui5/webcomponents can be installed with npm:
npm install @ui5/webcomponents
then I can import the desired web component:
import "@ui5/webcomponents/dist/Button"; // loads ui5-button
and instantiate the custom element in an HTML page:
<ui5-button>Hello world!</ui5-button>
How can I host this code sample on jsfiddle so that the "Hello world" button is displayed there?