为什么pm2忽略了生态系统.config.js文件中传递给节点的--experimental-modules?

时间:2019-08-06 18:46:49

标签: javascript node.js pm2 es-module

这是我的main.js文件:

import Koa from "koa";

const app = new Koa();
app.use(async ctx => ctx.body = "Hello, World!");
app.listen(3000);

这是我的package.json文件:

{
  "type": "module",
  "name": "koa-sandbox",
  "version": "1.0.0",
  "description": "",
  "main": "./src/main.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "node --experimental-modules ./src/main.js"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "koa": "^2.7.0"
  }
}

当我通过npm启动它时,它工作正常:

npm start

现在,我需要通过pm2做同样的事情。这是我的ecosystem.config.js文件:

module.exports = {
  apps : [{
    name: 'API',
    script: './src/main.js',
    node_args : '--experimental-modules',
    instances: 1,
    autorestart: true,
    watch: true,
    max_memory_restart: '1G',
  }],
};

我启动我的应用程序:

pm2 start .\ecosystem.config.js

但我看到了结果:

enter image description here

在日志文件中,我看到了它:

(node:12696) ExperimentalWarning: The ESM module loader is experimental.
C:\lab\koa-sandbox\src\main.js:1
import Koa from "koa";
       ^^^

SyntaxError: Unexpected identifier
    at Module._compile (internal/modules/cjs/loader.js:720:22)

为什么pm2忽略了--experimental-modules文件中传递给node的{​​{1}}?

我看到了类似的问题here,但仍然没有答案...

1 个答案:

答案 0 :(得分:-1)

对于使用esm import,我正在使用esm package

您可以在文件中添加一个文件,例如index.js

require = require("esm")(module/*, options*/)
module.exports = require("./main.js")

并将ecosystem.config.js修改为

module.exports = {
  apps : [{
    name: 'API',
    script: './src/index.js',
    instances: 1,
    autorestart: true,
    watch: true,
    max_memory_restart: '1G',
  }],
};

package.json中,您不必

"start": "node --experimental-modules ./src/main.js"

脚本将在没有--experimental-modules的情况下运行。

只是

"start": "node ./src/index.js"