send/app
..
ui
.eslintrc.yml
api.js
archive.js
capabilities.js
controller.js
cryptofill.js
dragManager.js
ece.js
experiments.js
fileReceiver.js
fileSender.js
fxa.js
keychain.js
locale.js
main.css
main.js
metrics.js
ownedFile.js
pasteManager.js
readme.md
routes.js
serviceWorker.js
storage.js
streams.js
user.js use default avatar instead of ff logo for users with no avatar 2019-02-08 11:58:42 -08:00
utils.js
zip.js

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