react-ym
TypeScript icon, indicating that this package has built-in type declarations

0.0.7 • Public • Published

Yandex Metrika simple module for React

You just need to import the ym in the index file and initialize with the id. In the module used "TypeScript", which means that it will work in projects on TypeScript, but it can also be used in the JavaScript.

How to use

npm install react-ym

Example

import { ym } from 'react-ym';
 
const history = syncHistoryWithStore(browserHistory, store);
const { pathname, search, hash } = window.location;
const location = `${pathname}${search}${hash}`;
 
if (process.env.NODE_ENV === 'production') {
  ym.initialize('00000000');
}
 
let update = () => {
  // then you need to update the window.location
};
 
match({ routes, location }, () => {
  render(
      <Provider store={store}>
        <Router routes={routes} history={history} onUpdate={update} />
      </Provider>,
      document.getElementById('app')
  );
});

Package Sidebar

Install

npm i react-ym

Weekly Downloads

202

Version

0.0.7

License

MIT

Last publish

Collaborators

  • vadim.ch