行为监控 性能监控 错误监控
SDK:核心文件
test:测试文件
-
npm start 启动 express 服务
-
npm run build 使用 rollup 打包
-
使用 liveServer 进行用户行为、错误收集、性能监控的测试
-
vue 与 react 测试如下
// vue import monitor from 'SDK'; app.use(monitor, { url: 'http://localhost:9800/reportData', }); // react <script src="./monitor.js"></script> componentDidCatch(error, info) { monitor.errorBoundary(error,info.componentStack); }
- script直接引入
- import导入esm模块
- require导入cjs模块