create-arkos 0.0.10 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/dist/create-arkos/src/index.js +60 -0
  2. package/dist/create-arkos/src/index.js.map +1 -0
  3. package/dist/create-arkos/src/utils/helpers/hbs-tester.helpers.js +63 -0
  4. package/dist/create-arkos/src/utils/helpers/hbs-tester.helpers.js.map +1 -0
  5. package/dist/create-arkos/src/utils/helpers/index.js +37 -0
  6. package/dist/create-arkos/src/utils/helpers/index.js.map +1 -0
  7. package/dist/create-arkos/src/utils/helpers/npm.helpers.js +10 -0
  8. package/dist/create-arkos/src/utils/helpers/npm.helpers.js.map +1 -0
  9. package/dist/create-arkos/src/utils/helpers/template-processor.js +2 -0
  10. package/dist/create-arkos/src/utils/helpers/template-processor.js.map +1 -0
  11. package/dist/create-arkos/src/utils/project-config-inquirer.js +229 -0
  12. package/dist/create-arkos/src/utils/project-config-inquirer.js.map +1 -0
  13. package/dist/create-arkos/src/utils/template-compiler.js +76 -0
  14. package/dist/create-arkos/src/utils/template-compiler.js.map +1 -0
  15. package/dist/shared/src/index.js +18 -0
  16. package/dist/shared/src/index.js.map +1 -0
  17. package/dist/shared/src/utils/helpers/user-agent.helpers.js +25 -0
  18. package/dist/shared/src/utils/helpers/user-agent.helpers.js.map +1 -0
  19. package/package.json +4 -4
  20. package/templates/basic/.env.hbs +8 -1
  21. package/templates/basic/.gitignore.hbs +2 -0
  22. package/templates/basic/jsconfig.json.hbs +15 -0
  23. package/templates/basic/package.json.hbs +23 -2
  24. package/templates/basic/prisma/schema/auth-permission.prisma.hbs +1 -1
  25. package/templates/basic/prisma/schema/auth-role.prisma.hbs +1 -1
  26. package/templates/basic/prisma/schema/user-role.prisma.hbs +1 -1
  27. package/templates/basic/prisma/schema/user.prisma.hbs +2 -2
  28. package/templates/basic/src/app.ts.hbs +8 -0
