etherpad-lite/src/node
Richard Hansen 61b608e264 pad: Use null as default for lang option
It doesn't make sense to override the browser's language with `en-gb`
by default.

Note that this change has no effect due to a bug in how pad options
are processed; that bug will be fixed in a future commit.
2021-12-04 23:06:16 -05:00
..
db Use the new AttributeMap and Changeset APIs 2021-11-28 23:47:27 -05:00
eejs lint: eejs/index.js 2021-02-21 21:06:38 -05:00
handler Changeset: Migrate from OpIter to deserializeOps() 2021-11-23 01:21:49 -05:00
hooks adminsettings: Pay attention to --settings 2021-11-12 23:45:05 -05:00
utils pad: Use null as default for lang option 2021-12-04 23:06:16 -05:00
padaccess.js padaccess: Delete useless try/catch 2021-04-12 22:51:06 -04:00
README.md minor typo fix 2019-08-08 21:58:30 +02:00
server.js deps: Drop support for Node.js < 12.13.0 2021-06-14 23:17:17 +02:00
stats.js lint: Fix some straightforward ESLint errors 2020-12-23 16:18:28 -05: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