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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@tableau/embedding-api-react

v3.14.0

Published

Implementation for Tableau Embedding Api React component

Readme

Tableau Embedding API React Component

The Tableau Embedding API enables you to integrate Tableau visualizations into your own web applications. Add custom controls, and take advantage of modern, secure methods of authentication to interact with the visualization from your web application.

  1. The Embedding API React component is built on top of the Embedding API NPM package and their major/minor versions are kept in sync. That is, version 3.14.x of the React component includes version 3.14.y of the Embedding API (patch versions may differ). If you install @tableau/embedding-api-react, you do not need to install @tableau/embedding-api at all.

  2. For compatibility, you should use the latest version of the library that matches the version of Tableau you are using. Using the table found at Versions of the Tableau Embedding API, determine the version of the NPM package to install. For example, if your embedded vizzes are hosted on Tableau version 2025.2, you should use version 3.14.x of @tableau/embedding-api-react.

  3. Install the version of the Tableau Embedding API React component that is compatible with the version of Tableau. For example, the following command installs v3.14.0 of the @tableau/embedding-api-react library.

    npm install @tableau/embedding-api-react@~3.14.0
  4. In your React application, import TableauViz and Api from 'embedding-api-react'. Api is a re-export of the Embedding API from @tableau/embedding-api in its entirety.

  5. Here is an example to embed a basic viz:

import { Api, TableauViz } from 'embedding-api-react';

function MyComponent() {
  return (
    <TableauViz
      src="https://my-server/views/my-workbook/my-view"
      toolbar="hidden"
      onFirstInteractive={async (event) => {
        const { target: viz } = event;
        const dashboard = viz.workbook.activeSheet as Api.Dashboard;
        const filters = await dashboard.getFiltersAsync();
        console.log('filters', filters);
      }}
    />
  );
}
  1. For more samples, see https://github.com/tableau/embedding-api-v3-samples/tree/main/react-samples

More information