# time-recorder **Repository Path**: panchenguang/time-recorder ## Basic Information - **Project Name**: time-recorder - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-03 - **Last Updated**: 2024-01-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Use `docker build -ti .` to build docker image. **API List** | path | desc | | ---------------- | ------------------------- | | /recorder | Create recorder task | | /searchCornCount | Get current server weight | | /delete | Delete recorder task |
. ├── Dockerfile ├── README.md ├── ecosystem.config.js ├── package-lock.json ├── package.json ├── server.log ├── shell │ └── dev-start.sh ├── src │ ├── @types │ │ └── lib.d.ts │ ├── index.ts │ ├── routes │ │ ├── delete.ts │ │ ├── processLock.ts │ │ └── recorder.ts │ ├── rpc │ │ └── api.ts │ ├── types │ │ └── index.d.ts │ └── util │ ├── constant.ts │ ├── cron.ts │ ├── ffmpeg.ts //node call ffmpeg │ ├── log.ts //Recorder log │ ├── promisify.ts │ ├── puppeteer.ts //Recorder entry │ ├── task.ts //Task cache │ ├── timeConvert.ts //Cron job time converter │ └── xvfb.ts //Custom node call xvfb ├── tsconfig.json └── yarn.lock