etherpad-lite/src/node
SamTV12345 12f81cfb5e
Feat/restructure api (#6664)
* Restructured rest api

* Added swagger ui

* Added reworked rest api

* Reformatted code, excluded unnecessary newlines and removed version 2.2.2
2024-09-21 13:00:39 +02:00
..
db Moved path_exists and promises to es6 2024-08-18 19:52:21 +02:00
eejs Moved to ts (#6593) 2024-08-17 20:14:36 +02:00
handler Feat/restructure api (#6664) 2024-09-21 13:00:39 +02:00
hooks Feat/restructure api (#6664) 2024-09-21 13:00:39 +02:00
security Feat/restructure api (#6664) 2024-09-21 13:00:39 +02:00
types Feat/restructure api (#6664) 2024-09-21 13:00:39 +02:00
utils Add code for revision cleanup (#6442) 2024-09-14 15:54:30 +02:00
padaccess.ts Added typescript to etherpad 2024-02-05 21:13:02 +01:00
README.md Added typescript to etherpad 2024-02-05 21:13:02 +01:00
server.ts Moved path_exists and promises to es6 2024-08-18 19:52:21 +02:00
stats.ts Added typescript to etherpad 2024-02-05 21:13:02 +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.ts is started directly