24
1
Fork 0
drop.chapril.org-firefoxsend/app/readme.md

10 lines
553 B
Markdown
Raw Permalink Normal View History

2018-03-06 01:29:09 +01: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.
2019-11-12 19:09:07 +01:00
The main entrypoint for the browser is [main.js](./main.js) and on the server [routes.js](./routes.js) is imported by [/server/routes/pages.js](../server/routes/pages.js)
2018-03-06 01:29:09 +01:00
- `pages` contains display logic an markup for pages
- `routes` contains route definitions and logic
- `templates` contains ui elements smaller than pages