etherpad-lite/src/node
John McLear 8c1b8b0902
fix: add setters to CJS compatibility layer in Settings (#7481)
The CJS compatibility block added in fd97532 only defined getters,
making settings properties read-only for plugins using require().
Plugins like ep_webrtc need to mutate settings (e.g. requireAuthentication)
in tests. Add setters so CJS consumers can write properties too.

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 16:19:23 +01:00
..
db fix: very old .etherpad imports could break import due to lack of aut… (#7473) 2026-04-06 13:31:57 +01:00
eejs chore: migrated settings to esm6 (#7062) 2025-08-04 22:42:50 +02:00
handler feat: make cookie names configurable with prefix setting (#7450) 2026-04-05 01:58:29 +01:00
hooks fix: dev mode entrypoint paths respect x-proxy-path header (#7472) 2026-04-06 13:32:33 +01:00
security Enforce 2-space indentation across codebase (#7426) 2026-04-01 19:48:45 +01:00
types fix: appendText API now attributes text to the specified author (#7446) 2026-04-04 09:28:09 +01:00
utils fix: add setters to CJS compatibility layer in Settings (#7481) 2026-04-06 16:19:23 +01:00
metrics.ts chore: added prometheus support in Etherpad 2025-08-25 20:34:29 +02:00
padaccess.ts feat: make cookie names configurable with prefix setting (#7450) 2026-04-05 01:58:29 +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 build(deps-dev): bump the dev-dependencies group across 1 directory with 14 updates (#7272) 2025-12-19 21:38:53 +01: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