xgqfrms / FEIQA

FEIQA: Front End Interviews Question & Answers
https://feiqa.xgqfrms.xyz
MIT License
6 stars 0 forks source link

js & 用户追踪 #86

Open xgqfrms opened 4 years ago

xgqfrms commented 4 years ago

js & 用户追踪

user behavior tracker

https://www.ruanyifeng.com/blog/2019/04/user-tracking.html

xgqfrms commented 4 years ago

Sentry

https://codesandbox.io/s/sentry-react-kopfr

xgqfrms commented 4 years ago

Sentry & React

https://docs.sentry.io/platforms/javascript/react/

https://sentry.io/onboarding/google-ev/get-started/

https://sentry.io/organizations/google-ev/issues/?project=1804562

install

# Using yarn
$ yarn add @sentry/browser

# Using npm
$ npm install @sentry/browser

https://www.npmjs.com/package/@sentry/browser

init

import React from 'react';
import * as Sentry from '@sentry/browser';
import App from 'src/App';

Sentry.init({dsn: "https://bbac8dd030aa4028a8e73a97b4391279@sentry.io/1804562"});

ReactDOM.render(<App />, document.getElementById('root'));