Some additional Information:
In calendarfetcher.js and nodehelper.js is the following line:
const Log = require("../../../js/logger.js");
If you copy the “calendar” folder down to “modules” this reference will be broken.
So you have to change to:
const Log = require("../../js/logger.js");