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

@transglot/sveltekit

v0.1.0

Published

SSR-aware SvelteKit helpers over @transglot/runtime: a load()-function loadTranslations() (uses event.fetch) that returns a serializable snapshot, and setTransglotContextFromSnapshot(), which seeds @transglot/svelte's context synchronously from that snaps

Readme

@transglot/sveltekit

SSR-aware SvelteKit helpers over @transglot/runtime and @transglot/svelte. Fetch a locale's published bundle in a load function using the request's fetch, then seed the Svelte context synchronously so SSR markup is translated and hydration is flash-free.

Install

npm install @transglot/sveltekit @transglot/svelte @transglot/runtime

Load a snapshot in +layout.ts / +page.ts

loadTranslations(event, options) returns a serializable TranslateSnapshot. Its options are the same CDN coordinates the runtime client takes:

| option | required | meaning | | --- | --- | --- | | baseUrl | yes | origin of the app / CDN, e.g. https://app.example.com | | project | yes | numeric project id (the CDN URL segment) | | cdnKey | yes | read-only taicdn_… key (server-side only; not carried in the snapshot) | | locale | yes | the locale to fetch | | version | no | pin an immutable …/v{n} version instead of "latest" |

The event supplies SvelteKit's per-request fetch, so the fetch is deduplicated across SSR and hydration.

import { loadTranslations } from '@transglot/sveltekit';

export async function load(event) {
  const snapshot = await loadTranslations(event, {
    baseUrl: 'https://app.example.com',
    project: 42,
    cdnKey: TRANSGLOT_CDN_KEY,
    locale: 'en',
  });

  return { snapshot };
}

Seed the context in a layout component

<script>
  import { setTransglotContextFromSnapshot } from '@transglot/sveltekit';
  export let data;
  setTransglotContextFromSnapshot(data.snapshot);
</script>

<slot />

Descendants read the context with useTranslations() (re-exported here from @transglot/svelte); the reactive <T> component is imported from @transglot/svelte/T.svelte. The full runtime client contract (the createClient options above, plus t, loadLocale, setLocale, preload, onChange) is documented in @transglot/runtime.