Files
send/app
Danny Coates 1c44d1d0f9 added /config endpoint, use fewer globals (#1172)
* added /config endpoint, use fewer globals

* fixed integration tests
2019-02-26 10:39:50 -08:00
..
2019-02-25 11:44:44 -08:00
2019-02-22 17:12:30 +01:00
2018-12-18 13:55:46 -08:00
2018-09-04 10:41:45 -07:00
2019-02-22 13:59:57 -08:00
2018-03-07 15:01:08 -08:00
2019-02-25 11:44:44 -08:00
2018-12-18 13:55:46 -08:00
2018-07-27 16:40:52 -07:00

Application Code

app/ contains the browser code that gets bundled into app.[hash].js. It's got all the logic, crypto, and UI. All of it gets used in the browser, and some of it by the server for server side rendering.

The main entrypoint for the browser is main.js and on the server routes/index.js gets imported by /server/routes/pages.js

  • pages contains display logic an markup for pages
  • routes contains route definitions and logic
  • templates contains ui elements smaller than pages