Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
react-yandex-metrika
Advanced tools
Adds the Yandex.Metrika script to your page and exposes the ym
tracking
function as a module.
Inspired by and shamelessly copied from react-google-analytics.
Usage:
Use the initializer to add the script to your page somewhere:
import { YMInitializer } from 'react-yandex-metrika';
class MyComponent extends React.Component {
render() {
return (
<div>
// SNIP
<YMInitializer accounts={[987654321]} />
// SNIP
</div>
);
}
});
Please note that you need to initialize the tracker object only once.
Because of that, you should insert initializer to the place where it won't be remounted (that means at least outside of router scope).
If you want to use webvisor, you should pass options={{webvisor: true}}
to to YMInitializer
, for example:
<YMInitializer accounts={[987654321]} options={{webvisor: true}}/>
You can create several identical trackers (that might be useful for domain-wise segmentation).
<YMInitializer accounts={[98765, 4321]} />
You can also specify options for tracker (as described in Yandex.Metrika documentation):
<YMInitializer accounts={[98765]} options={{defer: true}} />
Elsewhere, use the ym
function:
import ym from 'react-yandex-metrika';
ym('hit', '/cart');
ym('reachGoal', 'whateverGoal', {awesomeParameter: 42});
See #6 for details.
<YMInitializer accounts={[31337]} options={{webvisor: true}} version="2" />
import { Initializer }
to import { YMInitializer }
.ym.init()
call. Pass arguments of ym.init
as props to the YMInitializer
component.
Tracking will be initialized on YMInitializer.componentDidMount
.FAQs
Yandex Metrika component for React
We found that react-yandex-metrika demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.