Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@rshb/analytics
Advanced tools
Библиотека для работы с сервисом аналитики проекта Свой Бизнес.
Библиотека для работы с сервисом аналитики проекта Свой Бизнес.
Отправка пользовательских событий в сервис аналитики производится с помощью метода sendEvent
:
import { analytics } from "@rshb/analytics";
const handleClickOnSendPaymentButton = () => {
analytics.sendEvent("payments-modal__send-payment-button_click");
};
Для того чтобы передать дополнительную информацию о событии, необходимо указать соответствующие параметры:
import { analytics } from "@rshb/analytics";
const handleClickOnOpenDepositButton = () => {
analytics.sendEvent("deposits-main-page__open-deposit-button_click", {
name: "main",
percentage: 10,
period: [
{ type: "end", date: "10.02.2023" },
{ type: "start", date: "10.02.2022" },
],
});
};
Генерируемые события отправляются в сервис аналитки асинхронно. Для того чтобы выполнить операцию непосредственно после успешной / неуспешной отправки события, например перед этапом редиректа пользователя, необходимо воспользоватся одним из следующих вариантов работы с событиями:
sendEventAndWait
:import { analytics } from "@rshb/analytics";
const handleClickOnMenuItem = async () => {
try {
await analytics.sendEventAndWait("menu__menu-item_click", {
name: "accounts",
});
console.log("Событие отправлено");
redirectToLoginPage();
} catch {
console.log("Событие не отправлено");
}
};
sendEvent
:import { analytics } from "@rshb/analytics";
const handleClickOnMenuItem = () => {
analytics.sendEvent(
"menu__menu-item_click",
{ name: "accounts" },
() => {
console.log("Событие отправлено");
redirectToLoginPage();
},
() => {
console.log("Событие не отправлено");
}
);
};
FAQs
Библиотека для работы с сервисом аналитики проекта Свой Бизнес.
We found that @rshb/analytics demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.