index.mjs 422 B

12345678910111213141516
  1. /*
  2. * @Author: your name
  3. * @Date: 2025-04-07 15:19:55
  4. * @LastEditTime: 2025-04-07 15:27:15
  5. * @LastEditors: bogon
  6. * @Description: In User Settings Edit
  7. * @FilePath: /performance-test/downLoadServer/index.js
  8. */
  9. //node 版本v18.12.1
  10. import "dotenv/config";
  11. import { startServer } from "./src/server/server.js";
  12. startServer().catch((error) => {
  13. console.error("服务器启动失败:", error);
  14. process.exit(1);
  15. });