send/app
2018-09-25 13:54:47 -07:00
..
pages fixed multiple issues with the /signin page. #935 #936 #937 2018-09-24 12:01:39 -07:00
routes removed background image 2018-09-25 13:39:45 -07:00
templates changed feedback button style 2018-09-25 13:49:46 -07:00
.eslintrc.yml
api.js fixed getFileList when the response isn't OK 2018-09-24 12:23:46 -07:00
archive.js
base.css
capabilities.js disable capabilities.account when no FXA_CLIENT_ID is set 2018-09-19 12:54:27 -07:00
dragManager.js
ece.js
experiments.js
fileManager.js reset page expiry options on logout 2018-09-24 15:25:08 -07:00
fileReceiver.js emit complete for blob downloads 2018-09-04 11:08:44 -07:00
fileSender.js
fxa.js implemented PKCE auth (#921) 2018-09-14 11:00:33 -04:00
keychain.js
main.css removed background image 2018-09-25 13:39:45 -07:00
main.js fixed leaky app.state on the server-side. fixes #928 2018-09-18 16:23:58 -07:00
metrics.js
ownedFile.js
pasteManager.js
readme.md
serviceWorker.js stubbed in modal dialog 2018-09-13 10:37:52 -07:00
storage.js
streams.js
user.js use firefox logo as logged in default avatar 2018-09-25 13:54:47 -07:00
utils.js fixed multiple issues with the /signin page. #935 #936 #937 2018-09-24 12:01:39 -07:00
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