Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 628 Bytes

README.md

File metadata and controls

27 lines (24 loc) · 628 Bytes

ThePickupList

An awesome shopping list app using the MERN (MongoDB/Express/React/Node) Stack, plus probably some Socket.IO.

Setup for development

Prereqs

  • Make sure node is up to date. 4.7+ should be fine.
  • Install webpack and webpack-dev-server globally
  npm install -g webpack
  npm install -g webpack-dev-server

Run dev environment

  • Run
  npm install
  • API startup: In one command window run:
  npm run-script start-back
  • Client-side: In another command window run:
  npm run-script start-front