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

@twomilia/svelte

v0.1.0

Published

Thin Svelte / SvelteKit wrapper for the Twomilia web agent. Drop in <Twomilia config={...} /> and the shadow-DOM chat widget mounts itself.

Readme

@twomilia/svelte

Thin Svelte / SvelteKit wrapper for the Twomilia web agent.

Drop one component into your app and the agent's chat widget mounts itself as a shadow-DOM overlay. The wrapper renders no UI of its own — it just loads twomilia.js (once, from the CDN, like Stripe.js) and initializes the agent with your config at the right client-only lifecycle moment.

Install

npm install @twomilia/svelte
# @twomilia/web is pulled in automatically as a dependency

Usage

Mount <Twomilia /> once, near the root of your app. In SvelteKit, the root src/routes/+layout.svelte is the natural place so the agent is available on every page.

<!-- src/routes/+layout.svelte -->
<script lang="ts">
  import { Twomilia, type TwomiliaConfig } from '@twomilia/svelte';

  const config: TwomiliaConfig = {
    // Publishable key from Dashboard → Setup & API Keys (required).
    analyticsKey: 'twomilia_pub_xxx',

    // Ground answers in your dashboard knowledge (Settings → AI Knowledge).
    knowledgeBase: true,

    // Named actions the agent can call in your app.
    customTools: {
      addToCart: {
        name: 'addToCart',
        description: 'Add a product to the shopping cart by its SKU.',
        parameters: {
          sku: { type: 'string', description: 'Product SKU', required: true },
          quantity: { type: 'number', description: 'How many to add' },
        },
        async execute({ sku, quantity }) {
          // Read live app state and do the work here.
          await fetch('/api/cart', {
            method: 'POST',
            body: JSON.stringify({ sku, quantity: quantity ?? 1 }),
          });
          return { success: true, message: `Added ${sku} to the cart.` };
        },
      },
    },
  };
</script>

<Twomilia {config} />

<slot />

That's it. The agent's shadow-DOM widget appears on the page; the rest of your layout renders normally through the <slot />.

Props

| Prop | Type | Description | | -------- | ---------------- | ------------------------------------------------------------------ | | config | TwomiliaConfig | Agent config. Only analyticsKey is required. | | src | string? | Override the script source (e.g. a self-hosted twomilia.js). |

SvelteKit & SSR

This is SSR-safe out of the box. The component calls loadTwomilia inside onMount, and onMount callbacks only run in the browser — never during server-side rendering. loadTwomilia is also a no-op on the server and idempotent on the client (it never double-mounts the widget), so re-renders and navigations are safe.

If you call loadTwomilia imperatively instead of using the component (see below), guard it with the browser flag so it doesn't run during SSR:

import { browser } from '$app/environment';
import { loadTwomilia } from '@twomilia/svelte';

if (browser) {
  loadTwomilia({ analyticsKey: 'twomilia_pub_xxx' });
}

Imperative loading

If you'd rather load the agent yourself (e.g. only after a user logs in, with a config you compute at runtime), import loadTwomilia directly and call it from a client-only context:

<script lang="ts">
  import { onMount } from 'svelte';
  import { loadTwomilia } from '@twomilia/svelte';

  export let user: { id: string; name: string; email: string };

  onMount(() => {
    loadTwomilia({
      analyticsKey: 'twomilia_pub_xxx',
      userContext: { userId: user.id, name: user.name, email: user.email },
    });
  });
</script>

isTwomiliaLoaded() is also re-exported if you need to check whether the agent has already been initialized on the page.

License

MIT