Initial commit

This commit is contained in:
2026-06-24 13:07:52 +02:00
commit bea7289c00
19 changed files with 6349 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
/*
! ./index.js Central Project Module
?
*/
(async () => {
// $ initial software boot loader
// ?? Usage: "bootData.var" (e.g. "bootData.npm.express" or "bootData.dir.coreDir")
const bootData = await (async () => {
try {
// % load bootup file
const bootLoader = require("./startup/index");
// ~ startup bootloader and return result
return await bootLoader();
} catch (e) {
// ~ log error in console
console.error("Error in boot process:", e);
// ~ exit process
process.exit(1);
}
})();
})();