
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@salesforce/analytics-embedding-sdk
Advanced tools
Use the Analytics Embedding SDK to embed Tableau Next analytical components in any web page. This SDK supports typescript, javascript and HTML formats.
Use the Analytics Embedding SDK to embed Tableau Next analytical components in any web page. This SDK supports typescript, javascript and HTML formats.
npm install @salesforce/analytics-embedding-sdk --save
import {AnalyticsDashboard, initializeAnalyticsSdk, type AnalyticsSdkConfig} from '@salesforce/analytics-embedding-sdk';
const config: AnalyticsSdkConfig = {
authCredential: "<%- auth-credential %>",
orgUrl: "<%- org_url %>"
};
await initializeAnalyticsSdk(config);
// parentIdOrElement is the target container (ID or element) and idOrApiName is the identifier or API name of the component to embed.
const dashboard: AnalyticsDashboard = new AnalyticsDashboard({parentIdOrElement: 'embed-here', idOrApiName: 'My_Sales_Dashboard'});
dashboard.render();
import {initializeAnalyticsSdk, AnalyticsDashboard} from '@salesforce/analytics-embedding-sdk';
const config = {
authCredential: "<%- auth-credential %>",
orgUrl: "<%- org_url %>"
};
await initializeAnalyticsSdk(config);
// parentIdOrElement is the target container (ID or element) and idOrApiName is the identifier or API name of the component to embed.
const dashboard = new AnalyticsDashboard({parentIdOrElement: 'embed-here', idOrApiName: 'My_Sales_Dashboard'});
dashboard.render();
<!DOCTYPE html>
<html>
<head>
<script type="module">
import {initializeAnalyticsSdk} from '@salesforce/analytics-embedding-sdk';
const config = {
authCredential: "<%- auth-credential %>",
orgUrl: "<%- org_url %>"
};
await initializeAnalyticsSdk({
authCredential: "<%- auth-credential %>",
orgUrl: "<%- org_url %>",
});
</script>
</head>
<body>
<analytics-dashboard id-or-api-name="My_Sales_Dashboard" height="500px">
</analytics-dashboard>
</body>
</html>
The SDK supports all browsers supported in Salesforce Lightning Experience.
FAQs
Use the Analytics Embedding SDK to embed Tableau Next analytical components in any web page. This SDK supports typescript, javascript and HTML formats.
The npm package @salesforce/analytics-embedding-sdk receives a total of 6 weekly downloads. As such, @salesforce/analytics-embedding-sdk popularity was classified as not popular.
We found that @salesforce/analytics-embedding-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 48 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.