Skip to content

Latest commit

 

History

History
147 lines (143 loc) · 6.07 KB

File metadata and controls

147 lines (143 loc) · 6.07 KB
  • Review and Update Security Policy
    • Provide private way of reporting vulnerabilities?

TODO

Application

  • Local Storage DataService
  • Controller/Component for saving/retrieving stored vals
  • Interface for displaying vals
  • Weather/Other Free API
  • Redux Example (w/o React)
  • React Example
  • GraphQL Example
  • Websocket?

Notes/Ideas

  • PostCSS vs CSS-Loader?
  • Why hold much state/data in UI rather than display from server on page load?
    • Pros:
      • Speed for user (when results can be preloaded)
      • Saves money in server computation costs to create UI/remember state
    • Cons:
      • Lots of bandwidth to deliver Single Page App
      • Can be slower when building large UI after data call
    • Overall: Save state/preload data in client to improve user experience. Use server for speed
      • Use client when small objects can be stored/edited and returned
      • Use server for displayed only data
    • Redux for sharing state between client/server
    • When should we vs static webpages? React/React Static?
  • Backbone for UI? Seems simpler than react? Doesn't rely/revolve around instant response to interaction
  • GraphQL