pad.libre-service.eu-etherpad/src/node
Ray Bellis ac7663c337 db/DB.js: prevent DB layer from returning undefined
ueberDB2 can return either undefined or null for a missing key, depending on
which DB driver is used. This patch changes the promise version of the API so
that it will always return null.
2019-03-05 10:46:57 +00:00
..
db db/DB.js: prevent DB layer from returning undefined 2019-03-05 10:46:57 +00:00
eejs use latest ejs 2015-04-11 09:53:27 +01:00
handler allow some operations to proceed in parallel 2019-02-01 09:57:50 +00:00
hooks errorhandling.js: use promise db.doShutdown interface 2019-01-31 11:14:27 +00:00
utils padDiff.js: convert to Promises/async 2019-01-31 14:38:56 +00: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 Fix typos 2019-01-16 11:14:04 +01: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 responds 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