Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@droz-js/sdk
Advanced tools
To set up the sdk you need to tell the tenant and the authentication method, the tenant is required. You must run this first before making any sdk calls. The sdk will fail if you don't set up the tenant.
import { DrozSdk } from '@droz-js/sdk';
DrozSdk.forTenant('dev').withAuthentication('Basic', 'username', 'password');
You can also split the setup in two steps
import { DrozSdk } from '@droz-js/sdk';
// first step (required)
DrozSdk.forTenant('dev');
// (optional) later when you have the authentication token you can set it and it will automatically be used in the new requests
DrozSdk.withAuthentication('Basic', 'username', 'password');
import { DrozNexo } from '@droz-js/sdk/droznexo';
const nexo = new DrozNexo();
const res = await nexo.getAgent({ id: 'agentId' });
import { DrozChat } from '@droz-js/sdk/drozchat';
const chat = new DrozChat();
const res = await chat.listTicketsMine();
FAQs
Droz SDK
The npm package @droz-js/sdk receives a total of 83 weekly downloads. As such, @droz-js/sdk popularity was classified as not popular.
We found that @droz-js/sdk 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.