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

@salesforce/ui-bundle-template-feature-react-customer-web-client-chat

v11.69.1

Published

Embedded Customer Web Client (Embedded Messaging) chat feature for UI Bundles

Readme

Customer Web Client Chat React

React component for embedding the Customer Web Client (Embedded Messaging) chat widget into a UI Bundle. This is a wrapper that dynamically loads the site's embeddedservice_bootstrap script and initializes the floating chat widget with your org, deployment, site, and SCRT2 configuration.

Use this when a user wants agent-based chat on an external site using Customer Web Client Chat (Embedded Messaging) — not the Agentforce Conversation Client. For employee-agent chat inside a Salesforce-hosted app, use @salesforce/ui-bundle-template-feature-react-agentforce-conversation-client instead.

How it works

The component injects <siteURL>/assets/js/bootstrap.js into the page (once), waits for window.embeddedservice_bootstrap to be available, then calls init(orgId, deploymentName, siteURL, { scrt2URL }). It renders nothing itself — the chat UI is a floating widget the bootstrap script mounts.

Step 1: Install

npm install @salesforce/ui-bundle-template-feature-react-customer-web-client-chat

There is no additional SDK dependency — the Embedded Messaging runtime is loaded from your site at runtime.

Step 2: Embed in the app layout

import { CustomerWebClientChat } from "@salesforce/ui-bundle-template-feature-react-customer-web-client-chat";

export default function AppLayout() {
  return (
    <>
      <Outlet />
      <CustomerWebClientChat
        orgId="00D..."
        deploymentName="MyChat"
        siteURL="https://<your-esw-site>"
        scrt2URL="https://<your-org>.my.salesforce-scrt.com"
      />
    </>
  );
}

Step 3: Configure (flat props)

External sites can support agent-based chat when Customer Web Client Chat is properly configured (not Agentforce Conversation Client). Four pieces of information are required:

| Prop | Type | Required | Description | | ---------------- | --------- | -------- | ------------------------------------------------------------------------------- | | orgId | string | Yes | The organization id (15- or 18-char Salesforce id starting with 00D). | | deploymentName | string | Yes | The name of an Embedded Service deployment / channel the agent is connected to. | | siteURL | string | Yes | The ESW site URL. Usually contains ESW and the deployment name. | | scrt2URL | string | Yes | The SCRT2 (Service Cloud Real-Time) chat service URL. Usually contains scrt. | | language | string | No | Chat language. Defaults to "en". | | devMode | boolean | No | Enables Embedded Messaging dev mode. Defaults to false. |

Prerequisites

  • An Embedded Service deployment configured for Customer Web Client / Embedded Messaging in your org.
  • The site origin must be allowed by the org's CORS allowlist (CorsWhitelistOrigin) and the Embedded Service deployment's allowed origins, or the browser will block the embedded-service-config request.

Development

npm run build   # apply patches -> dist
npm run dev     # run from dist
npm run watch   # watch and re-apply