I installed and managed to run properly Parse Server with Express using the example server that you have on Github (https://github.com/ParsePlatform/parse-server-example).
This is what I did:
index.js based on my needs.npm install and npm start.Now I want to achieve the same thing using the package parse-server available on npm, but based on the instructions that I found in the package page (https://www.npmjs.com/package/parse-server) I couldn't figure out how to run it with Express. I managed to run it only without Express.
In other words, I don't want to clone the parse-server-example every time I need to use Parse. I want to start my server using only the parse-server command line tool and the index.js file.
Thanks
This is fairly easy;
npm initnpm install --save parse-server{ ..., "scripts": { "start": "parse-server config.json"}}npm startThanks a lot!
Most helpful comment
This is fairly easy;
npm initnpm install --save parse-server{ ..., "scripts": { "start": "parse-server config.json"}}npm start