git clone https://github.com/pbmasigla/react-flashcards.git
nvm use
npm install
npm run dev
then go to http://localhost:8080/
├── build // where minified files for browser are compiled to
├── node_modules // installed packages
├── src // main app files
├── .babelrc // config for babelrc
├── webpack.config.js // config for webpack compilation
└── package.json // node packages to be installed
├── client
│ ├── js
│ │ ├── components // react components
│ │ ├── app.js // main app that is mounted to views
│ │ └── history.js //manage session history
│ │
│ ├── scss // styles
│ └── assets // asset files such as images
│
└── index.js // main file to setup app/server