Skip to content

Nostr Web ComponentsDrop-in HTML elements for instant Nostr functionality

Quick Start ​

Add a Nostr username display with just one line:

html
<script src="https://cdn.jsdelivr.net/npm/nostr-web-components/dist/nostr-name.js"></script>
<nostr-name pubkey="npub..."></nostr-name>

Style it in any way you desire ​

Use CSS parts to style components:

css
nostr-name::part(name) {
  color: blue;
  font-weight: bold;
}

Or with Tailwind:

html
<nostr-name
  class="part-[name]:text-blue-500 part-[name]:font-bold"
  pubkey="npub..."
></nostr-name>

See the Tailwind installation guide, it's easy.