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

@boomi/embedkit-cdn

v1.1.15

Published

Pre-built UMD bundle and CSS for Boomi EmbedKit — drop-in script tag distribution via jsDelivr and unpkg

Downloads

405

Readme

@boomi/embedkit-cdn

CDN distribution package for Boomi EmbedKit — the pre-built JavaScript bundle that lets you embed Boomi AI Agents into any website with a few lines of HTML. No React, no npm, no build pipeline required.


What Is EmbedKit?

Boomi EmbedKit is a React component library that surfaces Boomi AI Agents inside any web application. It handles authentication, session management, real-time streaming, and rendering of the full agent chat UI — all inside a Shadow DOM so it never conflicts with your existing styles.

EmbedKit comes in two forms:

| Package | Use case | |---------|----------| | @boomi/embedkit | React apps — import components and hooks directly | | @boomi/embedkit-cdnthis package | Any website — drop in a <script> tag, no build step needed |


What Is This Package?

This package contains the pre-built CDN distribution files for EmbedKit:

| File | Description | |------|-------------| | embedkit-cdn.umd.cjs | UMD bundle — works in all browsers via a <script> tag | | embedkit-cdn.css | Required stylesheet |

React and ReactDOM are bundled in — nothing else is required on the host page.

The files are served via public CDN providers:

  • jsDelivr: https://cdn.jsdelivr.net/npm/@boomi/embedkit-cdn/
  • unpkg: https://unpkg.com/@boomi/embedkit-cdn/

Quick Start

Add the following to any HTML page, just before </body>:

<!-- 1. EmbedKit Stylesheet -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@boomi/embedkit-cdn/embedkit-cdn.css" />

<!-- 2. Configure the embed -->
<script>
  window.BoomiEmbed = {
    publicToken: "pk_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    agentId:     "project_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
    mountId:     "boomi-agent",
    serverBase:  "https://api.boomi.space/api/v1"
  };
</script>

<!-- 3. Load the bundle -->
<script src="https://cdn.jsdelivr.net/npm/@boomi/embedkit-cdn/embedkit-cdn.umd.cjs" async></script>

<!-- 4. Mount target -->
<div id="boomi-agent"></div>

The agent UI will automatically initialize and render inside the boomi-agent div.


Configuration

| Property | Type | Required | Description | |----------|------|----------|-------------| | publicToken | string | Yes | The pk_... public token from your project in Admin Console | | agentId | string | Yes | The project ID from Admin Console | | serverBase | string | Yes | EmbedKit API base URL: https://api.boomi.space/api/v1 | | mountId | string | No | ID of the <div> to mount into. Defaults to "boomi-agent" | | userId | string | No | Identifier for the current user (for session tracking / analytics) | | autoInit | boolean | No | Set to false to disable automatic initialization. Default: true |


Getting a Public Token

Tokens and projects are managed through the EmbedKit Admin Console at admin.boomi.space. See the full setup guide in the EmbedKit documentation.


Documentation

Full documentation for EmbedKit — including the CDN configuration guide, project setup, embed types, theming, and API reference — is available in the main repository:

github.com/OfficialBoomi/embedkit


Content Security Policy

If your site uses a CSP, add the following directives:

script-src  'self' https://cdn.jsdelivr.net;
style-src   'self' https://cdn.jsdelivr.net;
connect-src 'self' https://api.boomi.space;