esm icon indicating copy to clipboard operation
esm copied to clipboard

What should I pay attention to when configuring esm?

Open Riveer01 opened this issue 2 years ago • 0 comments

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",

Riveer01 avatar May 16 '23 08:05 Riveer01