etherpad-lite/src/node
muxator 312c72c364 formatting: bulk remove trailing whitespaces
Do not touch vendorized files (e.g. libraries that were imported from external
projects).

No functional changes.

Command:
    find . -name '*.<EXTENSION>' -type f -print0 | xargs -0 sed -i 's/[[:space:]]*$//'
2019-10-20 02:09:22 +02:00
..
db formatting: bulk remove trailing whitespaces 2019-10-20 02:09:22 +02:00
eejs use latest ejs 2015-04-11 09:53:27 +01:00
handler handler/PadMessageHandler.js: handleMessage() got the wrong padId for read only pads 2019-03-27 18:29:12 +01:00
hooks formatting: bulk remove trailing whitespaces 2019-10-20 02:09:22 +02:00
utils settings: do not create a user if he has no password field, or if his password is null. 2019-10-19 00:54:56 +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 server.js: rewritten to use Promises 2019-01-18 16:10:25 +00: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