In windows i am facing the parse-server connection issue why?

@dhyan Hi,

You still don’t start the parse-server, but you are trying to connect the un-started server.

Add this line:

await parseServer.start()

before this :

// Mount Parse Server at '/parse' URL prefix
app.use('/parse', parseServer.app);