Skip to content

marcomarandiz/partyq

Repository files navigation

partyq

partyq

Build Status

Master

Build Status

Dev

Build Status

Commands

  • npm start runs the development server with hot-loading.
  • npm test runs both server side and client side tests
  • npm run lint runs eslint on files
  • npm run build builds partyq for production
  • npm run test:server runs server side tests
  • npm run test:client runs client side tests
  • npm run test:server-watch runs server tests when files change
  • npm run test:client-watch runs client tests when files change
  • npm run test:watch runs tests when files change

Layout

  • /test General tests that do not fit in front or backend.
    • /test/learning various non-application tests. Used to experiment with a new API or get comformable with the testing framework.

Frontend

Backend

  • /server contains the main backend source code for partyq. Reducer, Redux store, and core functionality.
  • /server/test contains chai tests for the partyq backend.

Packages

Redux manages the state in partyq. We want to represent our application's state as an immutable tree data structure. We change the state by applying function to the state tree. Also uses react-redux to play nicely with react.

Framework used on backend

Module bundler. See

Other Dependencies

Dev Dependencies

References