chore(deps): 添加 express 和 open 依赖项

- 在 package.json 中添加 express 版本 5.2.1
- 在 package.json 中添加 open 版本 11.0.0
- 更新 pnpm-lock.yaml 文件以包含新的依赖项及其子依赖项
- 添加与新依赖项相关的中间件和工具库
- 确保所有新增依赖项的版本兼容性
This commit is contained in:
coolxitech
2025-12-13 13:16:11 +08:00
parent 7e937330bb
commit b77ae14d5c
3 changed files with 650 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
const express = require('express');
const path = require('path');
const open = require('open'); // 需要安装: npm install open express
const os = require('os');
const path = require('node:path');
const open = require('open');
const os = require('node:os');
const app = express();
const HOST = '0.0.0.0';