sailstech / multiple-apps-parse-server

run and manage multiple parse apps (instances) in a server and using a single port
MIT License
55 stars 12 forks source link

SyntaxError: missing ) after argument list #4

Closed JianxunRao closed 6 years ago

JianxunRao commented 6 years ago

when i try to create the first app using this script,error occurs as shown below:

app=myapp customer=trojx node newInstance.js 
/root/parse-server/multiple-apps-parse-server/newInstance.js:42
    return new Promise(async function(res,rej) {
                       ^^^^^

SyntaxError: missing ) after argument list
    at createScript (vm.js:56:10)
    at Object.runInThisContext (vm.js:97:10)
    at Module._compile (module.js:542:28)
    at Object.Module._extensions..js (module.js:579:10)
    at Module.load (module.js:487:32)
    at tryModuleLoad (module.js:446:12)
    at Function.Module._load (module.js:438:3)
    at Module.runMain (module.js:604:10)
    at run (bootstrap_node.js:389:7)
    at startup (bootstrap_node.js:149:9)

need help plz :)

richjing commented 6 years ago

@JianxunRao async/await is supported by the latter node.js version of 7.6. please make sure you are using correct node.js version, thank you.

JianxunRao commented 6 years ago

@richjing oh i'm newbie in nodejs. problem solved. thank you.