
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
tableau-api-js
Advanced tools
A version of the JS API for Tableau wrapped as an NPM module.
Requirements:
npm install tableau-api-js
To use this package:
app.component.ts:
import { Component, OnInit } from '@angular/core';
import * as Tableau from 'tableau-api-js';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
constructor() {}
public initViz(): void {
const containerDiv = document.getElementById('vizContainer');
const vizUrl = 'https://public.tableau.com/views/WorldIndicators/GDPpercapita';
const options = {
width: containerDiv.offsetWidth,
height: 700
};
const viz = new Tableau.Viz(containerDiv, vizUrl, options);
}
public ngOnInit(): void {
this.initViz();
}
}
app.component.html:
<div id="vizContainer"></div>
This will provide you with the most up-to-date functionality in the API.
To use the library (without type declarations) in a TypeScript project follow the steps in the following post
More details in the API documentation
FAQs
A version of the JS API for Tableau wrapped as an NPM module.
The npm package tableau-api-js receives a total of 1,396 weekly downloads. As such, tableau-api-js popularity was classified as popular.
We found that tableau-api-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.