It is a simple web app for search places and find app users.
For usage you have to have node.js and npm installed.
Do it in console:
npm install -g nodemon
npm install -g webpack
npm install
For start server and watch server changes, use command:
npm start
is equivalents to:
nodemon ./server.js --ignore client/
For watching client changes, use:
npm run development
And for production client build:
npm run production