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

@wexio/messenger-widget-angular

v1.0.28

Published

Angular standalone component embed for the Wexio web messenger. Thin wrapper around the <wexio-widget> custom element — same WidgetShell runtime, same Shadow-DOM isolation.

Readme

Welcome to @wexio/messenger-widget-angular 👋

Version License: MIT Documentation

Native Angular standalone component for the Wexio web messenger. Thin wrapper around the underlying <wexio-widget> custom element — same WidgetShell runtime as the script-injected iframe and the React component. Same chat, same visitor identity, same backend; the only difference is where the Angular tree mounts.

🏠 Website 📚 Developer Docs

📂 Description

Installation

yarn add @wexio/messenger-widget-angular

or

npm install @wexio/messenger-widget-angular

Peer dependencies: @angular/core >= 16, @angular/common >= 16. The widget uses the host's Angular runtime.

Quick start

// app.component.ts
import { Component } from "@angular/core";
import { WexioWidgetComponent } from "@wexio/messenger-widget-angular";

@Component({
  standalone: true,
  imports: [WexioWidgetComponent],
  selector: "app-root",
  template: `
    <main>
      <!-- your app -->
      <wexio-widget-ng publicKey="pk_live_..." />
    </main>
  `,
})
export class AppComponent {}

That's it — the widget mounts a floating launcher, handles its own theme/locale/state, and the operator dashboard sees the visitor immediately.

Selector — the component selector is wexio-widget-ng (suffixed to avoid clashing with the underlying <wexio-widget> custom element it renders).

Identifying users

Pass a verified user input to log a known visitor in. Provide ONE proof — a Google FedCM id_token, a host-signed jwt, or the legacy userId + userHash HMAC pair:

import { Component } from "@angular/core";
import {
  VisitorIdentity,
  WexioWidgetComponent,
} from "@wexio/messenger-widget-angular";

@Component({
  standalone: true,
  imports: [WexioWidgetComponent],
  selector: "app-root",
  template: `<wexio-widget-ng publicKey="pk_live_..." [user]="user" />`,
})
export class AppComponent {
  user: VisitorIdentity = {
    jwt: serverSignedJwt, // host-signed identity token (recommended)
    name: "Ada Lovelace",
    email: "[email protected]",
  };
}

Reactive identity — assign a new object (or null) to user to re-fire the handshake / log out. The component's ngOnChanges watches it.

Inputs

| Input | Type | Description | | -------------- | ----------------------------- | --------------------------------------------------------------------------------- | | publicKey | string | Wexio integration public key (pk_live_...). Omit for demo mode. | | locale | string | UI locale (BCP-47). Overrides the operator's localeStrategy. | | prefillName | string | Unverified prechat prefill. | | prefillEmail | string | Unverified prechat prefill. | | prefillPhone | string | Unverified prechat prefill. | | user | VisitorIdentity \| null | Known-user identity proof. Pass null to log out. |

Outputs

| Output | Payload | When | | --------- | -------------------------------------- | --------------------------------------------------- | | resize | { width: number; height: number } | Panel dimensions changed (open ↔ closed). | | close | void | Visitor closed the panel. |

template: `
  <wexio-widget-ng
    publicKey="pk_live_..."
    (resize)="onResize($event)"
    (close)="onClose()"
  />
`;

// ...
onResize(size: { width: number; height: number }) {
  console.log(size.width, size.height);
}
onClose() {
  console.log("visitor closed the panel");
}

Types

VisitorIdentity

interface VisitorIdentity {
  googleIdToken?: string;  // Google FedCM id_token (preferred)
  jwt?: string;            // Host-signed JWT
  userId?: string;         // Legacy HMAC pair…
  userHash?: string;       // …(HMAC-SHA256(userId, integrationSecret))
  name?: string;
  email?: string;
  phone?: string;
  attributes?: Record<string, unknown>;
}

SSR (Angular Universal)

The wrapper renders an empty <wexio-widget> element on the server. The actual widget initialises on first client-side mount (ngAfterViewInit). No special handling is needed for Angular Universal — the custom element runs only in the browser.

Browser support

Modern evergreen browsers — anything that supports Shadow DOM and ES2020. Internet Explorer is not supported.

Use with other frameworks

The underlying widget runtime is a Web Component, so it works in any modern framework:

Author

👤 Wexio (https://wexio.io)

Show your support

Give a ⭐️ if this package helped you!

📝 License

This project is MIT licensed.


Created with ❤️ by Wexio