@@ -0,0 +1,60 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
4
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
5
+ return new (P || (P = Promise))(function (resolve, reject) {
6
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
7
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
8
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
9
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
10
+ });
11
+ };
12
+ var __importDefault = (this && this.__importDefault) || function (mod) {
13
+ return (mod && mod.__esModule) ? mod : { "default": mod };
14
+ };
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ const fs_1 = __importDefault(require("fs"));
17
+ const path_1 = __importDefault(require("path"));
18
+ const chalk_1 = __importDefault(require("chalk"));
19
+ const child_process_1 = require("child_process");
20
+ const project_config_inquirer_1 = __importDefault(require("./utils/project-config-inquirer"));
21
+ const template_compiler_1 = __importDefault(require("./utils/template-compiler"));
22
+ const handlebars_1 = __importDefault(require("handlebars"));
23
+ const shared_1 = require("@arkos/shared");
24
+ const helpers_1 = require("./utils/helpers");
25
+ handlebars_1.default.registerHelper("eq", (a, b) => a === b);
26
+ handlebars_1.default.registerHelper("neq", (a, b) => a !== b);
27
+ function main() {
28
+ return __awaiter(this, void 0, void 0, function* () {
29
+ const config = yield project_config_inquirer_1.default.run();
30
+ const projectPath = config.projectPath;
31
+ fs_1.default.mkdirSync(projectPath, { recursive: true });
32
+ console.info(`\nCreating a new ${chalk_1.default.bold(chalk_1.default.cyan("Arkos.js"))} project under ${chalk_1.default.green(`./${config.projectName}`)}`);
33
+ const templatesDir = path_1.default.join(__dirname, `../templates/basic`);
34
+ yield template_compiler_1.default.compile(templatesDir, config);
35
+ process.chdir(projectPath);
36
+ const packageManager = (0, shared_1.detectPackageManagerFromUserAgent)();
37
+ const { dependencies, devDependencies } = (0, helpers_1.getProcjetPackageJsonDependecies)(projectPath);
38
+ console.info(chalk_1.default.bold("\ndependencies:"));
39
+ dependencies.forEach((dependency) => console.info(`- ${dependency}`));
40
+ console.info(chalk_1.default.bold("\ndevDependencies:"));
41
+ devDependencies.forEach((devDependency) => console.info(`- ${devDependency}`));
42
+ console.info("\nInstalling dependencies...");
43
+ console.info(`Using ${packageManager}.\n`);
44
+ (0, child_process_1.execSync)(`${packageManager} install`, { stdio: "inherit" });
45
+ process.chdir(projectPath);
46
+ console.info("\nRunning npx prisma generate...");
47
+ (0, child_process_1.execSync)(`npx prisma generate`, { stdio: "inherit" });
48
+ console.info(`
49
+ ${chalk_1.default.bold(chalk_1.default.cyan("Arkos.js"))} project created successfully!
50
+
51
+ Next steps:
52
+ 1. cd ${config.projectName}
53
+ 2. setup your ${chalk_1.default.cyan("DATABASE_URL")} under .env
54
+ 3. npx prisma db push
55
+ 4. ${packageManager} run dev
56
+ `);
57
+ });
58
+ }
59
+ main().catch(console.error);
60
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AACA,4CAAoB;AACpB,gDAAwB;AACxB,kDAA0B;AAC1B,iDAAyC;AACzC,8FAAoE;AACpE,kFAAyD;AACzD,4DAAoC;AACpC,0CAAkE;AAClE,6CAAmE;AAEnE,oBAAU,CAAC,cAAc,CAAC,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;AACnD,oBAAU,CAAC,cAAc,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;AAEpD,SAAe,IAAI;;QACjB,MAAM,MAAM,GAAG,MAAM,iCAAqB,CAAC,GAAG,EAAE,CAAC;QAEjD,MAAM,WAAW,GAAG,MAAM,CAAC,WAAW,CAAC;QAEvC,YAAE,CAAC,SAAS,CAAC,WAAW,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;QAE/C,OAAO,CAAC,IAAI,CACV,oBAAoB,eAAK,CAAC,IAAI,CAAC,eAAK,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,kBAAkB,eAAK,CAAC,KAAK,CAAC,KAAK,MAAM,CAAC,WAAW,EAAE,CAAC,EAAE,CACjH,CAAC;QAEF,MAAM,YAAY,GAAG,cAAI,CAAC,IAAI,CAAC,SAAS,EAAE,oBAAoB,CAAC,CAAC;QAChE,MAAM,2BAAgB,CAAC,OAAO,CAAC,YAAY,EAAE,MAAM,CAAC,CAAC;QAErD,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;QAE3B,MAAM,cAAc,GAAG,IAAA,0CAAiC,GAAE,CAAC;QAC3D,MAAM,EAAE,YAAY,EAAE,eAAe,EAAE,GACrC,IAAA,0CAAgC,EAAC,WAAW,CAAC,CAAC;QAEhD,OAAO,CAAC,IAAI,CAAC,eAAK,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC;QAC5C,YAAY,CAAC,OAAO,CAAC,CAAC,UAAU,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,UAAU,EAAE,CAAC,CAAC,CAAC;QAEtE,OAAO,CAAC,IAAI,CAAC,eAAK,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC;QAC/C,eAAe,CAAC,OAAO,CAAC,CAAC,aAAa,EAAE,EAAE,CACxC,OAAO,CAAC,IAAI,CAAC,KAAK,aAAa,EAAE,CAAC,CACnC,CAAC;QAEF,OAAO,CAAC,IAAI,CAAC,8BAA8B,CAAC,CAAC;QAC7C,OAAO,CAAC,IAAI,CAAC,SAAS,cAAc,KAAK,CAAC,CAAC;QAE3C,IAAA,wBAAQ,EAAC,GAAG,cAAc,UAAU,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;QAE5D,OAAO,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;QAC3B,OAAO,CAAC,IAAI,CAAC,kCAAkC,CAAC,CAAC;QACjD,IAAA,wBAAQ,EAAC,qBAAqB,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;QAEtD,OAAO,CAAC,IAAI,CAAC;IACX,eAAK,CAAC,IAAI,CAAC,eAAK,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;;;UAG5B,MAAM,CAAC,WAAW;kBACV,eAAK,CAAC,IAAI,CAAC,cAAc,CAAC;;OAErC,cAAc;KAChB,CAAC,CAAC;IACP,CAAC;CAAA;AAED,IAAI,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC","sourcesContent":["#!/usr/bin/env node\nimport fs from \"fs\";\nimport path from \"path\";\nimport chalk from \"chalk\";\nimport { execSync } from \"child_process\";\nimport projectConfigInquirer from \"./utils/project-config-inquirer\";\nimport templateCompiler from \"./utils/template-compiler\";\nimport Handlebars from \"handlebars\";\nimport { detectPackageManagerFromUserAgent } from \"@arkos/shared\";\nimport { getProcjetPackageJsonDependecies } from \"./utils/helpers\";\n\nHandlebars.registerHelper(\"eq\", (a, b) => a === b);\nHandlebars.registerHelper(\"neq\", (a, b) => a !== b);\n\nasync function main() {\n const config = await projectConfigInquirer.run();\n\n const projectPath = config.projectPath;\n\n fs.mkdirSync(projectPath, { recursive: true });\n\n console.info(\n `\\nCreating a new ${chalk.bold(chalk.cyan(\"Arkos.js\"))} project under ${chalk.green(`./${config.projectName}`)}`\n );\n\n const templatesDir = path.join(__dirname, `../templates/basic`);\n await templateCompiler.compile(templatesDir, config);\n\n process.chdir(projectPath);\n\n const packageManager = detectPackageManagerFromUserAgent();\n const { dependencies, devDependencies } =\n getProcjetPackageJsonDependecies(projectPath);\n\n console.info(chalk.bold(\"\\ndependencies:\"));\n dependencies.forEach((dependency) => console.info(`- ${dependency}`));\n\n console.info(chalk.bold(\"\\ndevDependencies:\"));\n devDependencies.forEach((devDependency) =>\n console.info(`- ${devDependency}`)\n );\n\n console.info(\"\\nInstalling dependencies...\");\n console.info(`Using ${packageManager}.\\n`);\n\n execSync(`${packageManager} install`, { stdio: \"inherit\" });\n\n process.chdir(projectPath);\n console.info(\"\\nRunning npx prisma generate...\");\n execSync(`npx prisma generate`, { stdio: \"inherit\" });\n\n console.info(`\n ${chalk.bold(chalk.cyan(\"Arkos.js\"))} project created successfully!\n\n Next steps:\n 1. cd ${config.projectName}\n 2. setup your ${chalk.cyan(\"DATABASE_URL\")} under .env\n 3. npx prisma db push\n 4. ${packageManager} run dev\n `);\n}\n\nmain().catch(console.error);\n"]}
@@ -0,0 +1,63 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ const fs_1 = __importDefault(require("fs"));
16
+ const path_1 = __importDefault(require("path"));
17
+ const handlebars_1 = __importDefault(require("handlebars"));
18
+ handlebars_1.default.registerHelper("eq", (a, b) => a === b);
19
+ handlebars_1.default.registerHelper("neq", (a, b) => a !== b);
20
+ (() => {
21
+ const templatesDir = `${process.cwd()}/cache/handlebars/templates`;
22
+ const outputDir = `${process.cwd()}/cache/handlebars/output`;
23
+ const config = {
24
+ projectName: "arkos-project",
25
+ typescript: true,
26
+ validation: {
27
+ type: "zod",
28
+ },
29
+ authentication: {
30
+ type: "dynamic",
31
+ usernameField: "email",
32
+ multipleRoles: true,
33
+ },
34
+ prisma: {
35
+ provider: "mongodb",
36
+ idDatabaseType: "@db @default(uuid())",
37
+ defaultDBurl: "@db @default(uuid())",
38
+ },
39
+ projectPath: outputDir,
40
+ };
41
+ function processTemplates(dir, relativeDir = "") {
42
+ fs_1.default.readdirSync(dir, { withFileTypes: true }).forEach((dirent) => __awaiter(this, void 0, void 0, function* () {
43
+ const fullPath = path_1.default.join(dir, dirent.name);
44
+ const relativePath = path_1.default.join(relativeDir, dirent.name);
45
+ if (dirent.isDirectory()) {
46
+ processTemplates(fullPath, relativePath);
47
+ }
48
+ else if (dirent.name.endsWith(".hbs")) {
49
+ const templatePath = fullPath;
50
+ const template = handlebars_1.default.compile(fs_1.default.readFileSync(templatePath, "utf8"));
51
+ const content = template(config);
52
+ const ext = config.typescript ? ".ts" : ".js";
53
+ let outputPath = path_1.default.join(outputDir, relativePath.replace(".hbs", ""));
54
+ if (dirent.name.endsWith(".ts.hbs"))
55
+ outputPath = path_1.default.join(outputDir, relativePath.replace(".ts.hbs", ext));
56
+ fs_1.default.mkdirSync(path_1.default.dirname(outputPath), { recursive: true });
57
+ fs_1.default.writeFileSync(outputPath, content);
58
+ }
59
+ }));
60
+ }
61
+ processTemplates(templatesDir);
62
+ })();
63
+ //# sourceMappingURL=hbs-tester.helpers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hbs-tester.helpers.js","sourceRoot":"","sources":["../../../../../src/utils/helpers/hbs-tester.helpers.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA,4CAAoB;AACpB,gDAAwB;AACxB,4DAAoC;AAEpC,oBAAU,CAAC,cAAc,CAAC,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;AACnD,oBAAU,CAAC,cAAc,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;AAEpD,CAAC,GAAG,EAAE;IACJ,MAAM,YAAY,GAAG,GAAG,OAAO,CAAC,GAAG,EAAE,6BAA6B,CAAC;IACnE,MAAM,SAAS,GAAG,GAAG,OAAO,CAAC,GAAG,EAAE,0BAA0B,CAAC;IAC7D,MAAM,MAAM,GAAkB;QAC5B,WAAW,EAAE,eAAe;QAC5B,UAAU,EAAE,IAAI;QAChB,UAAU,EAAE;YACV,IAAI,EAAE,KAAK;SACZ;QACD,cAAc,EAAE;YACd,IAAI,EAAE,SAAS;YACf,aAAa,EAAE,OAAO;YACtB,aAAa,EAAE,IAAI;SACpB;QACD,MAAM,EAAE;YACN,QAAQ,EAAE,SAAS;YACnB,cAAc,EAAE,sBAAsB;YACtC,YAAY,EAAE,sBAAsB;SACrC;QACD,WAAW,EAAE,SAAS;KACvB,CAAC;IAEF,SAAS,gBAAgB,CAAC,GAAW,EAAE,WAAW,GAAG,EAAE;QACrD,YAAE,CAAC,WAAW,CAAC,GAAG,EAAE,EAAE,aAAa,EAAE,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,CAAO,MAAM,EAAE,EAAE;YACpE,MAAM,QAAQ,GAAG,cAAI,CAAC,IAAI,CAAC,GAAG,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;YAC7C,MAAM,YAAY,GAAG,cAAI,CAAC,IAAI,CAAC,WAAW,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;YAEzD,IAAI,MAAM,CAAC,WAAW,EAAE,EAAE;gBACxB,gBAAgB,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC;aAC1C;iBAAM,IAAI,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;gBACvC,MAAM,YAAY,GAAG,QAAQ,CAAC;gBAC9B,MAAM,QAAQ,GAAG,oBAAU,CAAC,OAAO,CACjC,YAAE,CAAC,YAAY,CAAC,YAAY,EAAE,MAAM,CAAC,CACtC,CAAC;gBAEF,MAAM,OAAO,GAAG,QAAQ,CAAC,MAAM,CAAC,CAAC;gBACjC,MAAM,GAAG,GAAG,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC;gBAE9C,IAAI,UAAU,GAAG,cAAI,CAAC,IAAI,CAAC,SAAS,EAAE,YAAY,CAAC,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC;gBACxE,IAAI,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC;oBACjC,UAAU,GAAG,cAAI,CAAC,IAAI,CACpB,SAAS,EACT,YAAY,CAAC,OAAO,CAAC,SAAS,EAAE,GAAG,CAAC,CACrC,CAAC;gBAEJ,YAAE,CAAC,SAAS,CAAC,cAAI,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;gBAC5D,YAAE,CAAC,aAAa,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC;aACvC;QACH,CAAC,CAAA,CAAC,CAAC;IACL,CAAC;IAED,gBAAgB,CAAC,YAAY,CAAC,CAAC;AACjC,CAAC,CAAC,EAAE,CAAC","sourcesContent":["import fs from \"fs\";\nimport path from \"path\";\nimport handlebars from \"handlebars\";\nimport { ProjectConfig } from \"../project-config-inquirer\";\nhandlebars.registerHelper(\"eq\", (a, b) => a === b);\nhandlebars.registerHelper(\"neq\", (a, b) => a !== b);\n\n(() => {\n const templatesDir = `${process.cwd()}/cache/handlebars/templates`;\n const outputDir = `${process.cwd()}/cache/handlebars/output`;\n const config: ProjectConfig = {\n projectName: \"arkos-project\",\n typescript: true,\n validation: {\n type: \"zod\",\n },\n authentication: {\n type: \"dynamic\",\n usernameField: \"email\",\n multipleRoles: true,\n },\n prisma: {\n provider: \"mongodb\",\n idDatabaseType: \"@db @default(uuid())\",\n defaultDBurl: \"@db @default(uuid())\",\n },\n projectPath: outputDir,\n };\n\n function processTemplates(dir: string, relativeDir = \"\") {\n fs.readdirSync(dir, { withFileTypes: true }).forEach(async (dirent) => {\n const fullPath = path.join(dir, dirent.name);\n const relativePath = path.join(relativeDir, dirent.name);\n\n if (dirent.isDirectory()) {\n processTemplates(fullPath, relativePath);\n } else if (dirent.name.endsWith(\".hbs\")) {\n const templatePath = fullPath;\n const template = handlebars.compile(\n fs.readFileSync(templatePath, \"utf8\")\n );\n\n const content = template(config);\n const ext = config.typescript ? \".ts\" : \".js\";\n\n let outputPath = path.join(outputDir, relativePath.replace(\".hbs\", \"\"));\n if (dirent.name.endsWith(\".ts.hbs\"))\n outputPath = path.join(\n outputDir,\n relativePath.replace(\".ts.hbs\", ext)\n );\n\n fs.mkdirSync(path.dirname(outputPath), { recursive: true });\n fs.writeFileSync(outputPath, content);\n }\n });\n }\n\n processTemplates(templatesDir);\n})();\n"]}
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.getProcjetPackageJsonDependecies = exports.getLatestVersion = void 0;
16
+ const fs_1 = __importDefault(require("fs"));
17
+ function getLatestVersion(packageName) {
18
+ return __awaiter(this, void 0, void 0, function* () {
19
+ const res = yield fetch(`https://registry.npmjs.org/${packageName}`);
20
+ if (!res.ok)
21
+ throw new Error(`Failed to fetch: ${res.status}`);
22
+ const data = yield res.json();
23
+ return data["dist-tags"].latest;
24
+ });
25
+ }
26
+ exports.getLatestVersion = getLatestVersion;
27
+ function getProcjetPackageJsonDependecies(projectPath) {
28
+ const content = fs_1.default.readFileSync(`${projectPath}/package.json`, {
29
+ encoding: "utf8",
30
+ });
31
+ const packageJson = JSON.parse(content);
32
+ const dependencies = Object.keys(packageJson.dependencies);
33
+ const devDependencies = Object.keys(packageJson.devDependencies);
34
+ return { dependencies, devDependencies };
35
+ }
36
+ exports.getProcjetPackageJsonDependecies = getProcjetPackageJsonDependecies;
37
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/utils/helpers/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,4CAAoB;AAEpB,SAAsB,gBAAgB,CAAC,WAAmB;;QACxD,MAAM,GAAG,GAAG,MAAM,KAAK,CAAC,8BAA8B,WAAW,EAAE,CAAC,CAAC;QACrE,IAAI,CAAC,GAAG,CAAC,EAAE;YAAE,MAAM,IAAI,KAAK,CAAC,oBAAoB,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC;QAE/D,MAAM,IAAI,GAAG,MAAM,GAAG,CAAC,IAAI,EAAE,CAAC;QAC9B,OAAO,IAAI,CAAC,WAAW,CAAC,CAAC,MAAM,CAAC;IAClC,CAAC;CAAA;AAND,4CAMC;AAED,SAAgB,gCAAgC,CAAC,WAAmB;IAIlE,MAAM,OAAO,GAAG,YAAE,CAAC,YAAY,CAAC,GAAG,WAAW,eAAe,EAAE;QAC7D,QAAQ,EAAE,MAAM;KACjB,CAAC,CAAC;IAEH,MAAM,WAAW,GAGb,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IACxB,MAAM,YAAY,GAAG,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC;IAC3D,MAAM,eAAe,GAAG,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC;IAEjE,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,CAAC;AAC3C,CAAC;AAhBD,4EAgBC","sourcesContent":["import fs from \"fs\";\n\nexport async function getLatestVersion(packageName: string) {\n const res = await fetch(`https://registry.npmjs.org/${packageName}`);\n if (!res.ok) throw new Error(`Failed to fetch: ${res.status}`);\n\n const data = await res.json();\n return data[\"dist-tags\"].latest;\n}\n\nexport function getProcjetPackageJsonDependecies(projectPath: string): {\n dependencies: string[];\n devDependencies: string[];\n} {\n const content = fs.readFileSync(`${projectPath}/package.json`, {\n encoding: \"utf8\",\n });\n\n const packageJson: {\n dependencies: Record<string, string>;\n devDependencies: Record<string, string>;\n } = JSON.parse(content);\n const dependencies = Object.keys(packageJson.dependencies);\n const devDependencies = Object.keys(packageJson.devDependencies);\n\n return { dependencies, devDependencies };\n}\n"]}
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getNpmPackageVersion = void 0;
4
+ const child_process_1 = require("child_process");
5
+ function getNpmPackageVersion(name = "arkos") {
6
+ const version = (0, child_process_1.execSync)(`npm view ${name} version`).toString().trim();
7
+ return version;
8
+ }
9
+ exports.getNpmPackageVersion = getNpmPackageVersion;
10
+ //# sourceMappingURL=npm.helpers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"npm.helpers.js","sourceRoot":"","sources":["../../../../../src/utils/helpers/npm.helpers.ts"],"names":[],"mappings":";;;AAAA,iDAAyC;AAQzC,SAAgB,oBAAoB,CAAC,OAAe,OAAO;IACzD,MAAM,OAAO,GAAG,IAAA,wBAAQ,EAAC,YAAY,IAAI,UAAU,CAAC,CAAC,QAAQ,EAAE,CAAC,IAAI,EAAE,CAAC;IACvE,OAAO,OAAO,CAAC;AACjB,CAAC;AAHD,oDAGC","sourcesContent":["import { execSync } from \"child_process\";\n\n/**\n * Helps getting npm packages latest version\n *\n * @param {striong} name - name of the npm package (defaults: arkos)\n * @returns {string} version - the package latest version\n * */\nexport function getNpmPackageVersion(name: string = \"arkos\"): string {\n const version = execSync(`npm view ${name} version`).toString().trim();\n return version;\n}\n"]}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=template-processor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"template-processor.js","sourceRoot":"","sources":["../../../../../src/utils/helpers/template-processor.ts"],"names":[],"mappings":"","sourcesContent":["// import Handlebars from \"handlebars\";\n// import fs from \"fs\";\n// import { ProjectConfig } from \"../project-config-inquirer\";\n\n// async function processTemplate(templatePath: string, config: ProjectConfig) {\n// const files = await this.getAllFiles(templatePath);\n\n// for (const file of files) {\n// const content = fs.readFileSync(file, \"utf-8\");\n\n// // Compile template\n// const template = Handlebars.compile(content);\n\n// // Replace with config values\n// const processed = template({\n// PROJECT_NAME: config.projectName,\n// AUTH_ENABLED: config.authentication.enabled,\n// AUTH_TYPE: config.authentication.type,\n// VALIDATION_ENABLED: config.validation.enabled,\n// VALIDATION_TYPE: config.validation.type,\n// PRISMA_DATABASE_PROVIDER: config.prismaProvideer,\n// });\n\n// fs.writeFileSync(file, processed);\n// }\n// }\n"]}
@@ -0,0 +1,229 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ const path_1 = __importDefault(require("path"));
16
+ const inquirer_1 = __importDefault(require("inquirer"));
17
+ const chalk_1 = __importDefault(require("chalk"));
18
+ class ProjectConfigInquirer {
19
+ constructor() {
20
+ this.config = {};
21
+ }
22
+ run() {
23
+ return __awaiter(this, void 0, void 0, function* () {
24
+ yield this.promptProjectName();
25
+ yield this.promptTypescript();
26
+ yield this.promptPrismaProvider();
27
+ yield this.promptValidation();
28
+ yield this.promptAuthentication();
29
+ const projectPath = path_1.default.resolve(process.cwd(), this.config.projectName);
30
+ this.config.projectPath = projectPath;
31
+ return this.config;
32
+ });
33
+ }
34
+ promptProjectName() {
35
+ return __awaiter(this, void 0, void 0, function* () {
36
+ let projectName = process.argv[2];
37
+ if (projectName === ".") {
38
+ projectName = path_1.default.basename(process.cwd());
39
+ }
40
+ if (!projectName) {
41
+ const result = yield inquirer_1.default.prompt([
42
+ {
43
+ type: "input",
44
+ name: "projectName",
45
+ message: "What is the name of your project?",
46
+ default: "my-arkos-project",
47
+ validate: this.validateProjectName,
48
+ },
49
+ ]);
50
+ projectName = result.projectName;
51
+ }
52
+ else {
53
+ const validation = this.validateProjectName(projectName);
54
+ if (validation !== true) {
55
+ console.error(chalk_1.default.red(`Error: ${validation}`));
56
+ process.exit(1);
57
+ }
58
+ }
59
+ this.config.projectName = projectName;
60
+ });
61
+ }
62
+ validateProjectName(input) {
63
+ if (!input || input.length === 0) {
64
+ return "Project name cannot be empty";
65
+ }
66
+ if (!/^[a-zA-Z0-9_-]+$/.test(input)) {
67
+ return "Project name can only contain letters, numbers, hyphens, and underscores";
68
+ }
69
+ if (!/^[a-zA-Z0-9]/.test(input)) {
70
+ return "Project name must start with a letter or number";
71
+ }
72
+ if (!/[a-zA-Z0-9]$/.test(input)) {
73
+ return "Project name must end with a letter or number";
74
+ }
75
+ if (input.length > 50) {
76
+ return "Project name must be 50 characters or less";
77
+ }
78
+ const reservedNames = ["node_modules"];
79
+ if (reservedNames.includes(input.toLowerCase())) {
80
+ return "Project name cannot be a reserved name";
81
+ }
82
+ return true;
83
+ }
84
+ promptTypescript() {
85
+ return __awaiter(this, void 0, void 0, function* () {
86
+ const { typescript } = yield inquirer_1.default.prompt([
87
+ {
88
+ type: "confirm",
89
+ name: "typescript",
90
+ message: `Would you like to use ${chalk_1.default.cyan("TypeScript")}?`,
91
+ default: false,
92
+ },
93
+ ]);
94
+ this.config.typescript = typescript;
95
+ });
96
+ }
97
+ promptPrismaProvider() {
98
+ return __awaiter(this, void 0, void 0, function* () {
99
+ const { prismaProvider } = yield inquirer_1.default.prompt([
100
+ {
101
+ type: "list",
102
+ name: "prismaProvider",
103
+ message: `What db provider will be used for ${chalk_1.default.cyan("Prisma")}?`,
104
+ choices: [
105
+ "postgresql",
106
+ "mongodb",
107
+ "mysql",
108
+ "sqlite",
109
+ "sqlserver",
110
+ "cockroachdb",
111
+ ],
112
+ },
113
+ ]);
114
+ let idDatabaseType;
115
+ let defaultDBurl;
116
+ switch (prismaProvider) {
117
+ case "mongodb":
118
+ idDatabaseType = '@id @default(auto()) @map("_id") @db.ObjectId';
119
+ defaultDBurl = `mongodb://localhost:27017/${this.config.projectName}`;
120
+ break;
121
+ case "sqlite":
122
+ idDatabaseType = "@id @default(cuid())";
123
+ defaultDBurl = "file:../database.db";
124
+ break;
125
+ case "mysql":
126
+ idDatabaseType = "@id @default(uuid())";
127
+ defaultDBurl = `mysql://username:password@localhost:3306/${this.config.projectName}`;
128
+ break;
129
+ case "postgresql":
130
+ idDatabaseType = "@id @default(uuid())";
131
+ defaultDBurl = `postgresql://username:password@localhost:5432/${this.config.projectName}`;
132
+ break;
133
+ case "sqlserver":
134
+ idDatabaseType = "@id @default(uuid())";
135
+ defaultDBurl = `sqlserver://localhost:1433;database=${this.config.projectName};username=sa;password=password;encrypt=DANGER_PLAINTEXT`;
136
+ break;
137
+ case "cockroachdb":
138
+ idDatabaseType = "@id @default(uuid())";
139
+ defaultDBurl = `postgresql://username:password@localhost:26257/${this.config.projectName}?sslmode=require`;
140
+ break;
141
+ default:
142
+ idDatabaseType = "@id @default(uuid())";
143
+ defaultDBurl = `postgresql://username:password@localhost:5432/${this.config.projectName}`;
144
+ }
145
+ this.config.prisma = {
146
+ provider: prismaProvider,
147
+ idDatabaseType: idDatabaseType,
148
+ defaultDBurl: defaultDBurl,
149
+ };
150
+ });
151
+ }
152
+ promptValidation() {
153
+ return __awaiter(this, void 0, void 0, function* () {
154
+ const { useValidation } = yield inquirer_1.default.prompt([
155
+ {
156
+ type: "confirm",
157
+ name: "useValidation",
158
+ message: `Would you like to set up ${chalk_1.default.cyan("Validation")}?`,
159
+ default: true,
160
+ },
161
+ ]);
162
+ if (useValidation) {
163
+ const { validationType } = yield inquirer_1.default.prompt([
164
+ {
165
+ type: "list",
166
+ name: "validationType",
167
+ message: "Choose validation library:",
168
+ choices: ["zod", "class-validator"],
169
+ },
170
+ ]);
171
+ this.config.validation = {
172
+ type: validationType,
173
+ };
174
+ }
175
+ });
176
+ }
177
+ promptAuthentication() {
178
+ return __awaiter(this, void 0, void 0, function* () {
179
+ const { useAuthentication } = yield inquirer_1.default.prompt([
180
+ {
181
+ type: "confirm",
182
+ name: "useAuthentication",
183
+ message: `Would you like to set up ${chalk_1.default.cyan("Authentication")}?`,
184
+ default: true,
185
+ },
186
+ ]);
187
+ if (useAuthentication) {
188
+ const { authenticationType } = yield inquirer_1.default.prompt([
189
+ {
190
+ type: "list",
191
+ name: "authenticationType",
192
+ message: "Choose authentication type:",
193
+ choices: ["static", "dynamic", "define later"],
194
+ },
195
+ ]);
196
+ if (authenticationType !== "define later" &&
197
+ this.config.prisma.provider !== "sqlite") {
198
+ const { multipleRoles } = yield inquirer_1.default.prompt([
199
+ {
200
+ type: "confirm",
201
+ name: "multipleRoles",
202
+ default: true,
203
+ message: `Would you like to use authentication with ${chalk_1.default.cyan("Multiple Roles")}?`,
204
+ },
205
+ ]);
206
+ const { usernameField } = yield inquirer_1.default.prompt([
207
+ {
208
+ type: "list",
209
+ name: "usernameField",
210
+ message: "Choose default username field for login:",
211
+ choices: ["email", "username", "define later"],
212
+ },
213
+ ]);
214
+ this.config.authentication = {
215
+ type: authenticationType,
216
+ usernameField: usernameField === "define later" ? "custom" : usernameField,
217
+ multipleRoles,
218
+ };
219
+ }
220
+ else if (this.config.prisma.provider === "sqlite") {
221
+ console.info(`Skipping multiple roles options because provider is sqlite...`);
222
+ }
223
+ }
224
+ });
225
+ }
226
+ }
227
+ const projectConfigInquirer = new ProjectConfigInquirer();
228
+ exports.default = projectConfigInquirer;
229
+ //# sourceMappingURL=project-config-inquirer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"project-config-inquirer.js","sourceRoot":"","sources":["../../../../src/utils/project-config-inquirer.ts"],"names":[],"mappings":"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","sourcesContent":["import path from \"path\";\nimport inquirer from \"inquirer\";\nimport chalk from \"chalk\";\n\nexport interface ProjectConfig {\n projectName: string;\n typescript: boolean;\n validation: {\n type?: \"zod\" | \"class-validator\";\n };\n authentication: {\n type?: \"static\" | \"dynamic\" | \"define later\";\n usernameField?: \"username\" | \"email\" | \"custom\";\n multipleRoles: boolean;\n };\n prisma: {\n provider:\n | \"postgresql\"\n | \"mysql\"\n | \"sqlite\"\n | \"sqlserver\"\n | \"cockroachdb\"\n | \"mongodb\";\n idDatabaseType: string;\n defaultDBurl: string;\n };\n projectPath: string;\n}\n\nclass ProjectConfigInquirer {\n private config: ProjectConfig;\n\n constructor() {\n this.config = {} as ProjectConfig;\n }\n\n async run() {\n await this.promptProjectName();\n await this.promptTypescript();\n await this.promptPrismaProvider();\n await this.promptValidation();\n await this.promptAuthentication();\n\n const projectPath = path.resolve(process.cwd(), this.config.projectName);\n this.config.projectPath = projectPath;\n\n return this.config;\n }\n\n private async promptProjectName() {\n let projectName = process.argv[2];\n\n // If user passed \".\", use current directory name\n if (projectName === \".\") {\n projectName = path.basename(process.cwd());\n }\n\n if (!projectName) {\n const result = await inquirer.prompt([\n {\n type: \"input\",\n name: \"projectName\",\n message: \"What is the name of your project?\",\n default: \"my-arkos-project\",\n validate: this.validateProjectName,\n },\n ]);\n projectName = result.projectName;\n } else {\n // Validate the project name from command line args\n const validation = this.validateProjectName(projectName);\n if (validation !== true) {\n console.error(chalk.red(`Error: ${validation}`));\n process.exit(1);\n }\n }\n\n this.config.projectName = projectName;\n }\n\n private validateProjectName(input: string): boolean | string {\n if (!input || input.length === 0) {\n return \"Project name cannot be empty\";\n }\n\n // Check for valid characters (letters, numbers, hyphens, underscores)\n if (!/^[a-zA-Z0-9_-]+$/.test(input)) {\n return \"Project name can only contain letters, numbers, hyphens, and underscores\";\n }\n\n // Check if it starts with a letter or number (not hyphen or underscore)\n if (!/^[a-zA-Z0-9]/.test(input)) {\n return \"Project name must start with a letter or number\";\n }\n\n // Check if it ends with a letter or number (not hyphen or underscore)\n if (!/[a-zA-Z0-9]$/.test(input)) {\n return \"Project name must end with a letter or number\";\n }\n\n // Check length (reasonable limits)\n if (input.length > 50) {\n return \"Project name must be 50 characters or less\";\n }\n\n // Check for reserved names\n const reservedNames = [\"node_modules\"];\n if (reservedNames.includes(input.toLowerCase())) {\n return \"Project name cannot be a reserved name\";\n }\n\n return true;\n }\n\n private async promptTypescript() {\n const { typescript } = await inquirer.prompt([\n {\n type: \"confirm\",\n name: \"typescript\",\n message: `Would you like to use ${chalk.cyan(\"TypeScript\")}?`,\n default: false,\n },\n ]);\n this.config.typescript = typescript;\n }\n\n private async promptPrismaProvider() {\n const { prismaProvider } = await inquirer.prompt([\n {\n type: \"list\",\n name: \"prismaProvider\",\n message: `What db provider will be used for ${chalk.cyan(\"Prisma\")}?`,\n choices: [\n \"postgresql\",\n \"mongodb\",\n \"mysql\",\n \"sqlite\",\n \"sqlserver\",\n \"cockroachdb\",\n ],\n },\n ]);\n\n // Set the correct idDatabaseType based on provider\n let idDatabaseType: string;\n let defaultDBurl: string;\n\n switch (prismaProvider) {\n case \"mongodb\":\n idDatabaseType = '@id @default(auto()) @map(\"_id\") @db.ObjectId';\n defaultDBurl = `mongodb://localhost:27017/${this.config.projectName}`;\n break;\n case \"sqlite\":\n idDatabaseType = \"@id @default(cuid())\";\n defaultDBurl = \"file:../database.db\"; // Goes to root dir, not prisma folder\n break;\n case \"mysql\":\n idDatabaseType = \"@id @default(uuid())\";\n defaultDBurl = `mysql://username:password@localhost:3306/${this.config.projectName}`;\n break;\n case \"postgresql\":\n idDatabaseType = \"@id @default(uuid())\";\n defaultDBurl = `postgresql://username:password@localhost:5432/${this.config.projectName}`;\n break;\n case \"sqlserver\":\n idDatabaseType = \"@id @default(uuid())\";\n defaultDBurl = `sqlserver://localhost:1433;database=${this.config.projectName};username=sa;password=password;encrypt=DANGER_PLAINTEXT`;\n break;\n case \"cockroachdb\":\n idDatabaseType = \"@id @default(uuid())\";\n defaultDBurl = `postgresql://username:password@localhost:26257/${this.config.projectName}?sslmode=require`;\n break;\n default:\n idDatabaseType = \"@id @default(uuid())\";\n defaultDBurl = `postgresql://username:password@localhost:5432/${this.config.projectName}`;\n }\n\n this.config.prisma = {\n provider: prismaProvider,\n idDatabaseType: idDatabaseType,\n defaultDBurl: defaultDBurl,\n };\n }\n\n private async promptValidation() {\n const { useValidation } = await inquirer.prompt([\n {\n type: \"confirm\",\n name: \"useValidation\",\n message: `Would you like to set up ${chalk.cyan(\"Validation\")}?`,\n default: true,\n },\n ]);\n\n if (useValidation) {\n const { validationType } = await inquirer.prompt([\n {\n type: \"list\",\n name: \"validationType\",\n message: \"Choose validation library:\",\n choices: [\"zod\", \"class-validator\"],\n },\n ]);\n this.config.validation = {\n type: validationType,\n };\n }\n }\n\n private async promptAuthentication() {\n const { useAuthentication } = await inquirer.prompt([\n {\n type: \"confirm\",\n name: \"useAuthentication\",\n message: `Would you like to set up ${chalk.cyan(\"Authentication\")}?`,\n default: true,\n },\n ]);\n\n if (useAuthentication) {\n const { authenticationType } = await inquirer.prompt([\n {\n type: \"list\",\n name: \"authenticationType\",\n message: \"Choose authentication type:\",\n choices: [\"static\", \"dynamic\", \"define later\"],\n },\n ]);\n\n if (\n authenticationType !== \"define later\" &&\n this.config.prisma.provider !== \"sqlite\"\n ) {\n const { multipleRoles } = await inquirer.prompt([\n {\n type: \"confirm\",\n name: \"multipleRoles\",\n default: true,\n message: `Would you like to use authentication with ${chalk.cyan(\"Multiple Roles\")}?`,\n },\n ]);\n\n const { usernameField } = await inquirer.prompt([\n {\n type: \"list\",\n name: \"usernameField\",\n message: \"Choose default username field for login:\",\n choices: [\"email\", \"username\", \"define later\"],\n },\n ]);\n\n this.config.authentication = {\n type: authenticationType,\n usernameField:\n usernameField === \"define later\" ? \"custom\" : usernameField,\n multipleRoles,\n };\n } else if (this.config.prisma.provider === \"sqlite\") {\n console.info(\n `Skipping multiple roles options because provider is sqlite...`\n );\n }\n }\n }\n}\n\nconst projectConfigInquirer = new ProjectConfigInquirer();\n\nexport default projectConfigInquirer;\n"]}
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ const path_1 = __importDefault(require("path"));
16
+ const fs_1 = __importDefault(require("fs"));
17
+ const handlebars_1 = __importDefault(require("handlebars"));
18
+ const npm_helpers_1 = require("./helpers/npm.helpers");
19
+ class TemplateCompiler {
20
+ canCompileAuthenticationTemplates(config) {
21
+ return __awaiter(this, void 0, void 0, function* () {
22
+ return !!config.authentication;
23
+ });
24
+ }
25
+ filesToBeSkipped(config) {
26
+ var _a;
27
+ const files = [];
28
+ if (config.authentication.type === "define later")
29
+ files.push(...["user.prisma.hbs"]);
30
+ if (((_a = config.authentication) === null || _a === void 0 ? void 0 : _a.type) === "static")
31
+ files.push(...[
32
+ "auth-role.prisma.hbs",
33
+ "auth-permission.prisma.hbs",
34
+ "user-role.prisma.hbs",
35
+ ]);
36
+ if (!config.typescript)
37
+ files.push(...["tsconfig.json.hbs"]);
38
+ if (config.typescript)
39
+ files.push(...["jsconfig.json.hbs"]);
40
+ return files;
41
+ }
42
+ compile(templatesDir, config) {
43
+ return __awaiter(this, void 0, void 0, function* () {
44
+ const outputDir = config.projectPath;
45
+ const isTypescript = config.typescript;
46
+ const filesToBeSkipped = this.filesToBeSkipped(config);
47
+ function processTemplates(dir, relativeDir = "") {
48
+ fs_1.default.readdirSync(dir, { withFileTypes: true }).forEach((dirent) => __awaiter(this, void 0, void 0, function* () {
49
+ if (filesToBeSkipped.includes(dirent.name))
50
+ return;
51
+ const fullPath = path_1.default.join(dir, dirent.name);
52
+ const relativePath = path_1.default.join(relativeDir, dirent.name);
53
+ if (dirent.isDirectory()) {
54
+ processTemplates(fullPath, relativePath);
55
+ }
56
+ else if (dirent.name.endsWith(".hbs")) {
57
+ const templatePath = fullPath;
58
+ const template = handlebars_1.default.compile(fs_1.default.readFileSync(templatePath, "utf8"));
59
+ let arkosCurrentVersion = (0, npm_helpers_1.getNpmPackageVersion)("arkos");
60
+ const content = template(Object.assign(Object.assign({}, config), { arkosCurrentVersion }));
61
+ const ext = isTypescript ? ".ts" : ".js";
62
+ let outputPath = path_1.default.join(outputDir, relativePath.replace(".hbs", ""));
63
+ if (dirent.name.endsWith(".ts.hbs"))
64
+ outputPath = path_1.default.join(outputDir, relativePath.replace(".ts.hbs", ext));
65
+ fs_1.default.mkdirSync(path_1.default.dirname(outputPath), { recursive: true });
66
+ fs_1.default.writeFileSync(outputPath, content);
67
+ }
68
+ }));
69
+ }
70
+ processTemplates(templatesDir);
71
+ });
72
+ }
73
+ }
74
+ const templateCompiler = new TemplateCompiler();
75
+ exports.default = templateCompiler;
76
+ //# sourceMappingURL=template-compiler.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"template-compiler.js","sourceRoot":"","sources":["../../../../src/utils/template-compiler.ts"],"names":[],"mappings":"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","sourcesContent":["import { ProjectConfig } from \"./project-config-inquirer\";\nimport path from \"path\";\nimport fs from \"fs\";\nimport handlebars from \"handlebars\";\nimport { getNpmPackageVersion } from \"./helpers/npm.helpers\";\n\nclass TemplateCompiler {\n async canCompileAuthenticationTemplates(config: ProjectConfig) {\n return !!config.authentication;\n }\n\n filesToBeSkipped(config: ProjectConfig) {\n const files: string[] = [];\n\n if (config.authentication.type === \"define later\")\n files.push(...[\"user.prisma.hbs\"]);\n\n if (config.authentication?.type === \"static\")\n files.push(\n ...[\n \"auth-role.prisma.hbs\",\n \"auth-permission.prisma.hbs\",\n \"user-role.prisma.hbs\",\n ]\n );\n\n if (!config.typescript) files.push(...[\"tsconfig.json.hbs\"]);\n\n if (config.typescript) files.push(...[\"jsconfig.json.hbs\"]);\n\n return files;\n }\n /**\n * Compiles the Arkos.js project with handlebars templates\n *\n * @param templatesDir {string} templates location\n * @param config {ProjectConfig} the project configuration\n * @returns void\n * */\n async compile(templatesDir: string, config: ProjectConfig) {\n const outputDir = config.projectPath;\n const isTypescript = config.typescript;\n const filesToBeSkipped = this.filesToBeSkipped(config);\n\n function processTemplates(dir: string, relativeDir = \"\") {\n fs.readdirSync(dir, { withFileTypes: true }).forEach(async (dirent) => {\n if (filesToBeSkipped.includes(dirent.name)) return;\n\n const fullPath = path.join(dir, dirent.name);\n const relativePath = path.join(relativeDir, dirent.name);\n\n if (dirent.isDirectory()) {\n processTemplates(fullPath, relativePath);\n } else if (dirent.name.endsWith(\".hbs\")) {\n const templatePath = fullPath;\n const template = handlebars.compile(\n fs.readFileSync(templatePath, \"utf8\")\n );\n\n let arkosCurrentVersion = getNpmPackageVersion(\"arkos\");\n\n const content = template({ ...config, arkosCurrentVersion });\n const ext = isTypescript ? \".ts\" : \".js\";\n\n let outputPath = path.join(\n outputDir,\n relativePath.replace(\".hbs\", \"\")\n );\n if (dirent.name.endsWith(\".ts.hbs\"))\n outputPath = path.join(\n outputDir,\n relativePath.replace(\".ts.hbs\", ext)\n );\n\n fs.mkdirSync(path.dirname(outputPath), { recursive: true });\n fs.writeFileSync(outputPath, content);\n }\n });\n }\n\n processTemplates(templatesDir);\n }\n}\n\nconst templateCompiler = new TemplateCompiler();\n\nexport default templateCompiler;\n"]}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./utils/helpers/user-agent.helpers"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../shared/src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qEAAmD","sourcesContent":["export * from \"./utils/helpers/user-agent.helpers\";\n"]}
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.detectPackageManagerFromUserAgent = void 0;
4
+ function detectPackageManagerFromUserAgent() {
5
+ const userAgent = process.env.npm_config_user_agent || "";
6
+ if (!userAgent)
7
+ return "npm";
8
+ if (userAgent.includes("pnpm"))
9
+ return "pnpm";
10
+ if (userAgent.includes("yarn"))
11
+ return "yarn";
12
+ if (userAgent.includes("npm"))
13
+ return "npm";
14
+ if (userAgent.includes("bun"))
15
+ return "bun";
16
+ if (userAgent.includes("cnpm"))
17
+ return "cnpm";
18
+ if (userAgent.includes("corepack"))
19
+ return "corepack";
20
+ if (userAgent.includes("deno"))
21
+ return "deno";
22
+ return "npm";
23
+ }
24
+ exports.detectPackageManagerFromUserAgent = detectPackageManagerFromUserAgent;
25
+ //# sourceMappingURL=user-agent.helpers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-agent.helpers.js","sourceRoot":"","sources":["../../../../../../shared/src/utils/helpers/user-agent.helpers.ts"],"names":[],"mappings":";;;AAMA,SAAgB,iCAAiC;IAC/C,MAAM,SAAS,GAAG,OAAO,CAAC,GAAG,CAAC,qBAAqB,IAAI,EAAE,CAAC;IAE1D,IAAI,CAAC,SAAS;QAAE,OAAO,KAAK,CAAC;IAC7B,IAAI,SAAS,CAAC,QAAQ,CAAC,MAAM,CAAC;QAAE,OAAO,MAAM,CAAC;IAC9C,IAAI,SAAS,CAAC,QAAQ,CAAC,MAAM,CAAC;QAAE,OAAO,MAAM,CAAC;IAC9C,IAAI,SAAS,CAAC,QAAQ,CAAC,KAAK,CAAC;QAAE,OAAO,KAAK,CAAC;IAC5C,IAAI,SAAS,CAAC,QAAQ,CAAC,KAAK,CAAC;QAAE,OAAO,KAAK,CAAC;IAC5C,IAAI,SAAS,CAAC,QAAQ,CAAC,MAAM,CAAC;QAAE,OAAO,MAAM,CAAC;IAC9C,IAAI,SAAS,CAAC,QAAQ,CAAC,UAAU,CAAC;QAAE,OAAO,UAAU,CAAC;IACtD,IAAI,SAAS,CAAC,QAAQ,CAAC,MAAM,CAAC;QAAE,OAAO,MAAM,CAAC;IAE9C,OAAO,KAAK,CAAC;AACf,CAAC;AAbD,8EAaC","sourcesContent":["/**\n * Helps getting the current package manager from user agent\n *\n * @returns {string} the package manager\n * @default \"npm\"\n */\nexport function detectPackageManagerFromUserAgent(): string {\n const userAgent = process.env.npm_config_user_agent || \"\";\n\n if (!userAgent) return \"npm\";\n if (userAgent.includes(\"pnpm\")) return \"pnpm\";\n if (userAgent.includes(\"yarn\")) return \"yarn\";\n if (userAgent.includes(\"npm\")) return \"npm\";\n if (userAgent.includes(\"bun\")) return \"bun\";\n if (userAgent.includes(\"cnpm\")) return \"cnpm\";\n if (userAgent.includes(\"corepack\")) return \"corepack\";\n if (userAgent.includes(\"deno\")) return \"deno\";\n\n return \"npm\";\n}\n"]}
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "create-arkos",
3
- "version": "0.0.10",
4
- "description": "CLI for creating Arkos.js projects, see docs at www.arkosjs.com/docs",
3
+ "version": "0.0.14",
4
+ "description": "CLI for creating Arkos.js projects, see docs at www.arkosjs.com",
5
5
  "bin": {
6
6
  "create-arkos": "./dist/index.js"
7
7
  },
8
8
  "scripts": {
9
- "build": "tsup",
9
+ "build": "tsc",
10
10
  "dev": "ts-node src/index.ts",
11
11
  "test:hbs": "ts-node src/utils/helpers/hbs-tester.helpers.ts",
12
12
  "prebuild": "pnpm --filter @arkos/shared build",
@@ -21,7 +21,7 @@
21
21
  "bugs": {
22
22
  "url": "https://github.com/uanela/arkos/issues"
23
23
  },
24
- "homepage": "https://www.arkosjs.com/docs/api-reference/create-arkos-cli",
24
+ "homepage": "https://www.arkosjs.com/docs/cli/create-arkos",
25
25
  "files": ["dist", "templates", "cli.js", "README.md"],
26
26
  "devDependencies": {
27
27
  "@types/inquirer": "^8.1.0",
@@ -1,2 +1,9 @@
1
- DATABASE_URL=your-db-url-here
1
+ # Database connection
2
+ DATABASE_URL={{prisma.defaultDBurl}}
3
+
4
+ # JWT secrets
5
+ JWT_SECRET=your-jwt-secret
6
+ JWT_EXPIRES_IN=90d
7
+
8
+ # Server configuration
2
9
  PORT=8000
@@ -83,3 +83,5 @@ $RECYCLE.BIN/
83
83
  .cache/
84
84
  .docz/
85
85
  .vercel
86
+
87
+ *.db
@@ -0,0 +1,15 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES6",
4
+ "module": "Node16",
5
+ "moduleResolution": "node16",
6
+ "rootDir": "./src",
7
+ "sourceMap": true,
8
+ "esModuleInterop": true,
9
+ "forceConsistentCasingInFileNames": true,
10
+ "allowJs": true,
11
+ "checkJs": false
12
+ },
13
+ "include": ["src/**/*.js", "src/**/*.jsx"],
14
+ "exclude": ["node_modules", ".build", "src/**/__tests__/**", "src/**/*.test.js"]
15
+ }
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "{{projectName}}",
3
3
  "version": "1.0.0",
