A Web Component for…
<script type="module" src="component-name.js"></script>
<component-name>
<!-- slotted content -->
</component-name>
This Web Component allows you to:
- Check for…
You have a few options (choose one of these):
- Install via npm:
npm install @daviddarnes/component-name
- Download the source manually from GitHub into your project.
- Skip this step and use the script directly via a 3rd party CDN (not recommended for production use)
Make sure you include the <script>
in your project (choose one of these):
<!-- Host yourself -->
<script type="module" src="component-name.js"></script>
<!-- 3rd party CDN, not recommended for production use -->
<script type="module" src="https://www.unpkg.com/@daviddarnes/[email protected]/component-name.js"></script>
<!-- 3rd party CDN, not recommended for production use -->
<script type="module" src="https://esm.sh/@daviddarnes/[email protected]"></script>
With thanks to the following people:
- Zach Leatherman for inspiring this Web Component repo template