etherpad-lite/src/node
Ray Bellis 62345ac8f7 import/export: conversion to Promises/async
NB1: needs additional review and testing - no abiword available on my test bed
NB2: in ImportHandler.js, directly delete the file, and handle the eventual
     error later: checking before for existence is prone to race conditions,
     and does not handle any errors anyway.
2019-01-31 08:55:36 +00:00
..
db import/export: conversion to Promises/async 2019-01-31 08:55:36 +00:00
eejs use latest ejs 2015-04-11 09:53:27 +01:00
handler import/export: conversion to Promises/async 2019-01-31 08:55:36 +00:00
hooks padurlsanitize.js: invert a condition prior to refactoring 2019-02-09 00:05:21 +01:00
utils import/export: conversion to Promises/async 2019-01-31 08:55:36 +00: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 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