etherpad-lite/src/node
Gabriel Augusto Almeida da0ea3a29d tests: avoid ERR_TOO_MANY_REDIRECTS on frontend tests under Windows
If Etherpad is hosted on Windows the frontend test URI needs to be
/tests/frontend/index.html (docs say .../frontend/), otherwise there is this
error: ERR_TOO_MANY_REDIRECTS.

Fixes #3804.
2020-04-20 01:48:23 +02:00
..
db PadManager: use a set instead of an array in padlist 2020-04-09 03:39:32 +02:00
eejs use latest ejs 2015-04-11 09:53:27 +01:00
handler colibris: introduce skin variants, in order to customize the rendering 2020-04-19 03:03:44 +02:00
hooks tests: avoid ERR_TOO_MANY_REDIRECTS on frontend tests under Windows 2020-04-20 01:48:23 +02:00
utils AbsolutePaths: be able to read the git commit version independently on CWD 2020-04-19 04:51:50 +02:00
easysync_tests.js Revert "51c14d9947 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: require node >= 10.13.0 LTS 2020-04-09 04:43:37 +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