standard-things / esm

Tomorrow's ECMAScript modules today!
Other
5.26k stars 147 forks source link

What should I pay attention to when configuring esm? #928

Open Riveer01 opened 1 year ago

Riveer01 commented 1 year ago

Hello, I use pm2+esm to start the project, but the following error occurs: "Parse is not defined". Parse is a global object in the third-party package "parse-server".

const brand = await new Parse.Query('Brand').select('brandName').equalTo('objectId', brandId).first();

There is no need using import or require for Parse.Query. What should I pay attention to when configuring esm? The following is the relevant configuration to start esm in pm2:

"script": "index.js",
"node_args": "-r esm",