Voice hangouts with your friends
- react - A declarative, efficient, and flexible JavaScript library for building user interfaces.
- redux - a predictable state container for JavaScript apps.
- react-redux - Official React bindings for Redux
- react-router - A complete routing library for React
- redux-thunk - Allows you to write action creators that return a function instead of an action.
- webpack - module bundler.
- babel - A compiler for writing next generation JavaScript.
- css-modules - Modulize CSS.
- Install packages via npm
npm install
- Start webpack development server
npm start
- Visit http://localhost:3000 in browser
Production build will exclude unnecessary resources (e.g. redux-logger only enable in development mode), minimizing resources and shipping production build libraries for real website experience.
- Install packages via npm
npm install
- Start production server
NODE_ENV=production npm start
- Visit http://localhost:3000 in browser
npm clean