pad.libre-service.eu-etherpad/src/node
John McLear c2ea2b3a6d webaccess: do not resave session
Before this change, the database was spammed with session values.
Modern express-session has this baked in.
See https://www.npmjs.com/package/express-session#resave for docs.
2020-04-03 02:55:33 +02:00
..
db SessionStore: replace password with PASSWORD_HIDDEN when storing in db 2020-04-01 03:39:05 +02:00
eejs use latest ejs 2015-04-11 09:53:27 +01:00
handler interesting discovery RE 3612 and 2802 2020-04-03 02:40:59 +02:00
hooks webaccess: do not resave session 2020-04-03 02:55:33 +02:00
utils Settings: allow the existence of "password" and "hash" attributes for users. 2020-04-01 04:13:21 +02:00
easysync_tests.js Revert "51c14d994756e60333b0b60eccb7255cf0c86461 changed the return value of" 2015-02-16 06:22:49 +01:00
padaccess.js access controls: promisification 2019-01-23 16:29:36 +00:00
README.md minor typo fix 2019-08-08 21:58:30 +02:00
server.js runtime: deprecate node 8.x. Require node >= 10.13.0 starting from Etherpad 1.8.3 2019-10-20 00:02:00 +02:00
stats.js node8: we no longer need to use a shim for Object.values in stats.js 2019-02-19 22:01:12 +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.js is started directly