A cloudcode template project used for running Parse locally.
npm install express;
sudo npm install -g typescript; # installs the typescript compiler
npm install parse-server;
npm install parse-dashboard;
npm install mongodb-runner;
Edit the dashboard.js
and server.js
files to meet your needs. Don't forget to change the project name and database connection URL.
Run MongoDB:
mongod
Compile your typescript code into JavaScript:
tsc main.ts
Run the server:
node server.js
Run the dashboard:
node dashboard.js