update at 2026-04-21 17:55:41

This commit is contained in:
douboer
2026-04-21 17:55:41 +08:00
parent dda7eaeec1
commit 6199ec79d4
37 changed files with 1106 additions and 174 deletions

28
server/README.md Normal file
View File

@@ -0,0 +1,28 @@
# note2any-wx-server
仓库内置的 TypeScript 版微信代理服务。
## 接口
- `GET /`
- `POST /v1/wx/token`
- `POST /v1/wx/encrypt`
- `GET /v1/wx/info/:authkey`
## 环境变量
- `PORT`,默认 `3001`
- `ENCRYPT_KEY`,长度必须为 `32`
- `USERS_FILE`,默认 `./data/users.json`
## 构建
```bash
npm run build:server
```
## 启动
```bash
node server/dist/index.js
```