npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@chordsketch/svelte

v0.7.0

Published

Svelte 5 components for embedding ChordPro previews, editors and chord diagrams, powered by @chordsketch/wasm

Readme

@chordsketch/svelte

npm

Svelte 5 components for ChordPro — the plain-text format that writes chords above lyrics ([C]Hello) — powered by ChordSketch's Rust engine compiled to WebAssembly. It ships a chord-sheet preview, a split-pane editor, chord diagrams, a transposition control and a PDF export button, plus the rune-backed state helpers behind them, and lives on npm as @chordsketch/svelte. It is the Svelte counterpart of @chordsketch/react and @chordsketch/vue; all three render the same output from the same engine.

Installation

npm install @chordsketch/svelte svelte

svelte (5.0 or newer) is a peer dependency — the components are written with runes and are not compatible with Svelte 4. @chordsketch/wasm comes along as a dependency; <PdfExport> additionally needs the heavier export bundle, which is an optional peer — install it only if you export PDFs:

npm install @chordsketch/wasm-export

The package ships uncompiled .svelte sources (the Svelte convention), so your bundler compiles them with your app. It also ships one stylesheet — import it once at your app root (see Quick start).

Quick start

<script lang="ts">
  import { ChordSheet, Transpose, useTranspose } from '@chordsketch/svelte';
  import '@chordsketch/svelte/styles.css';

  let source = $state(`{title: Silent Night}
{key: C}

[C]Silent night, [G7]holy [C]night`);

  const transpose = useTranspose();
</script>

<Transpose bind:value={transpose.value} />
<ChordSheet {source} transpose={transpose.value} />

<ChordSheet format="html"> renders the engine's chord-over-lyrics markup and injects the engine's own stylesheet, rewritten so every rule applies only inside .chordsketch-sheet__content — the component styles itself, and nothing leaks onto the surrounding page. Override the reading column with your own CSS if you want a different width:

.chordsketch-sheet__content { max-width: none; }

API

Components

| Component | Props | Bindable | Snippets | |---|---|---|---| | <ChordSheet> | source (required), transpose, config, format (html | text, default html) | — | loading, error (the Error) | | <ChordTextarea> | value, transpose, config, previewFormat, readOnly, debounceMs (default 250), placeholder, textareaAriaLabel, transposeMin / transposeMax | value, transpose | loading, error (forwarded to the preview) | | <ChordDiagram> | chord (required), instrument (default guitar), defines, orientation, compact | — | loading, notFound ({ chord, instrument }), error (the Error) | | <Transpose> | value, min (default -6), max (default +6), step, label, formatValue | value | — | | <PdfExport> | source (required), filename, options, disabled, onExported, onError | — | children (label), error (the Error) |

Every component forwards unrecognised attributes (id, class, data-*, aria-*) to its root element — the button, for <PdfExport>.

<ChordSheet> and <ChordDiagram> inject markup produced by the Rust renderer from a fixed template — no consumer HTML is ever injected.

State helpers

The helpers are plain functions backed by runes, not Svelte use: actions. Reactive inputs are passed as getters (() => source), because reading a $state variable at the call site would capture one snapshot; a value that never changes can be passed directly.

| Helper | Signature | Returns | |---|---|---| | useChordRender | (source, options?) | { output, loading, error }; options takes format / transpose / config | | useChordDiagram | (chord, options?) | { svg, loading, error }; options takes instrument / defines / orientation / compact | | usePdfExport | () | { exportPdf(source, filename, options?), loading, error } | | useTranspose | (options?) | { value, increment, decrement, reset, setValue }; options takes initial / min / max (default ±11) | | useDebounced | (value, delay) | { current } — follows value once delay ms have passed without a change | | version | () | the installed package version |

useChordRender, useChordDiagram and useDebounced register an $effect, so call them during component initialisation (or inside an $effect.root). useTranspose and usePdfExport register none and can be called anywhere.

Unknown chords are not errors: useChordDiagram resolves svg to null and <ChordDiagram> renders its notFound snippet.

Options

transpose and config are forwarded to the renderer wherever they appear (<ChordSheet>, <ChordTextarea>, <PdfExport options>, useChordRender, usePdfExport):

| Option | Type | Meaning | |---|---|---| | transpose | number | Semitone offset, reduced modulo 12 by the renderer. Omitted or 0 renders the written chords. | | config | string | Configuration preset name ("guitar", "ukulele", …) or an inline RRJSON configuration string. |

Differences from @chordsketch/react

The component and prop names match @chordsketch/react wherever the two frameworks agree. Where they do not:

  • Render props become snippets. React's loadingFallback / errorFallback / notFoundFallback props are the loading / error / notFound snippets here. Pass an empty snippet ({#snippet error(_e)}{/snippet}) to suppress an inline fallback, which is what errorFallback={null} does in React.
  • Value callbacks become bindings. React's value + onChange pair is a single bind:value, and onTransposeChange is bind:transpose. There is no controlled / uncontrolled split: bind the prop to own the value, or leave it unbound and the component keeps its own.
  • Event callbacks stay callbacks. <PdfExport>'s onExported / onError are props, as in React.
  • Helpers take getters and return objects with reactive properties, rather than React's positional hook arguments and tuple returns.
  • <ChordSheet format="html"> renders the engine's HTML (render_html_body plus the engine stylesheet), where the React package walks the AST into React elements. The output is the same chord-over-lyrics layout; the React-only interaction props built on that walker (in-preview chord selection, drag-to-reposition, chord audio) have no equivalent here.
  • <ChordTextarea>'s transpose shortcut always intercepts Ctrl/Cmd+ArrowUp/ArrowDown. React only calls preventDefault() when onTransposeChange is supplied, and Vue only when v-model:transpose is bound, so an uninterested host keeps the browser's own paragraph-navigation shortcut (notably in Firefox). Svelte's $bindable gives the child no way to detect whether bind:transpose was used, so this component cannot replicate that opt-out — the shortcut always fires, whether or not you bind transpose.

Links

License

MIT