send/app
2019-03-09 20:56:33 -08:00
..
ui updated share button text 2019-03-09 20:56:33 -08:00
.eslintrc.yml
api.js updated filelist storage so userid is not used directly 2019-02-26 13:53:11 -08:00
archive.js
capabilities.js added share to tile 2019-03-09 20:41:20 -08:00
controller.js try web share api 2019-03-09 17:59:21 -08:00
dragManager.js
ece.js fixed size limit on server to include crypto overhead 2019-03-06 10:31:50 -08:00
experiments.js found source of double-render, removed old experiment 2019-02-25 14:03:08 -08:00
fileReceiver.js Add setApiUrlPrefix and use it in the android version. 2018-11-19 15:10:57 -05:00
fileSender.js fixed size limit on server to include crypto overhead 2019-03-06 10:31:50 -08:00
fxa.js
keychain.js
locale.js reimplemented l10n using dynamic import() (#1012) 2018-11-20 09:50:59 -05:00
main.css
main.js
metrics.js utms for everybody 2019-03-05 12:58:40 -08:00
ownedFile.js
pasteManager.js exclude text inputs from paste handler 2019-01-29 12:43:09 -08:00
readme.md
routes.js
serviceWorker.js
storage.js implemented amplitude metrics (#1141) 2019-02-12 11:50:06 -08:00
streams.js
user.js use fxa email-first flow 2019-03-07 12:08:42 -08:00
utils.js fixed size limit on server to include crypto overhead 2019-03-06 10:31:50 -08:00
zip.js Implemented multi-file upload/download 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