Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@dynatrace/dtrum-api-types
Advanced tools
This package contains the Typescript type information for the Dtrum Api of the javascript agent.
Keep in mind that when the javascript agent is updated, this type package might not provide accurate types. Version: 1.301.7
npm install --save-dev @dynatrace/dtrum-api-types
Make sure to add these paths to "typeRoots"
in tsconfig.json under "compilerOptions"
"typeRoots": ["./node_modules/@types", "./node_modules/@dynatrace/"],
Type inference works out of the box for dtrum calls.
if (window.dtrum) {
window.dtrum.identifyUser("exampleId");
} else {
// handle missing dtrum api
}
In case some specific types or enums are needed, you can import them from dtrum
types library.
import { ActionNameResult } from '@dynatrace/dtrum-api-types';
if (window.dtrum) {
const result = window.dtrum.actionName("exampleName");
switch(result) {
case ActionNameResult.SUCCESS:
// handle success...
break;
case ActionNameResult.ACTION_NOT_FOUND:
// handle action not found...
break;
//etc...
}
} else {
// handle missing dtrum api
}
FAQs
Typescript types for Dynatrace jsagents dtrum api.
The npm package @dynatrace/dtrum-api-types receives a total of 17,310 weekly downloads. As such, @dynatrace/dtrum-api-types popularity was classified as popular.
We found that @dynatrace/dtrum-api-types demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.