You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
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",
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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".
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:
The text was updated successfully, but these errors were encountered: