-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.js
50 lines (42 loc) · 1.88 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env node
// Import necessary modules
import { Command } from 'commander';
import { readFileSync } from 'fs';
import { fileURLToPath } from 'url';
import path from 'path';
import createMERNProjectCommand from './commands/createMERNProject.js';
import mongodbConnectCommand from './commands/mongodbConnect.js';
import mongooseSchemaCommand from './commands/mongooseSchema.js';
import addReduxCommand from './commands/addRedux.js';
import createFrontend from './commands/createFrontend.js';
import initializeDockerCommand from './commands/initializeDocker.js';
import addESLintCommand from './commands/addESLint.js';
import addJWTAuthCommand from './commands/addJWTAuth.js';
import addDeployCommand from './commands/deployCommand.js';
// Step 1: Get the directory of the current file
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// Step 2: Read and parse the package.json to get the version number
const packageJson = JSON.parse(
readFileSync(path.join(__dirname, 'package.json'), 'utf-8')
);
const program = new Command();
// Step 3: Set up the CLI program with basic metadata
program
.name('devcli')
.description(
'A developer-friendly CLI tool that streamlines MERN stack development by automating project setup, database configuration, and boilerplate generation by implementing MVC Architecture. Create production-ready MongoDB, Express, React, and Node.js applications with best practices built-in'
)
.version(packageJson.version);
// Step 4: Register each command with the program
createMERNProjectCommand(program);
mongodbConnectCommand(program);
mongooseSchemaCommand(program);
addReduxCommand(program);
createFrontend(program);
initializeDockerCommand(program);
addESLintCommand(program);
addJWTAuthCommand(program);
addDeployCommand(program);
// Step 5: Parse the provided arguments and start the CLI
program.parse(process.argv);