etherpad-lite/src/node
muxator 7544585908 runtime: enforce minimal node version to 6.9.0
Etherpad 1.6.6 does not run on node <= 5 already.
Node 6.9 is the first LTS release in the 6 series, and comes with npm 3.10.8.

Declarations in package.json are advisory unless the user has set
`engine-strict` config flag.

Updated the docs accordingly.
2018-07-28 23:33:24 +02:00
..
db upgrade to 1.6.5 2018-04-24 12:25:56 +03:00
eejs use latest ejs 2015-04-11 09:53:27 +01:00
handler sync with ether/etherpad-lite 2018-05-02 11:08:57 +03:00
hooks sync with ether/etherpad-lite 2018-05-02 11:08:57 +03:00
utils runtime: enforce minimal node version to 6.9.0 2018-07-28 23:33:24 +02:00
README.md Merge branch 'pita' 2012-03-02 22:00:20 +01:00
easysync_tests.js Revert "51c14d994756e60333b0b60eccb7255cf0c86461 changed the return value of" 2015-02-16 06:22:49 +01:00
padaccess.js Use the cookie parser middleware 2015-05-07 18:35:21 +01:00
server.js runtime: enforce minimal node version to 6.9.0 2018-07-28 23:33:24 +02:00
stats.js Record metrics with 'measured' 2013-10-27 17:42:55 +01:00

README.md

About the folder structure

  • db - all modules that are accesing 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