在生产服务器上启动 Svelte 应用程序的最佳方式是什么?

What's the best way to start Svelte app on production server?

我将 SvelteKit (1.0.0) 与节点适配器一起使用。

我想在我的服务器上使用它并以 pm2 启动它。

在没有 npm start 的情况下使用节点适配器启动 Svelte 应用程序的最佳方式是什么?

我不需要 pm2 命令,只需要 Svelte 的 npm 命令。

node build/index.js  # Start production server

完整示例:

npm init svelte@next # Initialize project
npm install          # Install dependencies
npm run build        # Build production version
node build/index.js  # Start production server