etherpad-lite/src/node
SamTV12345 41cb6803d2
7139 let user maintain a single session across multiple browsers (#7228)
* chore: started with implementation

* chore: finished index page

* chore: started with double sided modal

* chore: continue

* chore: completed implementation of transfer token

* chore: fixed typescript checks
2025-11-18 12:23:55 +01:00
..
db chore: migrated settings to esm6 (#7062) 2025-08-04 22:42:50 +02:00
eejs chore: migrated settings to esm6 (#7062) 2025-08-04 22:42:50 +02:00
handler fix prometheus metric and add total users and active pad count (#7179) 2025-10-19 17:27:21 +02:00
hooks 7139 let user maintain a single session across multiple browsers (#7228) 2025-11-18 12:23:55 +01:00
security chore: migrated settings to esm6 (#7062) 2025-08-04 22:42:50 +02:00
types chore: migrated settings to esm6 (#7062) 2025-08-04 22:42:50 +02:00
utils chore: added settings for darkmode and relaxed width and height of inputs (#7204) 2025-10-29 20:29:40 +01:00
metrics.ts chore: added prometheus support in Etherpad 2025-08-25 20:34:29 +02:00
padaccess.ts Added typescript to etherpad 2024-02-05 21:13:02 +01:00
prometheus.ts fix prometheus metric and add total users and active pad count (#7179) 2025-10-19 17:27:21 +02:00
README.md Added typescript to etherpad 2024-02-05 21:13:02 +01:00
server.ts chore: migrated settings to esm6 (#7062) 2025-08-04 22:42:50 +02:00
stats.ts Added typescript to etherpad 2024-02-05 21:13:02 +01:00

About the folder structure

  • db - all modules that are accessing the data structure and are communicating directly to the database
  • handler - all modules that respond directly to requests/messages of the browser
  • utils - helper modules

Module name conventions

Module file names start with a capital letter and uses camelCase

Where does it start?

server.ts is started directly