drop.chapril.org-firefoxsend/app
Danny Coates 7ccf462bf8 implemented PKCE auth (#921)
* implemented PKCE auth

* removed node-jose

* added PKCE tests
2018-09-14 11:00:33 -04:00
..
pages hide signup promo when logged in 2018-08-31 15:15:25 -07:00
routes implemented PKCE auth (#921) 2018-09-14 11:00:33 -04:00
templates hide signup promo when logged in 2018-08-31 15:15:25 -07:00
.eslintrc.yml a few changes to make A/B testing easier 2017-08-25 09:44:52 -07:00
api.js Implement wss preference url in html; Update to work with the tip of vnext branch; allow viewing the android ui from the webpack server (#918) 2018-09-06 18:56:04 -04:00
archive.js Implemented FxA 2018-08-30 22:10:08 -07:00
base.css fix merge conflicts 2018-08-09 15:58:02 -07:00
capabilities.js adjust streamDownload capability to exclude safari but not chrome 2018-09-04 13:05:11 -07:00
dragManager.js add fxA ui elements 2018-08-03 16:11:13 -07:00
ece.js make ece encrypt key extractable for Edge 2018-07-31 15:37:04 -07:00
experiments.js exclude fxios from fxPromo banner. fixes #753 2018-02-15 11:49:41 -08:00
fileManager.js implemented PKCE auth (#921) 2018-09-14 11:00:33 -04:00
fileReceiver.js emit complete for blob downloads 2018-09-04 11:08:44 -07:00
fileSender.js added fxa auth to /ws 2018-08-31 14:30:50 -07:00
fxa.js implemented PKCE auth (#921) 2018-09-14 11:00:33 -04:00
keychain.js removed unused crypto functions 2018-09-04 10:41:45 -07:00
main.css hook multifile to ui 2018-08-03 16:10:00 -07:00
main.js implemented PKCE auth (#921) 2018-09-14 11:00:33 -04:00
metrics.js reinstate the 'exited' metric. fixes #653 2018-01-19 15:07:05 -08:00
ownedFile.js added fxa auth to /params 2018-08-31 11:43:56 -07:00
pasteManager.js add fxA ui elements 2018-08-03 16:11:13 -07:00
readme.md updated docs 2018-03-07 15:01:08 -08:00
serviceWorker.js minor serviceWorker tweaks to url matching and 302 redirects 2018-09-05 10:35:36 -07:00
storage.js Implemented FxA 2018-08-30 22:10:08 -07:00
streams.js Implemented multi-file upload/download 2018-07-27 16:40:52 -07:00
user.js implemented PKCE auth (#921) 2018-09-14 11:00:33 -04:00
utils.js Implemented FxA 2018-08-30 22:10:08 -07: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