Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jecyu/monitor-server
前端监控服务
https://github.com/jecyu/monitor-server
Last synced: 13 days ago
JSON representation
前端监控服务
- Host: GitHub
- URL: https://github.com/jecyu/monitor-server
- Owner: jecyu
- Created: 2024-06-24T23:32:33.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-24T23:39:25.000Z (5 months ago)
- Last Synced: 2024-06-25T00:40:02.413Z (5 months ago)
- Language: TypeScript
- Size: 103 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 前端监控平台
## 功能
### 用户行为录制与回放
核型原理:利用 rrweb 录制用户行为 -> 转换为 json -> 上报后台 -> cms 查看与回放
## 架构
h5 端只有一个页面和简单的按钮,服务端简单的上报和查询接口,技术采用 nestjs ,数据库暂时采用写入本地 json 文件。cms 端有一个页面点击查询用户行为和错误堆栈的。h5 端和 cms 端采用 react 技术栈。
## 安装
```bash
$ npm install
```## 运行
```bash
# development
$ npm run start# watch mode
$ npm run start:dev# production mode
$ npm run start:prod
```## 测试
```bash
# unit tests
$ npm run test# e2e tests
$ npm run test:e2e# test coverage
$ npm run test:cov
```