Skip to content

Latest commit

 

History

History
32 lines (17 loc) · 511 Bytes

README.md

File metadata and controls

32 lines (17 loc) · 511 Bytes

GoogleMaps searcher

It is a simple web app for search places and find app users.

Installation

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

Usage

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