4
+ {{#if typescript}}
5
+ {{else}}
6
+ "type": "module",
7
+ {{/if}}
4
8
  "description": "This RESTful API was generated by Arkos.js, read more about Arkos.js at www.arkosjs.com",
5
9
  "scripts": {
6
10
  "dev": "arkos dev",
@@ -17,11 +21,28 @@
17
21
  "ts-node": "^10.9.2",
18
22
  "ts-node-dev": "^2.0.0",
19
23
  "@types/node": "^24.0.12",
24
+ "@types/express": "^5.0.0",
25
+ "@types/swagger-jsdoc": "^6.0.4",
26
+ "@types/swagger-ui-express": "^4.1.8",
27
+ {{else}}
28
+ "nodemon": "^2.0.12",
20
29
  {{/if}}
21
30
  "prisma": "^6.11.1"
22
31
  },
23
32
  "dependencies": {
24
- "arkos": "^1.2.0-beta",
25
- "@prisma/client": "^6.11.1"
33
+ "arkos": "{{arkosCurrentVersion}}",
34
+ "express": "^4.21.2",
35
+ "@prisma/client": "^6.4.1",
36
+ "swagger-jsdoc": "^6.2.8",
37
+ "swagger-ui-express": "^5.0.1",
38
+ {{#if (eq validation.type "class-validator")}}
39
+ "class-transformer": "^0.5.1",
40
+ "class-validator": "^0.14.1",
41
+ "class-validator-jsonschema": "^5.0.2",
42
+ {{/if}}
43
+ {{#if (eq validation.type "zod")}}
44
+ "zod": "^3.24.2",
45
+ "zod-to-json-schema": "^3.24.6"
46
+ {{/if}}
26
47
  }
27
48
  }
@@ -20,7 +20,7 @@ model AuthPermission {
20
20
  role AuthRole @relation(fields: [roleId], references: [id])
21
21
  description String?
22
22
  createdAt DateTime @default(now())
23
- updatedAt DateTime {{#if (eq prisma.provider "mongodb")}}@updatedAt{{else}}@default(now()){{/if}}
23
+ updatedAt DateTime @updatedAt
24
24
 
25
25
  @@unique([resource, action, roleId])
26
26
  }
@@ -5,6 +5,6 @@ model AuthRole {
5
5
  permissions AuthPermission[]
6
6
  users UserRole[]
7
7
  createdAt DateTime @default(now())
8
- updatedAt DateTime {{#if (eq prisma.provider "mongodb")}}@updatedAt{{else}}@default(now()){{/if}}
8
+ updatedAt DateTime @updatedAt
9
9
  }
10
10
 
@@ -10,7 +10,7 @@ model UserRole {
10
10
  roleId String {{#if (eq prisma.provider "mongodb")}}@db.ObjectId{{/if}}
11
11
  role AuthRole @relation(fields: [roleId], references: [id])
12
12
  createdAt DateTime @default(now())
13
- updatedAt DateTime {{#if (eq prisma.provider "mongodb")}}@updatedAt{{else}}@default(now()){{/if}}
13
+ updatedAt DateTime @updatedAt
14
14
  {{#if authentication.multipleRoles}}
15
15
 
16
16
  @@unique([userId, roleId])
@@ -10,7 +10,7 @@ model User {
10
10
  isActive Boolean @default(true)
11
11
  {{#if authentication.multipleRoles}}
12
12
  {{#if (eq prisma.provider "sqlite")}}
13
- roles String[] // Roles examples: Admin, User
13
+ role String // Roles examples: Admin, User
14
14
  {{else}}
15
15
  roles UserRole[]
16
16
  {{/if}}
@@ -26,7 +26,7 @@ model User {
26
26
  {{/if}}
27
27
  {{/if}}
28
28
  createdAt DateTime @default(now())
29
- updatedAt DateTime {{#if (eq prisma.provider "mongodb")}}@updatedAt{{else}}@default(now()){{/if}}
29
+ updatedAt DateTime @updatedAt
30
30
 
31
31
  // other fields for your application
32
32
  }
@@ -1,6 +1,9 @@
1
1
  import arkos from 'arkos';
2
2
 
3
3
  arkos.init({
4
+ cors: {
5
+ allowedOrigins: process.env.NODE_ENV !== "production" ? "*" : "your-production-url"
6
+ },
4
7
  {{#if authentication.type}}
5
8
  authentication: {
6
9
  mode: '{{authentication.type}}',
@@ -13,5 +16,10 @@ arkos.init({
13
16
  validation: {
14
17
  resolver: '{{validation.type}}'
15
18
  },
19
+ {{#if (neq validation.type "")}}
20
+ swagger: {
21
+ mode: '{{validation.type}}'
22
+ }
23
+ {{/if}}
16
24
  {{/if}}
17
25
  });